• 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!

Search results

  1. ConAn Edujawa

    C++ buy from bank balance

    bump
  2. ConAn Edujawa

    C++ buy from bank balance

    bump
  3. ConAn Edujawa

    C++ buy from bank balance

    Is there any way to make NPC remove money from the bank if the player doesn't have money in the backpack.? 0.3.7
  4. ConAn Edujawa

    C++ monster onDeath

    i used Creature* _owner = attackedCreature; Player* owner = NULL; if(_owner->getPlayer()) owner = _owner->getPlayer(); owner ->getplayerBouns() but when kill monster server crash
  5. ConAn Edujawa

    C++ monster onDeath

    how i can check player->getplayerBouns() in monster.cpp in bool Monster::eek:nDeath() want to add (uint32_t)random_range(1, 100) < player->getplayerBouns()) 0.4
  6. ConAn Edujawa

    monster armor and defense

    this check armor nice but why when changed armor and def for monster for 500 its same damage when set it 1 i took this formula from ur tfs 1.3 8.60 { BlockType_t blockType = BLOCK_NONE; if(isImmune(combatType)) { damage = 0; blockType = BLOCK_IMMUNITY; } else...
  7. ConAn Edujawa

    monster armor and defense

    so block work for element only?
  8. ConAn Edujawa

    monster armor and defense

    hello guys i set my monster armor and defense 500 and monster still get higher damage if set armor and defense 500 its same damage when set armor and defense 1 i think when add higher number its mean block damage right ? how armor and defense formula for monster work ? 0.4
  9. ConAn Edujawa

    random items stats

    anyone can help ?
  10. ConAn Edujawa

    random items stats

    no error but this items don't drop anymore in monster <item id="2487;2488;2491" chance="100000"/> chance 100% but not drop it
  11. ConAn Edujawa

    random items stats

    hello guys i use this mod https://otland.net/threads/mod-random-item-stats.130295/ when when add <item id="2487;2488;2491" chance="100000"/> in monster loot give me error in this line f.stackable and random % i.count + 1 or and this local tmp, ret = createLoot(v.loot, ext, cid) the error...
  12. ConAn Edujawa

    TFS 0.X total items bonus

    anyone can help?
  13. ConAn Edujawa

    getstorage

    yes thanks
  14. ConAn Edujawa

    getstorage

    why proably 0 ? this code check storage between 952610 and 952621
  15. ConAn Edujawa

    getstorage

    what the wrong in this code std::string value; for (int32_t i = 952610; i <= 952621; i++) player->getStorage(i, value); int32_t tmp = (int32_t)atoi(value.c_str()); if(tmp > 0) ss << " amount: " << tmp << "."...
  16. ConAn Edujawa

    getCreatureStorageList

    what this functions do ? 0.4 int32_t LuaInterface::luaGetStorageList(lua_State* L) { //getStorageList() ScriptEnviroment* env = getEnv(); StorageMap::const_iterator it = env->getStorageBegin(); lua_newtable(L); for(uint32_t i = 1; it != env->getStorageEnd(); ++i, ++it)...
  17. ConAn Edujawa

    TFS 0.X total items bonus

    u can make source edit?
  18. ConAn Edujawa

    TFS 0.X total items bonus

    yes
  19. ConAn Edujawa

    TFS 0.X total items bonus

    how i can control in total Equipment bonus for each char example max manaGain for knight will be 120 paladin 180 mage 220 max healthGain for knight 220 paladin 180 mage 220 0.4
  20. ConAn Edujawa

    doPlayerSendTextMessage

    yes yes :D u are the best :D
Back
Top