1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | - script AutoFunEvent -1,{ OnClock2030: while(1) { query_sql "select account_id from `char` where online = 1 order by rand() limit 1", .@aid; attachrid .@aid; if(CheckVending()) { DetachRID(); continue; } announce strcharinfo(0) +" won in Lucky Pick Event.", 0; getitem 7179,1; break; } end; } |