Eross Posted May 15, 2021 Posted May 15, 2021 Hi ! Im trying to make a paid rename npc for homun and pet but its not working on my sql script query_sql "UPDATE `pet` SET `name` = '"+escape_sql(.@petnewname$)+"' WHERE `name` = '"+getpetinfo(2)+"'"; query_sql "UPDATE `homunculus` SET `name` = '"+escape_sql(.@name$)+"' WHERE `name` = '"+strcharinfo(0)+"'"; Its updating on my database but once I relog it will change back to old name ,... thanks Quote
0 Emistry Posted September 4, 2021 Posted September 4, 2021 atcommand "@petrename "+.@name$; use this instead. if you are using the SQL method above, your char need to be disconnected from server before the SQL query is executed to update the server, otherwise your current character data will override the changes when it saved into database upon logout. Quote
0 Eross Posted September 4, 2021 Author Posted September 4, 2021 26 minutes ago, Emistry said: atcommand "@petrename "+.@name$; use this instead. if you are using the SQL method above, your char need to be disconnected from server before the SQL query is executed to update the server, otherwise your current character data will override the changes when it saved into database upon logout. Thanks ! how about in homunculus sir ? Quote
Question
Eross
Hi ! Im trying to make a paid rename npc for homun and pet but its not working on my sql script
query_sql "UPDATE `pet` SET `name` = '"+escape_sql(.@petnewname$)+"' WHERE `name` = '"+getpetinfo(2)+"'"; query_sql "UPDATE `homunculus` SET `name` = '"+escape_sql(.@name$)+"' WHERE `name` = '"+strcharinfo(0)+"'";
Its updating on my database but once I relog it will change back to old name ,... thanks
2 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.