• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

C++ Mana/hp going up in protection zone

Just comment that part, this will affect all regeneration conditions

If you want only passive regeneration (food) to work inside protection zone, replace the code with:
C++:
    if (getId() != CONDITIONID_DEFAULT) {
        if (creature->getZone() == ZONE_PROTECTION) {
            return ConditionGeneric::executeCondition(creature, interval);
        }
    }
 
Back
Top