OscarScorp Posted August 15, 2019 Group: Members Topic Count: 62 Topics Per Day: 0.02 Content Count: 217 Reputation: 16 Joined: 01/28/15 Last Seen: February 25, 2022 Share 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 Link to comment Share on other sites More sharing options...
0 Naruto Posted August 15, 2019 Group: Members Topic Count: 20 Topics Per Day: 0.01 Content Count: 416 Reputation: 74 Joined: 05/16/19 Last Seen: January 24, 2021 Share 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 Link to comment Share on other sites More sharing options...
0 OscarScorp Posted August 16, 2019 Group: Members Topic Count: 62 Topics Per Day: 0.02 Content Count: 217 Reputation: 16 Joined: 01/28/15 Last Seen: February 25, 2022 Author Share Posted August 16, 2019 Yeah I can't find SC_POISON linked to MD_STATUS_IMMUNE anywhere in status.cpp... Quote Link to comment Share on other sites More sharing options...
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!
Link to comment
Share on other sites
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.