• 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. Majster12

    Mehah Otclient - Account login or password is not correct.

    Today, I aimed to test the compatibility of the Mehah client with version 13, but I've run into an issue. The client seems to be sending incorrect login credentials. I selected one of the popular servers, and I utilized "https://www.gunzodus.net/game/login/1311?nservice.php" for logging in, as...
  2. Majster12

    Solved TFS 1.3 max speed 750?

    There is a limit for a speed value? Dev Onica Speed on RL Tibia: Dev Onica Speed on TFS 1.3:
  3. Majster12

    Solved doSummonCreature problem

    TFS 1.2 pileofbones.lua function onUse(player, item, position, fromPosition, toPosition) local position = getCreaturePosition(cid) local chance = math.random(1, 30) if chance <= 28 then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You ransack the pile but fail to find any...
  4. Majster12

    Solved Ferumbras' amulet remove storage at home.

    I'ts even possible to remove storage when you leave item at home? Also no errors in console but don't work as it should. local config = { time = 1, storage = 200011 } function onUse(player, item, fromPosition, target, toPosition, isHotkey) if player:getStorageValue(config.storage)...
  5. Majster12

    Solved Pagination in Depot Chest.

    depotchest.cpp Changed from: Container(type) { maxDepotItems = 2000; maxSize = 32; pagination; } to Container(type) { maxDepotItems = 2000; maxSize = 32; pagination = true; } but still no pagination. Fixed by server dev.
  6. Majster12

    Solved Debug when more than 15 transactions in Tibia Coins History.

    TFS 1.2 Tibia 10.97 gamestore/init.lua http://pastebin.com/raw/nFki8YpR Transfer window works fine.
  7. Majster12

    Lua Players can put items into Shop Inbox

    TFS 1.2 When i change like this no one can put items to bag/bacpkack. players.lua -- Do not let the player insert items into either the Reward Container or the Reward Chest local itemId = container:getId() if itemId == ITEM_REWARD_CONTAINER or itemId ==...
  8. Majster12

    Solved Global Bank System You don't have enough money.

    TFS 1.2 Any ideas? luascript.cpp int LuaScriptInterface::luaPlayerGetMoney(lua_State* L) { // player:getMoney() Player* player = getUserdata<Player>(L, 1); if (player) { lua_pushnumber(L, player->getMoney()); } else { lua_pushnil(L); } return 1; } int...
  9. Majster12

    Solved getPlayerFlagValue error

    Can't broadcast. When someone die. Anyone have an idea?
  10. Majster12

    Solved How to connect ingame store balance to webpage points balance.

    Any ideas? Solved. function Player.getCoinsBalance(self) resultId = db.storeQuery("SELECT `premium_points` FROM `accounts` WHERE `id` = " .. self:getAccountId()) if not resultId then return 0 end return result.getDataInt(resultId, "premium_points") end function...
  11. Majster12

    Solved Weird problem. "shielding +3%"

    You see an ornate chestplate (Arm:16, shielding +3%, protection physical +8%). It can only be wielded properly by knights of level 200 or higher. It weighs 156.00 oz. Item ID: 15406. Position: 32346, 32219, 7 <item id="15406" article="an" name="ornate chestplate"> <attribute key="weight"...
  12. Majster12

    Solved RETURNVALUE_YOUARENOTTHEOWNER

    https://github.com/otland/forgottenserver/pull/1641 Actions.cpp uint32_t corpseOwner = container->getCorpseOwner(); if (container->isRewardCorpse()) { //only players who participated in the fight can open the corpse if...
  13. Majster12

    Solved Need Little Help with enchanting. Moonlight Crystals / Werewolf Amulet / Werewolf Helmet

    Tried to solve this by myself but without results. If paladin or royal paladin use moonlight crystals on werewolf helmet he should receive enchanted werewolf helmet (paladin), but he always receive enchanted werewolf helmet (mage/druid). local enchantableItems = {24716, 24718} local...
  14. Majster12

    Solved Ring of Ending Argument #3 is unsafe

    function onEquip(cid, item, slot) local messages = { {m = "The ring feels quite heavy now. Nothing else happens.", e = CONST_ME_MAGIC_GREEN}, {m = "The ring feels even heavier. You feel slightly stronger, however.", e = CONST_ME_MAGIC_GREEN}, {m = "You feel better, more energetic than ever...
  15. Majster12

    [Need a fix] (internalGetPlayerInfo) Player not found when requesting player info #18

    Script: <?xml version="1.0" encoding="ISO-8859-1"?> <mod name="Skull System" version="1.0" author="Vomar" contact="massa-war.com" enabled="yes"> <config name="SkullC_func"><![CDATA[ function setSkullColor(cid) local t = { [{5,19}] = 1, [{20,39}] = 2, [{40,59}] = 3, [{60,99}] = 4...
  16. Majster12

    [Germany][8.60] Massa-War - 12.08.2014 17:00

    Start 12.8.2014r 5:00 PM (GMT+2). Timer on website. Welcome. Website:massa-war.com ~Hosted in Germany. Protocol: 8.6 Port: 7171 Server Info: massa-war.com to make account Very, very custom detailed balanced OT. ~Map Info: Our map is the best map on the war servers. *Features! ~Offline...
  17. Majster12

    Compiling Need Little Help with c++

    delete
  18. Majster12

    Solved Vocation Base protection from Fire or Psyhical.

    How to make protection from physical for several vocations? Ex. Knight has 5% psychic resistance and if i shoot from exori con he will lose 95hp instead of 100. Changing that in Spells will be embarrassing because I have a lot of professions and a lot of spells. Solved...
  19. Majster12

    Lua Storages MaxMana MaxHp

    Hello! It's my transform script. I need little help with storages. I need to save maxmana and maxhp in storages because when player use transform and die or logout he can transform again and again. Every time script give him mana and hp. Can somebody edit it for me? Thanks in advance :)...
  20. Majster12

    Compiling c++ little problem

    Hello. In player c++ i want to make system that you don't receive frag for 8 lvl but 8 lvl for killing 8 lvl receive frag i have something like this bool Player::addUnjustifiedKill(const Player* attacked, bool countNow) { if(attacked->getLevel() == 8) return false; }
Back
Top