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 as mail - Aion 5.8

Newbie Spellweaver
Joined
Jun 10, 2022
Messages
74
Reaction score
7
Hey, how are you?
Can someone teachs me how to send an item by mailbox, using database?

I saw that the attached_item_id is different from the item id, so how do you do it?
 
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
Example;

Code:
INSERT INTO `ad58_server_gs`.`mail`(`mail_unique_id`, `mail_recipient_id`, `sender_name`, `mail_title`, `mail_message`, `unread`, `attached_item_id`, `attached_kinah_count`, `attached_ap_count`, `express`, `recieved_time`, `price`) VALUES (393352, 101046648, 'Gamemaster', 'Reward', 'Voting Reward', 1, 164002023, 0, 0, 1, '2023-02-01 15:42:38', 0);

mail_unique_id = 393352 (unique number)
393352 = mail_recipient_id (table players, player "id")
Gamemaster = sender_name
mail_title = Reward
mail_message = 'Voting Reward
attached_item_id = 164002023
 
Upvote 0
Experienced Elementalist
Joined
Aug 6, 2021
Messages
220
Reaction score
55
Send mail and then check the database, you will see how it's filled in then you can insert a row with new info to send another mail.
 
Upvote 0
Newbie Spellweaver
Joined
Jun 10, 2022
Messages
74
Reaction score
7
I did the code normally, but the mail is empty with the item..
 
Upvote 0
Back
Top