prontera,155,181,5 script Sample 757,{ mes "Total Zeny Gained :"; mes "^FF0000"+.TotalZeny+"^000000 Zeny."; mes "Need "+.TargetZeny+" Zeny to Active 2x Rate."; next; if( select("Donate Zeny:Cancel") == 1 ){ mes "How many will be Donated ?"; input .@Amount,0,Zeny; mes "Done,.. you have Donated "+.@Amount+" Zeny."; set Zeny,Zeny - .@Amount; if( .TotalZeny >= .TargetZeny ){ set .TotalZeny,0; set .Duration,gettimetick(2) + ( 24 * 60 ); announce "Congratz..2X Rate Activated. Please Relog to get the 2X Rate."; } } close; OnInit: set .TargetZeny,500000000; set .Rate,2; end; OnPCLoginEvent: if( .Duration > gettimetick(2) ){ sc_start SC_EXPBOOST,( .Duration - gettimetick(2) ),( .Rate * 100 ); sc_start SC_ITEMBOOST,( .Duration - gettimetick(2) ),( .Rate * 100 ); } end; }