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

    Pure Lua - Znote PHP Shop Makers

    You can also use PHP, javascript etc.. to parse xml, but this is about using strictly lua not a library someone wrote.
  2. O

    Pure Lua - Znote PHP Shop Makers

    Lua Interpreter for Linux (32/64 bit), Windows 32 bit & Mac ZeroBrane Studio - Lua IDE/editor/debugger for Windows, Mac OSX, and Linux
  3. O

    Pure Lua - Znote PHP Shop Makers

    These scripts just allow you to parse the mounts, outfits and items, the items script is an edited version of @zbizu's item parser. The items and outfit's parser are edited versions of @Codex NG's parsers for 1.2 Sources Parsers for 1.2 [TFS 1.1] Items parser (useful for searching ids)...
  4. O

    Close this.

    ovh.com offers a $3.50 a month hosting... its the same offer that Don Daniello offers except you get 5 gigs more hard drive space and you pay less money. You also don't need to pay up a whole year, you can do a month to month plan or increments of 3, 6, or 12 I believe. If you need help setting...
  5. O

    ShadowCores Layout for Znote AAC

    Well done! :)
  6. O

    NPC - old talk system on 8.6

    If we look at the sources on line 29 of modules.lua we can see this. SHOPMODULE_MODE = SHOPMODULE_MODE_BOTH If you would like to set the mode to the old system just place this below anywhere in your npc script. SHOPMODULE_MODE = SHOPMODULE_MODE_TALK Now if you want to do this globally...
  7. O

    OVH high ping for south america (Canada vps)

    Windows uses a lot more memory & cpu resource than Linux.
  8. O

    high lvl players lag, not low lvls

    I thought that was funny. Do you have persistent scripts assigned to high level players?
  9. O

    Monster level problem

    1st question what version of TFS are you compiling? 2nd question what version is this code for?
  10. O

    Solved Spell help [TFS 1.2]

    Callbacks are defined outside of a spell, you can calculate the necessary formula's inside the callback.
  11. O

    Linux Linux client Tibia 11

    Use otlclient :) This is the official source and compiling instructions. Compiling on Linux · edubart/otclient Wiki · GitHub You can download the one i uploaded or compile your own using the script I provided. Linux - Otclient - 7.4 - 10.99 I know it isn't 11 :(
  12. O

    Lua Distance weapon adds DoT?

    This is the default poison arrow from the sources just change what you need such as the CONST_ANI_XXX effect COMBAT_XXX damage type & CONDITION_XXX and the addDamage values. :) forgottenserver/poison_arrow.lua at 33d074fe1cb28d7f094e0e6896ada65d9cd472a2 · otland/forgottenserver · GitHub local...
  13. O

    your character list is loading. please wait. ...........

    Does your map have at least 1 town id? And does the player have a town id of at least 1?
  14. O

    More Script Issues [PLEASE HELP!]

    You really love your parentheses ;) Parentheses in a line of code are normally used to execute a calculation in a specific order these parentheses allow us to override the order of operations, but applying them just to apply them does not change the outcome of the formula. local a = 2 + 2...
  15. O

    Problem lua - Quest kill monster

    You need a way to set those storage values so that the npc can check if the player completed the task. Normally scripts like these use something like an onKill script so that it can update the storage value per kill per creature. Do you have an onKill script?
  16. O

    Lua Spell Problem

    I went through the script myself and it looks like they threw this code together like they were building a house out of legos :p
  17. O

    Lua Spell Problem

    Actually addEvent works like this addEvent(callback, delay, arguments) So its ok to use a function as an argument as long as the function returns a value.
  18. O

    need help with monster look type

    Either through its name or explicit path.
  19. O

    need help with monster look type

    But you can also link a script to the monster file.
  20. O

    Lua (Mod) Help on Remove Tp on event close

    You don't always need to encapsulate code inside of parentheses, that requirement is language independent. If the code doesn't work then we move on to something which does.
Back
Top