diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-10 16:44:59 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-10 16:44:59 +0000 |
commit | 00d145ef8a2e658b296de3fbc4ab5918fe4375ae (patch) | |
tree | 5b32bb8fdad4cfe670afcffa3d1def497069cf85 /src/map | |
parent | ad7a8fa8ae43a48ea5d6b9e1b4f4c8638ba6d453 (diff) | |
download | hercules-00d145ef8a2e658b296de3fbc4ab5918fe4375ae.tar.gz hercules-00d145ef8a2e658b296de3fbc4ab5918fe4375ae.tar.bz2 hercules-00d145ef8a2e658b296de3fbc4ab5918fe4375ae.tar.xz hercules-00d145ef8a2e658b296de3fbc4ab5918fe4375ae.zip |
- Should have fixed being petrified not reducing your defense and increaseing your mdef.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8958 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/script.c | 4 | ||||
-rw-r--r-- | src/map/status.c | 9 |
2 files changed, 5 insertions, 8 deletions
diff --git a/src/map/script.c b/src/map/script.c index 58c72d3bf..707e87b16 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -2737,9 +2737,9 @@ void run_script_main(struct script_state *st) if(bk_st) { ShowWarning("Unable to restore stack! Double continuation!\n"); //Report BOTH scripts to see if that can help somehow. - ShowDebug("Previous script (lost):"); + ShowDebug("Previous script (lost):\n"); report_src(bk_st); - ShowDebug("Current script:"); + ShowDebug("Current script:\n"); report_src(st); } } else { diff --git a/src/map/status.c b/src/map/status.c index d0c8310e8..7a3d2c4eb 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -113,7 +113,7 @@ void initChangeTables(void) { StatusSkillChangeTable[SC_DPOISON] = NPC_POISON;
//These are the status-change flags for the common ailments.
- StatusChangeFlagTable[SC_STONE] = SCB_DEF_ELE;
+ StatusChangeFlagTable[SC_STONE] = SCB_DEF_ELE|SCB_DEF|SCB_MDEF;
StatusChangeFlagTable[SC_FREEZE] = SCB_DEF_ELE|SCB_DEF|SCB_MDEF;
// StatusChangeFlagTable[SC_STUN] = SCB_NONE;
// StatusChangeFlagTable[SC_SLEEP] = SCB_NONE;
@@ -5007,6 +5007,7 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val val3 = tick/1000; //Petrified HP-damage iterations.
if(val3 < 1) val3 = 1;
tick = 5000; //Petrifying time.
+ calc_flag = 0; //Actual status changes take effect on petrified state.
break;
case SC_DPOISON:
@@ -5439,10 +5440,6 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val val4 = gettick(); //Store time at which you started running.
break;
case SC_KAAHI:
- if(flag&4) {
- val4 = -1;
- break;
- }
val2 = 200*val1; //HP heal
val3 = 5*val1; //SP cost
val4 = -1; //Kaahi Timer.
@@ -6480,7 +6477,7 @@ int status_change_timer(int tid, unsigned int tick, int id, int data) sc->opt1 = OPT1_STONE;
clif_changeoption(bl);
sc->data[type].timer=add_timer(1000+tick,status_change_timer, bl->id, data );
- status_calc_bl(bl, SCB_DEF_ELE);
+ status_calc_bl(bl, StatusChangeFlagTable[type]);
return 0;
}
if((--sc->data[type].val3) > 0) {
|