I really need help I would like to make a command to disable a visual effect on the player for example, this is the command to enable a visual effect: (used in skill.c file to enable a visual effect)
clif->specialeffect(&sd->bl, type, (send_target)flag);
and this is the function of the command clif.c file:
void clif_specialeffect(struct block_list* bl, int type, enum send_target target){unsigned char buf[24];nullpo_retv(bl);memset(buf, 0, packet_len(0x1f3));WBUFW(buf,0) = 0x1f3;WBUFL(buf,2) = bl->id;WBUFL(buf,6) = type;clif->send(buf, packet_len(0x1f3), bl, target);if (disguised(bl)) {WBUFL(buf,2) = -bl->id;clif->send(buf, packet_len(0x1f3), bl, SELF);}}
you know how I can redo this command to disable the visual effect?
please help me, you are the one who knows the whole program!
thanks
please look at my problem,
just need to turn off the visual effect:
yet without success.