Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to gift poeple

Newbie Spellweaver
Joined
Aug 22, 2013
Messages
45
Reaction score
0
Any other ways to gift or something? ><
Can't find myself [or something] :3
 
Joined
Feb 28, 2012
Messages
738
Reaction score
65
Ugh..
Is there any ingame commands or something? ><
mcaso123 - How to gift poeple - RaGEZONE Forums

Google Talesrunner Commands to see a somewhat complete list of GM commands I've posted up.
 
Newbie Spellweaver
Joined
Aug 22, 2013
Messages
45
Reaction score
0
I found a little way to gift yourself items/put piero,
Took an acc from the list and then change the IGN, But I can't change, Gives me an error ><
 
Junior Spellweaver
Joined
Apr 30, 2011
Messages
118
Reaction score
14
I found a little way to gift yourself items/put piero,
Took an acc from the list and then change the IGN, But I can't change, Gives me an error ><
You can code a small program to gift you an item. I might try to do it. But don't have your hopes up. I'm a total beginner 8D
 
Junior Spellweaver
Joined
Aug 1, 2012
Messages
145
Reaction score
16
the best way to Send Item is Using a Query
Code:
USE [Talesrunner]
GO


DECLARE    @return_value int


EXEC    @return_value = [dbo].[usp_shopGiftItem]
        @sendUserNum = 5,
        @sendNickname = N'YourBestLove',
        @receiveNickname = N'YourBestLove',
        @itemDescNum = 710,
        @memo = N'Gracias Por Participar En el Evento.. Espero Disfrutes Tu Regalo Atte: YourBestLove!',
        @paymentType = 0,
        @bOutput = 1


SELECT    'Return Value' = @return_value



GO
@sendUserNum = 5, <--- UserNum Anyone can be
@sendNickname = N'YourBestLove', <--- Who Sends Name
@receiveNickname = N'YourBestLove', <--- Who Receives
@itemDescNum = 710, <--- Code of Item to Send
@memo = N'Gracias Por Participar En el Evento', <--- Note

*-The
Red what is in red is what changed at your convenience
 
Joined
Feb 28, 2012
Messages
738
Reaction score
65
the best way to Send Item is Using a Query
Code:
USE [Talesrunner]
GO


DECLARE    @return_value int


EXEC    @return_value = [dbo].[usp_shopGiftItem]
        @sendUserNum = 5,
        @sendNickname = N'YourBestLove',
        @receiveNickname = N'YourBestLove',
        @itemDescNum = 710,
        @memo = N'Gracias Por Participar En el Evento.. Espero Disfrutes Tu Regalo Atte: YourBestLove!',
        @paymentType = 0,
        @bOutput = 1


SELECT    'Return Value' = @return_value



GO
@sendUserNum = 5, <--- UserNum Anyone can be
@sendNickname = N'YourBestLove', <--- Who Sends Name
@receiveNickname = N'YourBestLove', <--- Who Receives
@itemDescNum = 710, <--- Code of Item to Send
@memo = N'Gracias Por Participar En el Evento', <--- Note

*-The
Red what is in red is what changed at your convenience

I find it faster just to do it TBL gift, don't have to excecute a whole new query, just have to make a little edit
 
Junior Spellweaver
Joined
Aug 1, 2012
Messages
145
Reaction score
16
I find it faster just to do it TBL gift, don't have to excecute a whole new query, just have to make a little edit

For the Table is hard But when Send something and have many users can not find the UserNum which is what used to Send the Gift table with the Query is easier to just put the NickName, code, etc. .. .
 
Newbie Spellweaver
Joined
Aug 22, 2013
Messages
45
Reaction score
0
mcaso123 - How to gift poeple - RaGEZONE Forums

Google Talesrunner Commands to see a somewhat complete list of GM commands I've posted up.
I need to write those commands ingame rooms chat? ><
I tried but nothing.. This is what i wrote:
/Notice=notice TEXT
/Notice=TEXT
and more and more, but nothing ><
 
Newbie Spellweaver
Joined
Aug 22, 2013
Messages
45
Reaction score
0

In the description.
Ok done with commands, But why I can't put piero number 2 or 3? When I join the game I'm still charlie, But with piero number 1 its Red piero ><
 
Back
Top