yuhsing

Untitled

Dec 3rd, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. prontera,157,178,5 script Clemy 703,{
  2. end;
  3. OnMon0000:
  4. OnWed0000:
  5. .unhide = 0;
  6. disablenpc strnpcinfo(0);
  7. end;
  8. OnSun0000:
  9. OnTue0000:
  10. enablenpc strnpcinfo(0);
  11. .unhide = 1;
  12. // continute read on
  13. OnInit:
  14. if ( gettime(4) != 0 && gettime(4) != 2 ) { // add this...
  15. .unhide = 0;
  16. disablenpc strnpcinfo(0);
  17. end;
  18. }
  19. .@interval = 2;
  20. .@step = 5;
  21. while( .unhide ){
  22. sleep .@interval * 1000;
  23.  
  24. getmapxy .@map$, .@x, .@y, 1;
  25. while ( checkcell( .@map$, .@npc_x = .@x + rand( -.@step, .@step ), .@npc_y = .@y + rand( -.@step, .@step ), cell_chknopass ) );
  26.  
  27. npcwalkto .@npc_x, .@npc_y;
  28. npctalk callfunc( "F_RandMes", 2,
  29. "Heloo!!!", // 1
  30. "Goodbye~!" // 2
  31. );
  32. }
  33. end;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment