Advertisement
johnlol

AutoPickEvent

Aug 7th, 2023
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VeriLog 0.36 KB | Gaming | 0 0
  1. -   script  AutoPickEvent   -1,{
  2.  
  3. OnClock2100:
  4. OnClock0600:
  5. OnClock1200:
  6.  
  7. while(1)
  8. {
  9.   query_sql "select account_id from `char` where online = 1 order by rand() limit 1", .@aid;
  10.   attachrid .@aid;
  11.   if(CheckVending())
  12.   {
  13.    DetachRID();
  14.    continue;
  15.   }
  16.   announce strcharinfo(0) +" won in Lucky Pick Event.", 0;
  17.   getitem 7227,100;
  18.   break;
  19. }
  20. end;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement