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

    Lua Spell that takes less damage from magic spells (I have lua, just not working?)

    Hey there, browse the forum and seen some older posts, they seem to work but not really TFS 1.4 and using OTC here is my lua spell local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN) combat:setParameter(COMBAT_PARAM_AGGRESSIVE, 0) local protect =...
  2. A

    Lua GHOST Script

    Hey, I have a ghost script here It works very well. I want to know if there is a way that if Vocation 1 goes ghost, people who are also vocation 1 can see the ghost still? So example; VocationID 1 goes ghost, VocationID 2 cannot see him, however Vocation 1 can still see the ghost guy? kind of...
  3. A

    Solved NPC Error?

    So, this is a odd one.. I try search on otland for somebody with simiilar issue but cannot seem to find it.. sorry if repeat though TFS 1.3 Client 10.98 Console error is this Any help appreciated, it looks like this same error message happens on all NPC's when you ask for info like job...
  4. A

    Lua Drop 1 item per kill, and drop items on ground (no loot bodies)

    Hey, Kind of a weird request, but when I am editing monsters loot, obviously it looks like something like My question is, is there a way for it to only drop 1 item per time (if it drops)? So if I kill a rat, it might drop a dagger, or a hand axe, or a gold coin.. but not like dagger, axe and...
  5. A

    OTClient Show emblem on character name in-game?

    Hi, Is there a way to show a emblem on certain vocations in-game? Such as emblem_blue for Mage and emblem_red for Druid? Have it show up next to their name in-game, so everybody sees it. Thanks in advanced TFS 1.3, Client 10.98
  6. A

    Lua Extra Loot Drops

    Just going to use this instead: CreatureEvent - [TFS 1.1] Extra loot system (https://otland.net/threads/tfs-1-1-extra-loot-system.230102/) Delete this :D
  7. A

    Lua Setting skill requirement on items

    Hey there, What I am trying to accomplish is you cannot use a weapon unless you have required skill level. Example; Club needs 130 club skill to use So my code is as follows function onEquip(cid, item, slot) local lvl = 130 local p = Player(cid) if p:getId(cid) and...
  8. A

    "Player" had negative mana or more then manaMax while refreshing stats!

    TFS 1.4.2 - Compiled in Ubuntu - Running TheForgottenTibia server as a test (The Forgotten Tibia (no vocations, new skills, skills by points, dual wield, auto loot, quiver, etc)...
  9. A

    Lua Items with added attributes

    TFS 1.4.2 - 10.98 Hey there, this one is probably easy for people... but I am stumped.. I don't know why it doesn't show up.. I just wanted to eventually add items with more healthTicks, healthGain and manaTicks, manaGain.. so they can get faster without ring of healing <item id="2467"...
  10. A

    OTClient Question about OTClientV8 (Built in Bot)

    If I want to remove the bot, I can from the client that I encrypt and pass out...great However - if you have a OTClientV8 Master on your PC and login to same server you get your bot features back, etc.. How does one make it so even if they do that, it doesn't allow them to bot? Or should I go...
  11. A

    TFS 1.4.2 item skills dont change when equip

    Hi, I have weapon with life leech and crit chance (example) I equip it and it doesn't give bonus I RELOG Then bonus appears If I unequip, bonus stays until relog Is there a simple LUA that I just need to get this to work properly or is it in src? I am not much for knowing src... stuff I did...
  12. A

    TFS 1.X+ Every character created shows up as Vocation ID 0 all of a sudden?

    Here is the config.php for Znote AAC 1.6 // Available character vocation users can choose (specify vocation ID). $config['available_vocations'] = array(1, 2); Here is my vocations.xml <vocation id="1" clientid="3" name="Newb" description="a Newb Combatant" gaincap="10" gainhp="5"...
  13. A

    Compiling Compiling OTCLIENT Ubuntu error

    Hey there, been following this step by step Compiling on Ubuntu 20.04 · mehah/otclient Wiki (https://github.com/mehah/otclient/wiki/Compiling-on-Ubuntu-20.04) However, when I get to the point to cmake .. I get I have been searching far and wide and haven't found anything related.. I have...
  14. A

    Connection Refused on Local Network

    EDIT Resolved Hey there, So I have my config file setup to: -- Connection Config -- NOTE: maxPlayers set to 0 means no limit ip = "127.0.0.1" bindOnlyGlobalAddress = false loginProtocolPort = 7171 gameProtocolPort = 7172 statusProtocolPort = 7171 maxPlayers = 0 motd = "Welcome to...
  15. A

    TFS 1.1 not opening?

    Hello, Just followed a tutorial () - Anyways.... after all the steps and going to run the TFS, it just "blinks" and never actually opens. Any ideas? Event Viewer doesn't say anything about it...also it is not opened in task bar, anywhere...
  16. A

    How to solve empty house?

    18:19 You see an open door. It belongs to house 'Dark Mansion'. owns this house. A character was deleted - house still says owned by "blank" Is there a GM command to reset a house?
  17. A

    TFS 0.3.6 Reward on Level - Need 1 more thing? :) <3

    Hello...so this is my script... local t = { 39001, { [20] = {2160, 2, "Congratulations on level 20! You have been awarded with 2 crystal coins! Get that promo slacker.", 1}, [50] = {2160, 3, "Congratulations on level 50! Beware, you are vulnerable to those shitty PKers now! Here is...
  18. A

    Town ID changes on death....

    Hello, When create a character, spawns in Thais.... When dies, goes to Venore..... Even if step in portal to become resident Thais... Still goes to Venore.... Not really sure why?
  19. A

    Unable to load config.lua

    So, I have made 0 changes to my Config.lua I have also re-created another config.lua and also just tried a STANDARD one with a distro... Everytime I run forgotten server it says ERROR.Unable to load Config.lua Now, why all of a sudden this happens? I have had the server going strong for like...
  20. A

    Royal Crossbow and other distance weapons

    They say +5 attack on the Royal Crossbow And like -20% hit on the Devileye... BUT These do not have an effect in-game, they all attack as if they are just a regular Crossbow How do I fix the stats?
Back
Top