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

    TFS 1.X+ spell can crash server?

    I am not a very good scripter.. but I typically spin up test server and test new spells, if it crashes, then I fix why it crash :) Goodluck :D Best to learn from errors, so I just keep tweaking things until it works correctly
  3. A

    [TFS 1.X] Rarity Rolls & Custom Attributes Library

    Well this is bizarre I finally got onInventoryUpdate to work, hurray! I do however, do not ever get any rare item drops, or anything.. no console errors.. /roll function works properly .. but hmm...
  4. 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
  5. A

    Lua Setting skill requirement on items

    That did it! Thank you for helping my oversights :) Still learning Update code for anybody wondering now function onEquip(cid, item, slot) local lvl = 130 local p = cid if p:getId(cid) and p:getSkillLevel(1) < 130 then doPlayerSendTextMessage(cid,25,"You need 130.")...
  6. A

    Lua Setting skill requirement on items

    I try his change but give console errors then With what you say here, I do get (You need 130.) now, but when I equip with player with 130+ it just says "You cannot dress this object here" Which is odd, because I state in movements slot="hand"
  7. A

    Lua Setting skill requirement on items

    Did not work sadly, still no errors 1661528156 I am new to this, I was browsing through compat.lua and using the function types there... I figured I was doing things correctly since no errors but.. that is not that case :D
  8. 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...
  9. A

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

    Fixed the negative mana or manamax, but still the issue stands with the HP, mana and cap being different I did numerous tests with config.php -- I also tested out Gesior to see if this could work differently It appears it must be something in the source or maybe a LUA I am not seeing The...
  10. 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)...
  11. 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"...
  12. A

    OTClient Question about OTClientV8 (Built in Bot)

    Possible fix.. but still kind of open ended...maybe? I just changed all my port #'s to unique numbers that nobody knows... not sure if they can figure it out still but re-encrypted client + compressed with new port numbers .. and it is working and I cannot open the Master and connect to server
  13. A

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    Hey @oen432 Cool system, I did everything as followed but my 1 issue is.. I cannot seem to be able to shift + click items or (look) at them, nothing ever shows up. Any idea? :) TFS1.4.2 with OTClientv8
  14. A

    [TFS 1.X] Rarity Rolls & Custom Attributes Library

    I can't seem to get onInventoryUpdate to work correctly, I have tried numerous times... and compiled my heart out...I am burned out trying Is there another way to get items to update correctly instead of log off/log on?
  15. A

    TFS 1.4.2 item skills dont change when equip

    I will give it a once over again, thanks!
  16. A

    TFS 1.4.2 item skills dont change when equip

    I did add a onEquip and onDeEquip but it didn't change... also, I would have to make that setup for EVERY item then?
  17. 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...
  18. 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...
  19. A

    CreatureEvent [TFS 1.1] Skill Points, modalwindow

    Anybody know how to add max amount of points you can put on a stat? Like every stat I only want to go up to 200 points total
Back
Top