Like normal NPC header, 1002 is ID of Poring. This will make a Poring move every 5 seconds in area of rand(140,160);
prontera,150,150,1 script Happy Poring 1002,{
end;
OnInit:
initnpctimer;
end;
OnTimer5000:
set .@x, rand (140,160);
set .@y, rand (140,160);
npcwalkto .@x,.@y;
stopnpctimer;
initnpctimer;
end;
}