diff options
author | shennetsind <ind@henn.et> | 2013-10-30 18:42:58 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-30 18:42:58 -0200 |
commit | c159a3c4ffd414d7423b3504a282cce1111b7874 (patch) | |
tree | 0d7051a90bcd0b9ba229ff16d52a9dea0bbee743 /src/map/map.h | |
parent | 7fefefdde386f13f8fefa8db3ffe9ed140c8aa10 (diff) | |
download | hercules-c159a3c4ffd414d7423b3504a282cce1111b7874.tar.gz hercules-c159a3c4ffd414d7423b3504a282cce1111b7874.tar.bz2 hercules-c159a3c4ffd414d7423b3504a282cce1111b7874.tar.xz hercules-c159a3c4ffd414d7423b3504a282cce1111b7874.zip |
Account-wide Exp/Drop/Death Modifiers
Attempting to mimic the official as suggested in http://hercules.ws/board/topic/250-official-vip-system/
The variables can be read and modified thru scripting as well as sql, the patch introduces 3 new pc-arams 'ModExp','ModDrop' and 'ModDeath' for that purpose.
The OnLogin modifier display is not the real deal though -- wasn't able to get it to output properly (though that might have been my client files failt)
Up for review.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index 6b7d2a630..06c3829b1 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -360,6 +360,9 @@ enum _sp { SP_KILLEDRID=122, SP_SLOTCHANGE=123, SP_CHARRENAME=124, + SP_MOD_EXP=125, + SP_MOD_DROP=126, + SP_MOD_DEATH=127, // Mercenaries SP_MERCFLEE=165, SP_MERCKILLS=189, SP_MERCFAITH=190, |