- Heaven's drive no longer targets traps.

- Some minor cleanups


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9316 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-11-24 21:30:38 +00:00
parent d5de96b257
commit f9e9983ae1
4 changed files with 5 additions and 3 deletions

View File

@ -19,6 +19,8 @@
-----
========================
11/24
* Heaven's drive no longer targets traps. [Skotlex]
11/23
* Fixed sp cost of RG_RAID [Playtester]
* Official skills for remaining Thanatos mobs [Playtester]

View File

@ -36,7 +36,7 @@
85,0x86,,0,6:6:6:6:6:6:6:6:6:6:8,1250,enemy,0x008 //WZ_VERMILION
87,0x8d, , -1, 0, -1,all, 0x000 //WZ_ICEWALL
89,0x86, , 0, 5, 450,enemy, 0x008 //WZ_STORMGUST
91,0x86, , 0, 2,1000,enemy, 0x080 //WZ_HEAVENDRIVE
91,0x86, , 0, 2,1000,enemy, 0x000 //WZ_HEAVENDRIVE
92,0x8e, , 2, 0, -1,enemy, 0x000 //WZ_QUAGMIRE
115,0x90, , 0, 1,1000,enemy, 0x006 //HT_SKIDTRAP
116,0x93, , 0, 1,1000,enemy, 0x006 //HT_LANDMINE

View File

@ -5085,7 +5085,7 @@ int clif_GMmessage(struct block_list *bl, char* mes, int len, int flag)
WBUFW(buf,0) = 0x9a;
WBUFW(buf,2) = len + lp;
WBUFL(buf,4) = 0x65756c62;
WBUFL(buf,4) = 0x65756c62; //"blue":
memcpy(WBUFP(buf,lp), mes, len);
flag &= 0x07;
clif_send(buf, WBUFW(buf,2), bl,

View File

@ -1028,7 +1028,7 @@ int status_check_skilluse(struct block_list *src, struct block_list *target, int
//Skill blocking.
if (
(sc->data[SC_VOLCANO].timer != -1 && skill_num == WZ_ICEWALL) ||
(sc->data[SC_ROKISWEIL].timer != -1 && skill_num != BD_ADAPTATION && !(status->mode&MD_BOSS)) ||
(sc->data[SC_ROKISWEIL].timer != -1 && skill_num != BD_ADAPTATION) ||
(sc->data[SC_HERMODE].timer != -1 && skill_get_inf(skill_num) & INF_SUPPORT_SKILL) ||
(sc->data[SC_NOCHAT].timer != -1 && sc->data[SC_NOCHAT].val1&MANNER_NOSKILL)
)