OscarScorp Posted August 15, 2019 Posted August 15, 2019 Hello everyone, I'm looking to make the MvPs vulnerable to Poison, but I've altered the status so it won't deal % damage to MvPs, just the flat damage. Problem is, where can I find how to add SC_POISON so it is able to be inflicted in MvPs? Thanks in advance! Quote
0 Naruto Posted August 15, 2019 Posted August 15, 2019 (edited) pretty sure this is it : status.c // Check for resistances if(status_has_mode(status,MD_STATUS_IMMUNE) && !(flag&SCSTART_NOAVOID)) { if (type>=SC_COMMON_MIN && type <= SC_COMMON_MAX) return 0; switch (type) { case SC_BLESSING: case SC_DECREASEAGI: case SC_PROVOKE: case SC_COMA: case SC_GRAVITATION: case SC_SUITON: case SC_STRIPWEAPON: case SC_STRIPARMOR: case SC_STRIPSHIELD: case SC_STRIPHELM: case SC_RICHMANKIM: case SC_ROKISWEIL: case SC_FOGWALL: case SC_WHITEIMPRISON: case SC_FEAR: case SC_FREEZING: case SC_BURNING: case SC_MARSHOFABYSS: case SC_ADORAMUS: case SC_PARALYSIS: case SC_DEEPSLEEP: case SC_CRYSTALIZE: case SC_TEARGAS: case SC_TEARGAS_SOB: case SC_PYREXIA: case SC_DEATHHURT: case SC_TOXIN: case SC_PARALYSE: case SC_VENOMBLEED: case SC_MAGICMUSHROOM: case SC_OBLIVIONCURSE: case SC_LEECHESEND: case SC_BANDING_DEFENCE: case SC__ENERVATION: case SC__GROOMY: case SC__IGNORANCE: case SC__LAZINESS: case SC__UNLUCKY: case SC__WEAKNESS: case SC_BITE: case SC_MAGNETICFIELD: case SC_NETHERWORLD: case SC_CRESCENTELBOW: case SC_VACUUM_EXTREME: case SC_CATNIPPOWDER: case SC_SV_ROOTTWIST: case SC_BITESCAR: case SC_FRESHSHRIMP: return 0; } } // Check for mvp resistance // atm only those who OS if(status_has_mode(status,MD_MVP) && !(flag&SCSTART_NOAVOID)) { switch (type) { case SC_COMA: // continue list... return 0; } } so all common status return 0 for boss monster need to figure that out cause sc_poison is basic Edited August 15, 2019 by Naruto Quote
0 OscarScorp Posted August 16, 2019 Author Posted August 16, 2019 Yeah I can't find SC_POISON linked to MD_STATUS_IMMUNE anywhere in status.cpp... Quote
Question
OscarScorp
Hello everyone,

I'm looking to make the MvPs vulnerable to Poison, but I've altered the status so it won't deal % damage to MvPs, just the flat damage.
Problem is, where can I find how to add SC_POISON so it is able to be inflicted in MvPs?
Thanks in advance!
2 answers 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.