- Corrected Longing for Freedom, it should triple SP cost rather than modifying SP cost to 1/sec
- Corrected Marionette Control's SP cost, it should be 100. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10150 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
7ede0fdab1
commit
263baf5595
@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
|
|||||||
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||||
|
|
||||||
2007/04/04
|
2007/04/04
|
||||||
|
* Corrected Longing for Freedom, it should triple SP cost rather than
|
||||||
|
modifying SP cost to 1/sec
|
||||||
* SC_ENCHANTARMS will no longer fail to start if it's already running with
|
* SC_ENCHANTARMS will no longer fail to start if it's already running with
|
||||||
a "higher elemental level".
|
a "higher elemental level".
|
||||||
* When trying to trade an untradeable item, the add-item-fail packet will
|
* When trying to trade an untradeable item, the add-item-fail packet will
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
========================
|
========================
|
||||||
04/04
|
04/04
|
||||||
|
* Corrected Marionette Control's SP cost, it should be 100. [Skotlex]
|
||||||
* Updated Poison Bottle and Thunder Box [Playtester]
|
* Updated Poison Bottle and Thunder Box [Playtester]
|
||||||
* Had to revert some mob modes [Playtester]
|
* Had to revert some mob modes [Playtester]
|
||||||
- figured out I can't read the mode fully from the inc value
|
- figured out I can't read the mode fully from the inc value
|
||||||
|
@ -299,7 +299,7 @@
|
|||||||
|
|
||||||
394,0,0,12:14:16:18:20:22:24:26:28:30,0,0,0,13:14,1,1,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //CG_ARROWVULCAN#アロ?バルカン#
|
394,0,0,12:14:16:18:20:22:24:26:28:30,0,0,0,13:14,1,1,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //CG_ARROWVULCAN#アロ?バルカン#
|
||||||
395,0,0,30:40:50:60:70,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //CG_MOONLIT#月明りの泉に落ちる花びら#
|
395,0,0,30:40:50:60:70,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //CG_MOONLIT#月明りの泉に落ちる花びら#
|
||||||
396,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //CG_MARIONETTE#マリオネットコントロ?ル#
|
396,0,0,100,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //CG_MARIONETTE#マリオネットコントロ?ル#
|
||||||
397,0,0,18:21:24:27:30,0,0,0,4:5,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_SPIRALPIERCE#スパイラルピア?ス#
|
397,0,0,18:21:24:27:30,0,0,0,4:5,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_SPIRALPIERCE#スパイラルピア?ス#
|
||||||
398,0,0,23,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_HEADCRUSH#ヘッドクラッシュ#
|
398,0,0,23,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_HEADCRUSH#ヘッドクラッシュ#
|
||||||
399,0,0,12:12:14:14:16:16:18:18:20:20,0,0,0,4:5,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_JOINTBEAT#ジョイントビ?ト#
|
399,0,0,12:12:14:14:16:16:18:18:20:20,0,0,0,4:5,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_JOINTBEAT#ジョイントビ?ト#
|
||||||
|
@ -6754,7 +6754,7 @@ int status_change_timer(int tid, unsigned int tick, int id, int data)
|
|||||||
}
|
}
|
||||||
if (s && ((sc->data[type].val3 % s) == 0)) {
|
if (s && ((sc->data[type].val3 % s) == 0)) {
|
||||||
if (sc->data[SC_LONGING].timer != -1)
|
if (sc->data[SC_LONGING].timer != -1)
|
||||||
sp = s;
|
sp*= 3;
|
||||||
if (!status_charge(bl, 0, sp))
|
if (!status_charge(bl, 0, sp))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user