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

    Solved Depot items error

    replace function getDepotItems and test function getDepotItems(cid, position) local player = Player(cid) if player == nil then return end if position:getTile():hasFlag(TILESTATE_PROTECTIONZONE) then local lookPos = player:getPosition()...
  2. andypsylon

    Lua New outfits tfs 1.0

    see protocolgame.cpp --> sendOutfitWindow()
  3. andypsylon

    YATC

    https://github.com/edubart/otclient https://github.com/edubart/otclient#compiling
  4. andypsylon

    DOORS RESET AFTER SERVER RESTART

    remove items with /r in game than restart server
  5. andypsylon

    Super promotion tfs 1.0 (10.31)

    it's not simple, if you can not do that, you have to wait.
  6. andypsylon

    Linux Can't connect to local MySQL server through socket

    complete your config.lua
  7. andypsylon

    Equipment/Shield damage reduction in OT's

    You tested with monsters and melee attack? you have set in this way: ? <attack name="melee" interval="2000" skill="20" attack="30" /> or <attack name="melee" interval="2000" min="20" max="30" /> ?
  8. andypsylon

    Squeezings, Help to convert for TFS 1.0

    so as I was writing "and move your tools in to lib/actions.lua"
  9. andypsylon

    Squeezings, Help to convert for TFS 1.0

    local config = { functions = { [10511] = { -- sneaky stabber of eliteness TOOLS.ROPE, TOOLS.SHOVEL, TOOLS.PICK, TOOLS.MACHETE, TOOLS.KNIFE, TOOLS.SPOON }, [10513] = { -- squeezing gear of...
  10. andypsylon

    Super promotion tfs 1.0 (10.31)

    also :)
  11. andypsylon

    Super promotion tfs 1.0 (10.31)

    tfs uses at the moment only 1 level promo. Stores it in the storageNr '30018', value '1' You'd have to rearrange it a little, because it is now so that if a player loses a pacc is also storage value '0'. you can find it in luascript.cpp, '// player:setVocation(vocation)', in game.cpp and...
  12. andypsylon

    Lua Assassin Spell TFS 1.0

    how would look like this spell?
  13. andypsylon

    Super promotion tfs 1.0 (10.31)

    tfs 1.0 do not have promotion levels you can customise it in modules.lua
  14. andypsylon

    Compiling Update TFS 1.0 to 10.35?

    help on github :) for exemple: https://help.github.com/articles/syncing-a-fork
  15. andypsylon

    tfs 1.0 Npc repair

    1 npc: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  16. andypsylon

    Compiling Update TFS 1.0 to 10.35?

    https://github.com/otland/forgottenserver
  17. andypsylon

    Register creatureevent to all monsters

    onKill if target is monster then your event end
  18. andypsylon

    Register creatureevent to all monsters

    in globalevents, startup.lua? but what exactly do you want to do?
  19. andypsylon

    Solved How to get total items weight from table.

    @Mikii on tfs 1.0: ItemType(item.itemid):getWeight(count)
  20. andypsylon

    Tools from Secret Service Quest

    you need to set your rope/shovel/machete/... action functions global than can you use that functions for another items.
Back
Top