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

    OTClient How to IP Change Tibia 12?

    1. Title says how to change ip of a tibia client 12 2. tag says its otclient 3. and post says you asks for basic information how to make server publicly visible for friends and other players sorry but im stuck, you need 1, 2 or 3? if 3 we will answer "google it"
  2. andu

    Problem adding actions

    tfs 0.3.6 works okey with both script="x" and value="x" Errors in console shows a empty function, so bug is in libs or in global funcions inside actions, maybe some script what executing a function multiple times or simple thing with extra end you can import console to txt and check how many...
  3. andu

    Magic Wall Math Random TFS 1.3

    local function removeWall(item) doRemoveItem(item.uid) blablabla end function onCastSpell(cid, var) local timer = math.random(14,20) local mwall = doCreateItem(mwallitemid, variantToPos(var) i dont remember correct order) addEvent(removeWall, timer, mwall) return true end here is the logic...
  4. andu

    TFS 1.X+ Deathlist damage map

    debug it with this and kill someone with 2+ print(#damageMap) check this: https://github.com/otland/forgottenserver/issues/1426
  5. andu

    Lua Modify this script to avoid error?

    This part: local pos = {x = x, y = y, z = z} local n = getTileInfo(pos).creatures if n ~= 0 then pos.stackpos = 1 local c = getThingfromPos(pos) while c.uid ~= 0 do if c.itemid == 1 and c.type == 1 then table.insert(arenaPlayers, c.uid) if...
  6. andu

    TFS 1.X+ Condition not working

    local condition1 = Condition(CONDITION_ATTRIBUTES) condition1:setParameter(CONDITION_PARAM_TICKS, 10000) condition1:setParameter(CONDITION_PARAM_SUBID, 1) condition1:setParameter(CONDITION_PARAM_SKILL_DISTANCE, 10) local condition2 = Condition(CONDITION_REGENERATION)...
  7. andu

    Dragon with multiple color

    it's easy to do with tibia.spr editor, tibia.dat editor and probably otb editor too but it will take some time, maybe 1h+ also every player who want to play on your server will have to download your own edited client take this png i made long time ago, all you need is to find someone who will...
  8. andu

    Bug Light in Character

    Torches have thier light levels set in items.otb and items.dat
  9. andu

    Outfit stats, speed not working

    I have made this page on wiki explaining how speed works exactly. There are breakpoints and maybe they were added to tfs or ur distro too. https://tibia.fandom.com/wiki/Speed_Breakpoints and it's not speed but baseSpeed or PLAYER_MAX_SPEED, not sure. Check player.h
  10. andu

    TFS 0.X Script to Verify if passed 1 day

    if getPlayerStorageValue(cid, daily_check_storageID) - os.time() <= 0 then setPlayerStorageValue(cid, daily_check_storageID, os.time() + (24 * 60 * 60)) doQUEST... else you need to wait until next day... end...
  11. andu

    TFS 0.X Error TFS 0.3.6 Damson

    You have to fix your items.xml, probably you are missing > or < somewhere. Something isn't closed by </item> etc. Notepad++ with xml language will help find the issue
  12. andu

    Does only OTCLIENT can handle transparent sprite or its OB problem?

    You need to modify ot client. Use google: site:otland.net transparent around 10% of results will give you answers and solutions
  13. andu

    How to add addons?

    If you are using 0.3.6 then you are probably using 8.6 tibia. In this case you should look to your data/XML/outfits.xml and find there id equal to warfarer outfit id. Maybe under warfarer outfit there is storage id which you need to have to be able to use this outfit. Just look to your...
  14. andu

    Lib.lua and login.lua problem

    nextUseStaminaTime[player.uid] = 0 to nextUseStaminaTime[player] = 0 or nextUseStaminaTime[player:getId()] = 0
  15. andu

    Windows How to expand Tibia Game Window? Advanced

    not possible, unless you have oryginal tibia sources from cipsoft or someone with alot of free time ;p ask them: [email protected] or [email protected]
  16. andu

    Windows Magic Lvl doesnt not go very high before stopping

    manamultipiler in vocations.xml cannot be equal or lower then 1.0 Multipiler 2.0 means that every next level requires x2.0 mana from last level: 0 -> 1 requires 1600 (always start 1600, doesnt matter what vocation) 1 -> 2 requires 1600 x 2.0 = 3200 2 -> 3 requires 3200 x 2.0 = 6400 3 -> 4...
  17. andu

    Suggestion About art sections being moved to multimedia

    Yes, and rename it or create a new section for OT Sprites - votes 23 How many of those voters want only "new section for OT Sprites"? This poll is very biassed.
  18. andu

    [Request] Tool for lua scripting.

    Notepad++ with autocompletion
  19. andu

    Solved Berserk spell help

    If you want different effect for different vocations, here's tested and working script. For advanced effects manipulations use onTargetTile + setArea option. local config = { [0] = {combat_effect = 7}, [1] = {combat_effect = 7}, [2] = {combat_effect = 7}, [3] = {combat_effect =...
  20. andu

    Solved Berserk spell help

    Instead of this: local area = createCombatArea(AREA_SQUARE1X1) setCombatArea(combat, area) Use this: local area = createCombatArea({ {0, 0, 0, 0, 0}, {0, 1, 1, 1, 0}, {0, 1, 3, 1, 0}, {0, 1, 1, 1, 0}, {0, 0, 0, 0, 0} }) setCombatArea(combat, area) Number 3 is a center. If you wont use effect...
Back
Top