diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-06-14 19:55:57 +0300 |
commit | 1dabec193370d2e95836fa044d3f402161ed4606 (patch) | |
tree | bbb7f9e290f7c684f12c00ac25227369332d5d92 /npc/custom/etc/floating_rates.txt | |
parent | 96a65258eec0ede99772589f8a02bc4c26eb9765 (diff) | |
download | hercules-1dabec193370d2e95836fa044d3f402161ed4606.tar.gz hercules-1dabec193370d2e95836fa044d3f402161ed4606.tar.bz2 hercules-1dabec193370d2e95836fa044d3f402161ed4606.tar.xz hercules-1dabec193370d2e95836fa044d3f402161ed4606.zip |
Remove conf dir.
Diffstat (limited to 'npc/custom/etc/floating_rates.txt')
-rw-r--r-- | npc/custom/etc/floating_rates.txt | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/npc/custom/etc/floating_rates.txt b/npc/custom/etc/floating_rates.txt deleted file mode 100644 index 109a5217c..000000000 --- a/npc/custom/etc/floating_rates.txt +++ /dev/null @@ -1,41 +0,0 @@ -//===== Hercules Script ====================================== -//= Floating Server Rates -//===== By: ================================================== -//= Lupus -//===== Current Version: ===================================== -//= 1.0 -//===== Description: ========================================= -//= It's a simply example of setbattleflag -//= This script will change your server rates from 1x to 1.5x every 6 hours -//= Note: It doesn't affect Card granted drops, MVP & Treasure Chests drops ^_- -//= It also doesn't affect CARD drops, because they are just 0.01% -//===== Additional Comments: ================================= -//= You can make incredible scripts with 'setbattleflag'! -//============================================================ - -- script FloatingRates FAKE_NPC,{ -OnInit: -//add any other HOURS -OnHour00: -OnHour06: -OnHour12: -OnHour18: -//------------------- - set $@brate,rand(100,150); - set $@jrate,rand(100,150); - set $@drate,rand(100,150); - //Base exp - setbattleflag("base_exp_rate",$@brate); - //Job exp - setbattleflag("job_exp_rate",$@jrate); - //Drops - setbattleflag("item_rate_common",$@drate); - setbattleflag("item_rate_heal",$@drate); - setbattleflag("item_rate_use",$@drate); - setbattleflag("item_rate_equip",$@drate); - //we don't change card drops rate, because these values won't change them anyway - atcommand "@reloadmobdb"; - - announce "Current Rune-Midgard rates are: 1."+($@brate-100)+"x 1."+($@jrate-100)+"x 1."+($@drate-100)+"x",bc_all,0xFF6060; - end; -} |