yuhsing

Untitled

Jan 12th, 2013
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1.  
  2. prontera,155,181,5 script Sample#asljkh 757,{
  3. if( getmapusers( .map$ ) < .max_player )
  4. warp .map$,0,0;
  5. else
  6. npctalk "room full";
  7. end;
  8.  
  9. OnMinute09:
  10. announce "Gold Room will be enabled within 1 minutes.",0;
  11. sleep ( 60 * 1000 );
  12. announce "Gold Room opened.",0;
  13. monster .map$,0,0,"--ja--",1002,100,strnpcinfo(0)+"::OnKilled";
  14. hideoffnpc strnpcinfo(0);
  15. sleep ( 60 * 1000 );
  16. announce "Gold Room closed.",0;
  17. mapannounce .map$,"Time Limit reach.",0;
  18. mapwarp .map$,"prontera",155,181;
  19. hideonnpc strnpcinfo(0);
  20. end;
  21.  
  22. OnKilled:
  23. if( rand(100) < 50 ) getitem 969,1;
  24. end;
  25.  
  26. OnInit:
  27. .map$ = "guild_vs5";
  28. .max_player = 8;
  29. end;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment