viewing paste Unknown #24374 | Athena

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
prontera,150,150,4  script  Gold Easter Egg 4_DRAGON_EGG,{
OnInit:
    disablenpc strnpcinfo(0);
end;
OnEnableGoldEgg:
for (.@i = 0; .@i < 50; .@i++) // 50 will be spawned
    for (.@x=1; .@x <= 10; .@x++)
        for (.@y=1; .@y <= 10; .@y++)
        duplicatenpc(strnpcinfo(0),"NPC  "+ .@x +":" + .@y,"","prontera",.@x,.@y,5,998);
    npcspeed 100;
    while ( true ) {
        getmapxy .@map$, .@x, .@y, 1;
        while ( checkcell( .@map$, .@x2 = .@x + rand(-10,10), .@y2 = .@y + rand(-10,10), cell_chknopass ) );
        npcwalkto .@x2, .@y2;
        sleep rand(500,1000);
    }
end;
}
Viewed 869 times, submitted by Guest.