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: March 24 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: 9 hours ago 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: March 24 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, 2024 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 3 hours ago Share 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 Link to comment Share on other sites More sharing options...
0 Giant Whisper Posted February 1, 2024 Group: Members Topic Count: 55 Topics Per Day: 0.01 Content Count: 190 Reputation: 3 Joined: 04/11/12 Last Seen: March 24 Author Share 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 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.