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

    Lua Error in walkback.lua compare nil with number

    Compiled worng sources. nvrm
  2. dhrsantan

    Znote 0.3.6

    post your config.lua
  3. dhrsantan

    [Znote AAC] Characterprofile EQ shower

    @tanii you could also change the x,y,z pos of the account manager. so that they get the error "invalid temple position". just set the pos to an unmapped place. or create a single title so they can't do anything on the account manager?
  4. dhrsantan

    Znote 0.3.6

    could you explain your "error" with more detail? do you mean that you can't log into the game? in that case you should set the encryption type in config.lua from plain to sha1
  5. dhrsantan

    MySql Problem

    install xampp/uniserver and boot up the mysql service? also you'd need to create the database, and set the user credentials, Have a look at: https://otland.net/threads/video-tutorial-from-nothing-to-a-fully-working-ot-server-website-and-shop-system.166818/ you can find more info here...
  6. dhrsantan

    Sounds?

    hook into the magic effects?, play sound when they appear. that would be my guess.
  7. dhrsantan

    Compile OTclient, Without bot protection

    Could someone compile OTclient for me without the bot protection. if i compile it myself i get a runtime error, See image: http://gyazo.com/1ed29171a8d73005ec70115655699f6f
  8. dhrsantan

    ADMIN

    You should read this guide first
  9. dhrsantan

    do something when a private message is received

    How can I do a certain action if my character receives lets say, a private message. As I'd like to make a mod that plays a sound notification upon receiving a pm or a broadcast etc.
  10. dhrsantan

    OTClient CandyBot

    Is this still being developed?
  11. dhrsantan

    Gui change premium to vip, or add it with premium

    you could just swap out the textual value's? so it would say xx vip days instead of xx premium days. and just keep the premium system?
  12. dhrsantan

    Mysticnation

    hey!, ik zag het ook en ben weer begonnen. was altijd een leuke server. weet jij mss waar warlocks zijn?
  13. dhrsantan

    Premium command

    I suggest you create an onUse function for this. would be way easier?
  14. dhrsantan

    items change

    But the goal here is to change the properties of an item. not to change it for another item.
  15. dhrsantan

    items change

    that will change it item it self. not the type. -- NOTE below item id's are examples and i'm unsure if they are real weapons in game -- ex. it will change item 9931 to item 9932 and it doesnt give item with id 9931 the weapon type axe. that was before weapon type sword.
  16. dhrsantan

    Compiling Can someone compile 8.6

    they still are a good source of information to start learning about compiling for linux.
  17. dhrsantan

    Hello help compile (tfs 0.3.6) help throug team viewer

    head over to the tutorials section, follow a compiling tutorial or two. if it works you've done something yourself! if it doesn't work come back and tell us what you did, and post the errors. or even better try to find out why compiling has failed you. --
  18. dhrsantan

    Premium command

    how should this work? does someone say !prem? (what will the parameters be?) what TFS version are you using? and what client version?
  19. dhrsantan

    Compiling Can someone compile 8.6

    Have a look at: https://github.com/otland/forgottenserver/wiki/Compiling
  20. dhrsantan

    Items add skills for 30 min

    Give this a go: local time = 2 * 3600 * 1000 local t = {} for i = 1, 12 do t[i] = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(t[i], CONDITION_PARAM_TICKS, time) if i == 1 or i == 3 then setConditionParam(t[i], CONDITION_PARAM_SKILL_SHIELD, 5) end...
Back
Top