viewing paste daily random bonus 2x to player | Athena

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
-   script  sample#exp  -1,{
 
OnClock0000:
.@hour = 12;
.@player = 5;
 
query_sql( "SELECT `account_id` FROM `char` WHERE `online` = 1 ORDER BY RAND() LIMIT "+.@player,.@aid );
.@size = getarraysize( .@aid );
for( .@i = 0; .@i < .@size; .@i++ )
    if( attachrid( .@aid[.@i] ) ){
        dispbottom "Gained 2X EXP/DROP for next "+.@hour+" Hours.";
        sc_start SC_ITEMBOOST,( .@hour * 3600000 ),100;
        sc_start SC_EXPBOOST,( .@hour * 3600000 ),100;
    }
detachrid;
end;
}
Viewed 566 times, submitted by Guest.