Boy Posted October 4, 2013 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 135 Reputation: 4 Joined: 09/28/12 Last Seen: October 30, 2024 Share Posted October 4, 2013 Hai rAthena anyone can help me help to edit this script. I want make every Friday at 11PM this event willstart and will finish at Sunday 11PM. - script double_exp_2weeks -1,{ OnInit: // original Base/Job Exp and Drop Rates set .bexp_rate, 25; set .jexp_rate, 25; set .drop_rate, 25; if (atoi(gettimestr("%Y%m%d",9)) < 20130203) { setbattleflag "base_exp_rate", .bexp_rate*100 * 2; setbattleflag "job_exp_rate", .jexp_rate*100 * 2; setbattleflag "item_rate_common", .drop_rate*100 * 2; setbattleflag "item_rate_heal", .drop_rate*100 * 2; setbattleflag "item_rate_use", .drop_rate*100 * 2; setbattleflag "item_rate_equip", .drop_rate*100 * 2; setbattleflag "item_rate_card", .drop_rate*100 * 2; atcommand "@reloadmobdb"; announce "The Double Exp Event continues!", bc_all; } end; OnDay0203: // Feb 3 setbattleflag "base_exp_rate", .bexp_rate*100; setbattleflag "job_exp_rate", .jexp_rate*100; setbattleflag "item_rate_common", .drop_rate*100; setbattleflag "item_rate_heal", .drop_rate*100; setbattleflag "item_rate_use", .drop_rate*100; setbattleflag "item_rate_equip", .drop_rate*100; setbattleflag "item_rate_card", .drop_rate*100; atcommand "@reloadmobdb"; announce "The Double Exp Event has ended.", bc_all; end; } I take this script from here http://rathena.org/board/topic/77571-rate-x2-for-2-week/ Thanks Quote Link to comment Share on other sites More sharing options...
Lil Troll Posted October 4, 2013 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 276 Reputation: 24 Joined: 07/06/13 Last Seen: April 19, 2014 Share Posted October 4, 2013 Hai rAthena anyone can help me help to edit this script. I want make every Friday at 11PM this event will start and will finish at Sunday 11PM. - script double_exp_2weeks -1,{ OnInit: // original Base/Job Exp and Drop Rates set .bexp_rate, 25; set .jexp_rate, 25; set .drop_rate, 25; if (atoi(gettimestr("%Y%m%d",9)) < 20130203) { setbattleflag "base_exp_rate", .bexp_rate*100 * 2; setbattleflag "job_exp_rate", .jexp_rate*100 * 2; setbattleflag "item_rate_common", .drop_rate*100 * 2; setbattleflag "item_rate_heal", .drop_rate*100 * 2; setbattleflag "item_rate_use", .drop_rate*100 * 2; setbattleflag "item_rate_equip", .drop_rate*100 * 2; setbattleflag "item_rate_card", .drop_rate*100 * 2; atcommand "@reloadmobdb"; announce "The Double Exp Event continues!", bc_all; } end; OnDay0203: // Feb 3 setbattleflag "base_exp_rate", .bexp_rate*100; setbattleflag "job_exp_rate", .jexp_rate*100; setbattleflag "item_rate_common", .drop_rate*100; setbattleflag "item_rate_heal", .drop_rate*100; setbattleflag "item_rate_use", .drop_rate*100; setbattleflag "item_rate_equip", .drop_rate*100; setbattleflag "item_rate_card", .drop_rate*100; atcommand "@reloadmobdb"; announce "The Double Exp Event has ended.", bc_all; end; } I take this script from here http://rathena.org/board/topic/77571-rate-x2-for-2-week/ Thanks done - script double_exp_2weeks -1,{ OnInit: set .bexp_rate, 25; set .jexp_rate, 25; set .drop_rate, 25; end; OnFri2300: setbattleflag "base_exp_rate", .bexp_rate*100 * 2; setbattleflag "job_exp_rate", .jexp_rate*100 * 2; setbattleflag "item_rate_common", .drop_rate*100 * 2; setbattleflag "item_rate_heal", .drop_rate*100 * 2; setbattleflag "item_rate_use", .drop_rate*100 * 2; setbattleflag "item_rate_equip", .drop_rate*100 * 2; setbattleflag "item_rate_card", .drop_rate*100 * 2; atcommand "@reloadmobdb"; announce "Week End Double Exp Started!", bc_all; end; OnSun2300: setbattleflag "base_exp_rate", .bexp_rate*100; setbattleflag "job_exp_rate", .jexp_rate*100; setbattleflag "item_rate_common", .drop_rate*100; setbattleflag "item_rate_heal", .drop_rate*100; setbattleflag "item_rate_use", .drop_rate*100; setbattleflag "item_rate_equip", .drop_rate*100; setbattleflag "item_rate_card", .drop_rate*100; atcommand "@reloadmobdb"; announce "The Double Exp Event has ended.", bc_all; end; } Quote Link to comment Share on other sites More sharing options...
Boy Posted October 4, 2013 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 135 Reputation: 4 Joined: 09/28/12 Last Seen: October 30, 2024 Author Share Posted October 4, 2013 Thanks Quote Link to comment Share on other sites More sharing options...
Boy Posted October 8, 2013 Group: Members Topic Count: 28 Topics Per Day: 0.01 Content Count: 135 Reputation: 4 Joined: 09/28/12 Last Seen: October 30, 2024 Author Share Posted October 8, 2013 Hi Lil Troll I need help...i using our script but got problem. the script only run in friday at 11PM then will reset to normal rate. I remove drop rate script only. Please advise. - script double_exp_2weeks -1,{ OnInit: set .bexp_rate, 500; set .jexp_rate, 500; end; OnFri2300: setbattleflag "base_exp_rate", .bexp_rate*5 * 2; setbattleflag "job_exp_rate", .jexp_rate*5 * 2; atcommand "@reloadmobdb"; announce "[Weekend] 50% Exp Started!", bc_all; end; OnSun2300: setbattleflag "base_exp_rate", .bexp_rate*1; setbattleflag "job_exp_rate", .jexp_rate*1; atcommand "@reloadmobdb"; announce "[Weekend] 50% Exp Event has ended.", bc_all; end; } Quote Link to comment Share on other sites More sharing options...
Question
Boy
Hai rAthena anyone can help me help to edit this script. I want make every Friday at 11PM this event will
start and will finish at Sunday 11PM.
I take this script from here http://rathena.org/board/topic/77571-rate-x2-for-2-week/
Thanks
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.