• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. sharinn

    Lua Request item that unequips after X seconds and goes back to bp

    exp ring tfs 1.4+ G_exp_ring_config = { -- global equipCdTime = 20 * 60 * 60, -- in sec equipCdStorageValue = 15000, expBoostMultipler = 2, expBoostTime = 60 * 60, -- in sec expBoostTimeStorageValue = 15001, deequipTime= 3 * 1000, -- in milisec ringId = 2179 } local...
  2. sharinn

    Lua Request item that unequips after X seconds and goes back to bp

    tfs version, what if ring will be deequiped(no fully expired), add cooldown on equip is easy but deequip is problematic you can equip ring, exp for 5min, deequip and wait 1 day for cooldown
  3. sharinn

    Lua Server crashing when login/logout

    if it's always after 2-3s, i will target some onThing scripts (globalscripts and creaturescripts)
  4. sharinn

    Help With Running theforgottenserver.exe

    have you configured db, db schema imported, valid config to connect to your db?
  5. sharinn

    how to stop addEvent if player died?

    add onLogout event that stop player event (will be nice to store events in table, index should be player uid/guid can you write tfs version, on revscript will be really easy, on xml version idk if 2 scripts can be in single file onUse and onLogout ... you can create global player table with...
  6. sharinn

    spell absorb the target's ability.

    set spell to learn only, onLogin script check vocation and add specyfic spell to specyfic vocation, onLogout script check if vocatio==stealer vocation and forget all ultimate spells(in this solution unnecessary), add new spell with forgetting all ultimate spells - > check vocation of target and...
  7. sharinn

    TFS 1.X+ Canary commands GOD don't work

    have your account acces to?
  8. sharinn

    TFS 1.X+ item glitch

    in source speed is divided by 2
  9. sharinn

    Windows Problem with public connections, private works

    did you bind ip addres in config.lua?
  10. sharinn

    clinet 12.72

    https://github.com/dudantas/tibia-client/releases/tag/v12.72.11206
  11. sharinn

    RevScripts Who can change my script of mana potion for health potion? Please Help

    post here error, i expect thera are not doTargetCombatHealth have you other working hp potion script? if yes, copy function that give hp maybe try this cid:addHealth(amoun)
  12. sharinn

    RevScripts Who can change my script of mana potion for health potion? Please Help

    change doTargetCombatMana to doTargetCombatHealth
  13. sharinn

    doCreateItem

    just add another in bridge position after doCreateItem(1284,1,gatepos) add doCreateItem(other_item_id,1,gatepos)
  14. sharinn

    [Error - IOLoginData::loadPlayer] Player has Town ID 8 which doesn't exist

    change player town to 1 in db second solution - create town on the map with id = 8
  15. sharinn

    TFS 12.72 login

    Hello, tfs is ready to use client 12.72?? i try login and get "Login failed. Tibia might currently..." i use ZNOTE ACC and also MYACC + login.php for Tibia 11 and/or plugin from otbr, nothing work ;/ Server name etc are same in config.lua and config from accmaker(php file) Should i try more or...
  16. sharinn

    C++ enums update item attribute over 31 question

    example enum PlayerFlags : uint64_t { [...] PlayerFlag_NotGenerateLoot = static_cast<uint64_t>(1) << 31, PlayerFlag_IgnoreProtectionZone = static_cast<uint64_t>(1) << 32,
  17. sharinn

    TFS 1.X+ TFS 1.2 Looking for monster heal monster spell

    why you try get player at all?
  18. sharinn

    TFS 1.X+ TFS 1.2 Looking for monster heal monster spell

    if you want monter heal master(only player) change local player = creature:getPlayer() to local player = targer:getPlayer()
  19. sharinn

    TFS 1.X+ TFS 1.2 Looking for monster heal monster spell

    getLevel() and getMagicLevel()... from who you take lvl and mlvl?? i thing it should be player:getLevel() player:getMagicLevel()
  20. sharinn

    TFS master protocol 12.x support [Development Thread]

    this post is for future, we should keep old system and give possible to chose mana shield system
Back
Top