diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-18 19:00:54 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-18 19:00:54 -0300 |
commit | e3c27f4a830ac98d6a06a45a97970d8c4c7f3b26 (patch) | |
tree | 2f10b7feeb2c398bc850d7f6cb704e449cbe2900 /db/re | |
parent | 048f06dfbd0ce99847cf145638161f212b45d682 (diff) | |
download | serverdata-e3c27f4a830ac98d6a06a45a97970d8c4c7f3b26.tar.gz serverdata-e3c27f4a830ac98d6a06a45a97970d8c4c7f3b26.tar.bz2 serverdata-e3c27f4a830ac98d6a06a45a97970d8c4c7f3b26.tar.xz serverdata-e3c27f4a830ac98d6a06a45a97970d8c4c7f3b26.zip |
Mark the officers on Blue Sage residence with deep blue robes. All others use
light blue robes. This is how you can know who is officer and who is not.
Diffstat (limited to 'db/re')
-rw-r--r-- | db/re/item_db.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 77aa61996..ccc200585 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -11019,7 +11019,8 @@ item_db: ( bonus bHealPower,100; bonus bHealPower2,100; - if (strcharinfo(0) != "Jesus Saves" && BaseLevel < 255) { + // Equipment use is free after level 255 or during tests + if ($@GM_OVERRIDE && BaseLevel < 255) { bonus bNoRegen,1; bonus2 bSPLossRate,(255-BaseLevel)/30,(1000-(BaseLevel*2)); bonus2 bHPLossRate,(255-BaseLevel)/40,(1000-(BaseLevel*2)); |