how about this one? how can i make them walk and talk in every 5mins?
hf_town,96,114,6 script Mascot Pepe 3501,{
npcspeed 1000;
OnTouch:
mes "[ Pepe ]";
mes "Welcome on HellfireRO";
close;
doitagain:
set $guard,rand(10);
if($guard == 0) npctalk "Please write us a review on www.ratemyserver.net!";
if($guard == 1) npctalk "How are you?";
if($guard == 2) npctalk "Happy Halloween!";
if($guard == 3) npctalk "Don't forget to visit our Forums";
if($guard == 4) npctalk "Cool Story, Bro!";
if($guard == 5) npctalk "Good job on that style, man!";
if($guard == 6) npctalk "Cool moves you got there, son!";
if($guard == 7) npctalk "Fear nothing!";
if($guard == 8) npctalk "Inadequacy is purely a state of mind.";
if($guard == 9) npctalk "Trick or Treating";
if($guard == 10) npctalk "Laugh hard, laugh long, laugh merrily.";
if($guard > 10 || $guard < 0) goto doitagain;
end;
OnInit:
initnpctimer;
end;
OnTimer10000:
npcwalkto 99,108;
goto doitagain;
end;
OnTimer30000:
npcwalkto 87,98;
goto doitagain;
end;
OnTimer60000:
npcwalkto 107,117;
end;
OnTimer80000:
npcwalkto 94,116;
goto doitagain;
end;
OnTimer110000:
npcwalkto 82,110;
goto doitagain;
end;
OnTimer130000:
npcwalkto 100,92;
goto doitagain;
end;
}