Giant Whisper Posted October 17, 2023 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: Yesterday at 10:38 AM Share Posted October 17, 2023 Is possible? Quote Link to comment Share on other sites More sharing options...
0 cook1e Posted October 17, 2023 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 171 Reputation: 68 Joined: 10/25/20 Last Seen: Tuesday at 07:15 PM Share Posted October 17, 2023 @Shaktois selling something similar in his website Quote Link to comment Share on other sites More sharing options...
0 Giant Whisper Posted October 17, 2023 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: Yesterday at 10:38 AM Author Share 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 Link to comment Share on other sites More sharing options...
0 Emistry Posted January 27 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10015 Reputation: 2357 Joined: 10/28/11 Last Seen: Saturday at 06:48 PM Share Posted January 27 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 Link to comment Share on other sites More sharing options...
0 Giant Whisper Posted February 1 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: Yesterday at 10:38 AM Author Share Posted February 1 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 Link to comment Share on other sites More sharing options...
Question
Giant Whisper
Is possible?
Link to comment
Share on other sites
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.