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

    255+ of magiceffect

    Are you able to post here error or write what is wrong? Also, you can write what forgottenserver are you using.
  2. K

    Unknown spell name: skills

    Because "skill" doesn't exist in forgottenserver 1.0. It means that you cannot decrease skills of monster target in any monster's attacks. You have to create spells and add it to your monster - I think it's better way.
  3. K

    Solved Problem with save script.

    He has wrote it in this main post.
  4. K

    God account help

    So if account with this id exists, then he have to pick another id - I think it's really easy to change two numbers.
  5. K

    TFS 1.0 floaty text.

    Yes, this feature has been deleted some time ago.
  6. K

    God account help

    Try it (execute this code in phpmyadmin) INSERT INTO `accounts` (`account_id`, `name`, `password`, `type`) VALUES (100, 'boriooo', SHA1('otland.net'), 5); INSERT INTO `players` (`name`, `account_id`, `group_id`, `sex`) VALUES ('boriooo', 100, 3, 1);
  7. K

    Monsters attacking very fast in TFS 1.0

    It seems good. The interval is counted in milliseconds so your monster is correct. Maybe it is caused by script or something is changed in your source code.
  8. K

    Lua Soul regenerate item attribute

    What version of forgottenserver are you using?
  9. K

    Regarding Vocations.

    What version of forgottenserver are you using?
  10. K

    Need Support ADDEVENT

    Here is example usage of addEvent(callback, delay in milliseconds, parameters...) addEvent(function(param) print('This text is delayed by 5 seconds.') print(param) end, 5 * 1000, 'Here is example text!')
  11. K

    Compiling Cast 8.6 r3884

    We cannot help you because we don't have got access to your source files. The error is caused by missing implementations of functions in your project.
  12. K

    Monsters attacking very fast in TFS 1.0

    Are you able to post here an example monster from your server?
  13. K

    Light effect

    What server are you using?
  14. K

    Linux TFS wont run

    You cannot use sqlite3 in forgottenserver 1.0. This version of forgottenserver supports only mysql.
  15. K

    Help with mission state (quest)

    Source: http://otland.net/threads/need-help-ask-it-properly-and-correctly.18402/.
  16. K

    Linux ubuntu compiling

    Function lua_pushglobaltable doesn't exist in Lua 5.1.4. This function has been implemented in Lua 5.2 as far as I know.
  17. K

    Most stable ot version?

    Latest, you can download it from github: https://github.com/otland/forgottenserver.
  18. K

    Linux TFS wont run

    You shouldn't run forgottenserver as root (for safety reasons). If you don't know how to manage users, then check this tutorial: http://www.debian.org/doc/manuals/system-administrator/ch-sysadmin-users.html.
  19. K

    Linux ubuntu compiling

    You have to compile and install it as root.
  20. K

    Npc message greet very long help!

    You have to add this code to greet callback (don't forget about configuration). -- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat, -- ligula eu luctus aliquet, odio urna facilisis nunc, sit amet vulputate ligula -- erat sed est. Maecenas pretium ipsum in metus consequat...
Back
Top