your script very helpful but i confused if player have a guild
i've tested your script and it's work but........
this is my script
payon,164,232,1 script [Changer] Kenshin 523,{
mes "Hello";
menu "Change Name",one,"Change Birth",two;
one:
query_sql "SELECT `name` FROM `ragnarok`.`char` WHERE `name` = '"+strcharinfo(0)+"'",.@current$;
query_sql "SELECT `name` FROM `ragnarok`.`guild` WHERE `master` = '"+strcharinfo(0)+"'",.@current$;
mes "Input name...";
input .@name$;
if(getstrlen(.@name$)<4| getstrlen(.@name$)>23){
mes "You cannot enter less than minimum of 4 and greater than maximum of 23 characters.";
}
if(.@name$ == strcharinfo(0)) {
mes "You cannot enter same name.";
close;
}
mes "New name: "+.@name$+"";
query_sql "UPDATE `char` SET `name` = '"+escape_sql(.@name$)+"' WHERE `name` = '"+strcharinfo(0)+"'";
query_sql "UPDATE `guild` SET `master` = '"+escape_sql(.@name$)+"' WHERE `name` = '"+strcharinfo(0)+"'";
sleep2 1000;
mes "Name successfully changed, please relog to see changes.";
close;
two:
query_sql "SELECT `birthdate` FROM `ragnarok`.`login` WHERE `account_id` = '"+getcharid(3)+"'",.@birthdate$;
mes "Birth Date: "+.@birthdate$+"";
mes "Input Year of Birth. (Hanya memakai 2 digit terakhir untuk mendelete char)";
input .@year;
if(.@year==0){
mes "You entered wrong number of month.";
close;
}
mes "Input Month of Birth.";
input .@month;
if(.@month==0||.@month>12){
mes "You entered wrong number of month.";
close;
}
mes "Input Day of Birth.";
input .@day;
if(.@day==0||.@day>31){
mes "You entered wrong number of day.";
close;
}
mes "New B-D: "+.@year+"-"+.@month+"-"+.@day+"";
query_sql "UPDATE `login` SET `birthdate` = '"+escape_sql(.@year)+"-"+escape_sql(.@month)+"-"+escape_sql(.@day)+"' WHERE `account_id` = '"+getcharid(3)+"'";
sleep2 1000;
mes "Tanggal lahir sukses diganti";
mes "Untuk menghapus karakter formatnya : yymmdd";
mes "Misal 1945-08-17";
mes "Maka saat mendelete karakter cukup ketik";
mes "450817";
mes "Terima kasih.";
close;
}