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!

Send Item from server to player!!

Newbie Spellweaver
Joined
Feb 3, 2021
Messages
12
Reaction score
6
I use it make webshop!
EXEC dbo.P_SendItemMail
@charid = 'Enter Character ID', < Enter Character ID
@Item_Code_1 = '268467012', < Enter Itemcode
@Item_Count_1 = '1', < Enter Amount
@Item_Cash_1 = 1, < Normal item enter 0 if it's cash enter 1
@Item_Code_2 = '0',
@Item_Count_2 = '0',
@Item_Cash_2 = 1,
@Item_Code_3 = '0',
@Item_Count_3 = '0',
@Item_Cash_3 = 1,
@Item_Code_4 = '0',
@Item_Count_4 = '0',
@Item_Cash_4 = 1,
@Item_Code_5 = '0',
@Item_Count_5 = '0',
@Item_Cash_5 = 1,
@Title = 'Titele Text', < Enter Text title example Admin
@Msg = 'Thank you for support!' < Enter Text description example Thank you for donated!
 
Back
Top