• 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. gudan garam

    TFS 1.X+ Quest Chest 10.98 TFS 1.3 PROBLEM

    I'm working on migrating a 0.4 datapack to 1.3 and I think its pretty useful to have both logic working because my map already had tons of quests working the old way. Here is my quest_system.lua so you can use it on items with action id 2000 and still use the actual 1.3 system on new quests you...
  2. gudan garam

    Script to help you with your raids.xml

    Hello otland people. So, I'm working on a server project right now and my actual task is to setup the server raids. After reading the sources on the raids system I came up with a complex, elaborate, very hard to compreend php script that took me days without sleep to write. What you need to...
  3. gudan garam

    need NPC that gives a key with an action ID

    local item = player:addItem(KEY_ID) item:setActionId(ACTION_ID)
  4. gudan garam

    AAC looking for script www discord

    Noice.
  5. gudan garam

    CoronaVirus- What's your status?

    Here in Brazil there are still lots of people in "normal life", most of the medium class and higher have started to work from home, thoose who can't are still working normal, a lot of people lost their jobs. I live in São Paulo which is the biggest state in Brazil, so while I was already doing...
  6. gudan garam

    Lua [Lua Error] At login (TFS 0.4)

    Can you post a print of the console when it throws the error?
  7. gudan garam

    Android tibia client

    No
  8. gudan garam

    Any tips for debugging the Tibia Client?

    What is happening when the client debugs? What actions are being triggered? The last line says you are sending a field with type 0, the client probably wants something else, doesn't that ring any bell?
  9. gudan garam

    Lua [Lua Error] At login (TFS 0.4)

    It is not possible to help you if you don't provide the file that is causing that error.
  10. gudan garam

    Lua [TFS 1.3] Help with script logic

    I'm sorry, I may have confused you. I didn't add anything new to the code, I just changed what I said about checking the wrapid before anything else.
  11. gudan garam

    Lua [TFS 1.3] Help with script logic

    I would suggest you to check if the item has a "wrapid" before everything else, preventing the script to run a bunch of unnecessary code. That would mainly remove the cost of running this method: otland/forgottenserver (https://github.com/otland/forgottenserver/blob/master/src/map.cpp#L78)...
  12. gudan garam

    Tibia in Minecraft

    I can't believe the map screenshot. I have never played minecraft but if you guys did that manually, props.
  13. gudan garam

    Lua [TFS 1.3] How to only display value if different than zero? And plural

    local str = "" local secs = "" secs = 1554654 -- fictional value -- converting secs -- local hours = math.ceil(secs / 3600) - 1 local minutes = math.ceil((secs - (3600 * hours)) / 60) if (minutes == 60) then minutes = 0 hours = hours + 1 end local days = math.ceil(hours / 24) - 1...
  14. gudan garam

    Twitch Live Migrating tfs 0.4 to 1.3

    Hey people, come watch me migrate my 0.4 datapack server to a 1.3 tfs server.
  15. gudan garam

    Lua [TFS 1.3] Percent amount healing potion per tick.

    Maybe take a look at how "utura gran" is done. https://github.com/otland/forgottenserver/blob/master/data/spells/scripts/healing/intense_recovery.lua
  16. gudan garam

    Lua [TFS 1.3] Percent amount healing potion per tick.

    This? local healthmax = target:getMaxHealth() local hpPercent = 5 local toHeal = healthmax * (hpPercent/100) doTargetCombatHealth(0, target, COMBAT_HEALING, toHeal, toHeal)
  17. gudan garam

    [TFS 1.2] Tibia 11 analysers

    Hello otland people. During the end of last year I spent some time working on some stuff for tibia version 11 and since I no longer have time to work on it (nor do I have time to launch a server), I'd like to release it for the community. Keep in mind: this code is not well tested, I'm not a...
  18. gudan garam

    sql query, problem

    DELETE players FROM players INNER JOIN accounts ON accounts.id = players.account_id WHERE players.id = :playerid AND accounts.password = :password I think this should work.
  19. gudan garam

    Scripter Scripting service lua, c++ and php - 11.4 (daily reward, analysers)

    send me a pm and ill see what it is.
  20. gudan garam

    Scripter Scripting service lua, c++ and php - 11.4 (daily reward, analysers)

    up, I'm available, if need scripts, systems, fixes for your scripts or need 11.4+ analysers or daily reward, pm me.
Back
Top