0 cook1e Posted October 17, 2023 Posted October 17, 2023 @Shaktois selling something similar in his website Quote
0 Giant Whisper Posted October 17, 2023 Author Posted October 17, 2023 hi cook1e do you have the link I've already seen script Shakto but it's not what I'm looking for What I would like to know is if you can move a char from one datasql to another using a script Quote
0 Emistry Posted January 27, 2024 Posted January 27, 2024 prontera,155,181,5 script Sample 757,{ mes "Enter character ID to move it to your account."; input .@value; query_sql("SELECT `account_id`, `char_id` FROM `char` WHERE `char_id` = "+.@value, .@aid, .@cid); if (!.@aid || !.@cid) { mes "Character doesn't exists."; close; } if (isloggedin(.@aid)) { mes "That account is logged in, please log off."; close; } query_sql("SELECT COUNT(1) FROM `char` WHERE `account_id` = "+getcharid(3), .@total_char); if (.@total_char >= 3) { mes "Your account already have more than 3 characters."; close; } query_sql("UPDATE `char` SET `account_id` = "+getcharid(3)+" WHERE `char_id` = "+.@cid); mes "Updated, please relog to see your new character."; close; } Quote
0 Giant Whisper Posted February 1, 2024 Author Posted February 1, 2024 Hello Emistry, thank you very much for the npc it may be moved from database to database My idea is that when you cross a warp it moves you to another server Quote
Question
Giant Whisper
Is possible?
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.