Profile Posted July 19, 2017 Posted July 19, 2017 (edited) Hi everyone, I would like to ask you if it is possible to edit the GTB effects so that it stays like this: 50% chance to block dispell 50% chance to block coma Reduce magic damage by 40% If it is possible, what would I need to change? Thanks! Edit: I managed to change the skill.c and 50% to block dispell is now working! However, I still can't find out how to do this for the coma effect. I guess I have to tweek something in these lines... // Status that are blocked by Golden Thief Bug card or Wand of Hermod if (status_isimmune(bl)) { switch (type) { case SC_DECREASEAGI: case SC_SILENCE: case SC_COMA: case SC_INCREASEAGI: case SC_BLESSING: case SC_SLOWPOISON: case SC_IMPOSITIO: case SC_AETERNA: case SC_SUFFRAGIUM: case SC_BENEDICTIO: case SC_PROVIDENCE: case SC_KYRIE: case SC_ASSUMPTIO: case SC_ANGELUS: case SC_MAGNIFICAT: case SC_GLORIA: case SC_WINDWALK: case SC_MAGICROD: case SC_HALLUCINATION: case SC_STONE: case SC_QUAGMIRE: case SC_SUITON: case SC_SWINGDANCE: return 0; } } Edited July 20, 2017 by Profile Quote
0 Profile Posted July 20, 2017 Author Posted July 20, 2017 Sorry to bump this, but I really need this done quickly and I haven't been able to find a solution yet. // Status that are blocked by Golden Thief Bug card or Wand of Hermod if (status_isimmune(bl)) { switch (type) { case SC_DECREASEAGI: case SC_SILENCE: case SC_COMA: case SC_INCREASEAGI: case SC_BLESSING: case SC_SLOWPOISON: case SC_IMPOSITIO: case SC_AETERNA: case SC_SUFFRAGIUM: case SC_BENEDICTIO: case SC_PROVIDENCE: case SC_KYRIE: case SC_ASSUMPTIO: case SC_ANGELUS: case SC_MAGNIFICAT: case SC_GLORIA: case SC_WINDWALK: case SC_MAGICROD: case SC_HALLUCINATION: case SC_STONE: case SC_QUAGMIRE: case SC_SUITON: case SC_SWINGDANCE: return 0; } } These are the effects that the GTB give you immunity to. Is there a way to change the "SC_COMA" to a way in which it will be blocked 50%? Instead of 100%? Quote
Question
Profile
Hi everyone, I would like to ask you if it is possible to edit the GTB effects so that it stays like this:
50% chance to block dispell
50% chance to block coma
Reduce magic damage by 40%
If it is possible, what would I need to change?
Thanks!
Edit:
I managed to change the skill.c and 50% to block dispell is now working!
However, I still can't find out how to do this for the coma effect. I guess I have to tweek something in these lines...
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.