Remove Effect on Kaite and Kaupe Skills

Axl

New member
Messages
24
Points
0
Hey guys, I've got a question. I searched the entire source and couldn't find the visual effect activation of Kaupe and Kaite, because I'd like to remove them. Could you help me?

att.

screenHarus007.jpg

screenHarus008.jpg

 
Open srcmapbattle.c and search for:

Code:
clif->specialeffect(bl, 462, AREA);
change it to:
Code:
//clif->specialeffect(bl, 462, AREA);
Now open srcmapstatus.c, search for:
Code:
set_sc( SL_KAUPE , SC_KAUPE , SI_KAUPE , SCB_NONE );set_sc( SL_KAITE , SC_KAITE , SI_KAITE , SCB_NONE );
replace it with:
Code:
set_sc( SL_KAUPE , SC_KAUPE , SI_BLANK , SCB_NONE );set_sc( SL_KAITE , SC_KAITE , SI_BLANK , SCB_NONE );
Open srcmapskill.c and find:
Code:
clif->specialeffect(bl, 438, AREA)
change it to:
Code:
 //clif->specialeffect(bl, 438, AREA);
I think this way there won't be any effects regarding those stati, but I'm not sure..
 
Last edited by a moderator:
Oh good find, in game use the @effect command to see if it's the same as those skills and that should work

 
Those clifs just signal that the status has started, I think that those "permanent" effects are signalised by the SI flag, but again, I'm not so sure of that c:

 
Back
Top