Help! can someone help editing this one?
dont know how to make it for example.
Friday will start Double EXP on 12 pm and will end 12 midnight
then
Saturday will start again Double EXP on 12 pm and will end 12 midnight
until Monday.
This is my DROPS.CONF : http://upaste.me/fe7b144307a2d54b8
and my Normal Exp/job exp rate is 100x / 100x
dont know how to make it for example.
Friday will start Double EXP on 12 pm and will end 12 midnight
then
Saturday will start again Double EXP on 12 pm and will end 12 midnight
until Monday.
This is my DROPS.CONF : http://upaste.me/fe7b144307a2d54b8
and my Normal Exp/job exp rate is 100x / 100x
Code:
- script FloatingRate -1,{OnSat0000:OnMon0000:OnInit: if ( gettime(4) == 6 || gettime(4) == 0 ) { announce "Double EXP and DROP rate EVENT started", bc_all; setbattleflag "base_exp_rate", 20000; setbattleflag "job_exp_rate", 20000; setbattleflag "item_rate_common", 4000; setbattleflag "item_rate_heal", 4000; setbattleflag "item_rate_use", 4000; setbattleflag "item_rate_equip", 8000; atcommand "@reloadmobdb"; } else if ( gettime(4) == 1 && gettime(3) == 0 && gettime(2) == 0 ) { announce "Double EXP and DROP rate EVENT ended", bc_all; setbattleflag "base_exp_rate", 10000; setbattleflag "job_exp_rate", 10000; setbattleflag "item_rate_common", 2000; setbattleflag "item_rate_heal", 2000; setbattleflag "item_rate_use", 2000; setbattleflag "item_rate_equip", 4000; atcommand "@reloadmobdb"; } end;}
Last edited by a moderator: