Guest User

Untitled

a guest
Apr 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. - script lucky_pick -1,{
  2. OnInit:
  3. OnClock0000:
  4. set .LuckyTime,rand(24);
  5.  
  6. OnMinute00:
  7. if( gettime(3) == .LuckyTime ){
  8. set .DelayMin,rand(60);
  9. sleep ( .DelayMin * 60000 );
  10. while(1){
  11. query_sql "select account_id from `char` where online = 1 order by rand() limit 1", .@aid;
  12. attachrid .@aid;
  13. if( CheckVending() ){
  14. DetachRID();
  15. continue;
  16. }
  17. announce strcharinfo(0) +" won in Lucky Pick Event.", 0;
  18. getitem 7539,1; //Award 1 poring coin
  19. break;
  20. }
  21. }
  22. end;
  23. }
Add Comment
Please, Sign In to add comment