• 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++ reward chest tfs 1.4.1

T

Tibia Demon

Guest
i try to add this reward chest to tfs 1.4.1
but i cant locate this lines where is it in tfs 1.4.1
monsters.cpp
C++:
void MonsterType::createLoot(Container* corpse)
{
    if (g_config.getNumber(ConfigManager::RATE_LOOT) == 0) {
        corpse->startDecaying();
        return;
    }
and this in monsters.h
C++:
bool canPushItems;
        bool canPushCreatures;
        bool pushable;
        bool isSummonable;
        bool isRewardBoss;
        bool isIllusionable;
        bool isConvinceable;
        bool isAttackable;
        bool isHostile;
        bool hiddenHealth;
where to find it in tfs 1.4.1
 
Back
Top