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

    Spell [TFS 1.2/1.3] Unnamed spell (looks cool tho)

    should delete your server files if that's your voc/spellname
  2. Infernum

    Scamming by ezzz | Why he is allowed to sell ot resources openless?

    when will yall learn that none of this shit matters at this point just creates more drama for no reason
  3. Infernum

    The Forgotten Server Icon Competition - Voting thread - V3

    holy shit he has risen from the dead
  4. Infernum

    [TFS 1.3] Item Abilities via Lua V2

    post your compat.lua
  5. Infernum

    Updated TFS resources

    https://infernum.sh/tfs/luascript/ https://infernum.sh/tfs/enums/ will add caching later, pls dont abuse my site i am no security expert :(
  6. Infernum

    TFS 1.3 Functions List June/2021

    ah yeah i changed the directory because i wanted to sort of namespace it under /tfs/, i also made /tfs/enums/ as well as renamed luascript to /tfs/luascript/, i'll go ahead and post it in resources either way (i think u mean tools tab tho? idk)
  7. Infernum

    TFS 1.3 Functions List June/2021

    gonna post this here: luascript.cpp (https://infernum.sh/tfs/luascript pulls from master luascript.cpp & parses it, so it'll always be up to date
  8. Infernum

    Lua Solved! Table Variable references value from same table

    alternatively you can wrap it in a 'class' (or function to do this, if you don't need/want methods or metamethods for this as extra utility in the future) CustomSkill = setmetatable({}, { __call = function(self, obj) obj.triesToNextLevel = (((obj.level * 10) + (obj.level * 10)) /...
  9. Infernum

    Lua Solved! Table Variable references value from same table

    you'd have to call triesToNextLevel with the values from that table whenever you need that value
  10. Infernum

    Lua Solved! Table Variable references value from same table

    that works because the table is already created, but you add new keys to it manually so each line of code, it's able to access all the keys which are defined above that line of code
  11. Infernum

    Lua Solved! Table Variable references value from same table

    what you should be looking for is an anonymous function to call whenever you'd like that information, if you're looking for an inline solution that works while the table is still being defined local t = { {a = 5, b = 10, getValues = function(a, b) return a * b end} } for k, v in ipairs(t)...
  12. Infernum

    I'm sorry, where to install?

    because people make servers to gain money without learning anything by attempting to piece together anything they can to throw donations on a server for their hard work, while begging here in forums asking where or how to install things when there's more documentation on tfs nowadays than ever...
  13. Infernum

    Path of Tibia - Development Thread

    PoE's attributes aren't broken or anything, 99% of what they're used for is stat requirements for gear & skill gems of course, they do provide a very small bonus for every 10 attribute points allocated if they just stick to that & make it mostly about requirements & design skill tree properly...
  14. Infernum

    Path of Tibia - Development Thread

    sounds good
  15. Infernum

    Path of Tibia - Development Thread

    looks very nice, will you guys be implementing socket & linking for skills or do you only get one from when you first start?
  16. Infernum

    TFS 1.X+ TFS 1.3 Item Description (abilities) not showing

    you should start over and create a pull request with the base as your fork with my code and pull all changes instead of doing it manually
  17. Infernum

    TFS 1.X+ TFS 1.3 Item Description (abilities) not showing

    the description should be updated no matter what you're sure you have item.lua in /lib/core? and restarted the server after setting luaItemDesc = true in config.lua
  18. Infernum

    The state of this community

    that's what the support board is for just don't use it to be a help vampire asking people to write code for you, instead, ask HOW to do things and WHY things work the way they do you'll learn in no time doing that
  19. Infernum

    The state of this community

    https://otland.net/threads/tfs-guide-documentation.267910/ https://otland.net/threads/guide-to-scripting-with-lua.265958/ both are not complete, but good enough to get started with the scripting side of tfs if you actively want to learn
Back
Top