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

    Ots tibia a prawa autorskie

    Od pewnego czasu zastanawiam się jak z punktu widzenia prawa wyglądają prywatne serwery - OTS. Proszę wyraźcie swoje zdanie. PS: Jeśli temat jest w złym wątku proszę o przeniesienie. 🙂
  2. H

    "slow macro(ping) ......"

    How did you fix?
  3. H

    Remove Condition

    Thank you all for your help! return false solved the problem.
  4. H

    Remove Condition

    player:teleportTo(player:getTown():getTemplePosition()) player:getTown():getTemplePosition():sendMagicEffect(CONST_ME_TELEPORT) After returning from the onPrepareDeath event, the player sometimes has CONDITION POISON. The functions work fine in other methods. The player's onPrepareDeath...
  5. H

    Remove Condition

    player:getConditions() Not exist attempt to call method 'getConditions' (a nil value).
  6. H

    Remove Condition

    F5
  7. H

    Remove Condition

    When I enter teleport all CONDITIONS are properly removed. In the onPrepareDeath function sometimes it doesn't remove the CONDITION_POISON.
  8. H

    Remove Condition

    CONDITION_POISON sometimes stays on the player in prepadedeath function. https://github.com/otland/forgottenserver/blob/master/src/player.cpp
  9. H

    Remove Condition

    Doesn't work. CONDITION_POISON sometimes stays on the player. local prepareDeath = CreatureEvent("PrepareDeath") function prepareDeath.onPrepareDeath(player, lastHitKiller, mostDamageKiller) if player:isPlayer() then if player:getStorageValue(boss.config.storageJoined) > 0 then...
  10. H

    Remove Condition

    TFS 1.4
  11. H

    Remove Condition

    When I die, I want to remove all conditions. Condition: CONDITION POISON still stays. Please help. boss.removeConditions = function(self, player) local conditions = { CONDITION_POISON, CONDITION_FIRE, CONDITION_ENERGY, CONDITION_PARALYZE, CONDITION_DRUNK...
  12. H

    Lua Function [TFS 1.2/1.3] player:setAttackSpeed(ms) | player:getAttackSpeed()

    After relogin speed back to normal from vocation.xml file.
  13. H

    Default player full light on lower floor

    Works fine, full light ! :) //msg.addByte(player->isAccessPlayer() ? 0xFF : lightInfo.level); msg.addByte(0xFF); //msg.addByte(lightInfo.color); msg.addByte(0xD7);
  14. H

    Default player full light on lower floor

    Works fine, using light level 0xFF, and light color 0xA. But this color is not quite bright. It feels like I'm under water. :)
  15. H

    Default player full light on lower floor

    Hello, how change player light on all floor? No days, no night, only full light on all player on source. Please help me.
  16. H

    Offline Training Fast Up

    F5 TFS 1.4
  17. H

    Faster offline skill

    F5
  18. H

    Change rates for offline training

    How change this in TFS 1.4.2 ?
  19. H

    Faster offline skill

    Hey, later the player gets information about the skill time * 2. I wanted to increase the speed of skilling.
Back
Top