cloner

Takizuki

New member
Messages
45
Points
0
Hi, can someone help me create an NPC when player talk to the npc it will make her/him a clone of his/her self? also IF possible to limit the clone up to 5 times if this is not possible its ok just an npc that can clone a player.

thanks alot

 
Code:
prontera,158,176,4    script    Test_NPC    871,{    mes "Let's clone!";    if ( select( "Clone", "Leave" ) -1 ) end;        if(mobcount("prontera","eventclon") >= 5){            dispbottom "To much Mobs!";            killmonster "prontera", "eventclon";        }else{            clone "prontera", 159, 176, "eventclon", getcharid(0);        }    close;}
 
Last edited:
prontera,158,176,4  script  Test_NPC  871,{  mes "Let's clone!";  if ( select( "Clone", "Leave" ) -1 ) end;    if(mobcount("prontera","eventclon") >= 5){      dispbottom "To much Mobs!";      killmonster "prontera", "eventclon";    }else{      clone "prontera", 159, 176, "eventclon", getcharid(0);    }  close;}
hi. i tried the script. the clones is continues and no limits and the "Leave" option is no waypoint. i hope it can be recreate again. sorry for bad engrish    
default_biggrin.png


 
Last edited by a moderator:
Back
Top