- May 25, 2017
- 31
- 29
remove (and marry[you]=0) from (if pol[you]=0 and gender[npc]=1 and pol[npc]>0 and marry[you]=0 and otn) in qgen
call me a noob, but what does it actually mean?
Good question....
NEXT
It's just a set of variables to form a condition which has to be true before something happens in the game. This is part of the Evil 2 code which can only be seen by using a special editor qgen.
The pol[xxx] and gender[xxx] where [xxx] can be [you] or [npc] are very confusion as both basically are used for the same thing which is stating which gender you or the npc are. marry[you]=x just means whether or not you are married (0 means no and 1 means yes.
- pol[you]=0 means male so in evil 2 this should always be true because you can only play as male
- gender[npc]=1 means the npc has to be female
- pol[npc]>0 means the npc can not be a male (like sayd pol[xxx]=0 is male). In the original code from EVIL from hivoltage this means female (=1), castrated (=2) or futa (=3) but in Evil 2 castrated and futa npc's are deactivated so pol[npc]>0 also means the npc needs to be female
So far the course "Evil 2 code 101"
And yes by removing marry[you]=0 from that equation you basically tell the game you can marry more than 1 girl/female
Last edited: