prontera,150,170,9 script HomResetP1 100,{
if(!gethominfo(1)){
mes "[Hom Reseter]";
mes "Hi There "+StrCharInfo(0)+",";
mes "Sorry, but you havn't homunculus";
close;
}else {
mes "[Hom Reseter]";
mes "Hi There "+StrCharInfo(0)+",";
mes "You wish to reset your Homunculus?";
mes "for this service, the price is 100,000";
next;
switch(select("Yes:No, Thanks")) {
case 1:
if (Zeny < 100000){
mes "Sorry, but you don't have enough money";
close;
}
if (Zeny >= 100000){
set zeny,zeny-100000;
warp "prontera",155,168;
break;
}
case 2:
mes "[Hom Reseter]";
mes ""+StrCharInfo(0)+", if you change your mind,";
mes "I'm here only for you <3";
close;
}
}
}
prontera,155,170,9 script HomResetP2 100,{
if(gethominfo(6) == 1){
homshuffle;
warp "prontera",150,168;
}
if(gethominfo(6) >= 90){
if(.ui)end;
set .cid,getcharid(0);
atcommand "@kick "+strcharinfo(0);
Initnpctimer;
end;
OnTimer1000:
set .ui,1;
query_sql "SELECT `homun_id` FROM `char` WHERE `char_id` ="+.cid+"",.@homun_id;
set .cid,0;
if( .@homun_id > 0 )
query_sql "UPDATE `homunculus` SET `level` = 1 WHERE `homun_id` ="+.@homun_id+"";
query_sql "UPDATE `homunculus` SET `exp` = 0 WHERE `homun_id` ="+.@homun_id+"";
query_sql "UPDATE `homunculus` SET `skill_point` = 0 WHERE `homun_id` ="+.@homun_id+"";
set .ui,0;
end;
}
else{
mes "Your Homunculus must be > or = level 90";
next;
warp "prontera",150,168;
}
}
can anyone help me to do homshuffle after the sql process, for reduce the 2 npc in 1 complete?