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

    Pokemon Universe Online

    It looks cool.
  2. sn3ejk

    8.6 or Latest Client? Time to Poll!

    Latest client.
  3. sn3ejk

    TFS 0.2, 0.3 or 0.4?

    1.0 aka 0.2.
  4. sn3ejk

    Aspiring Computer Programmer

    In my humble opinion firstly you have to learn Python. This language will show you how programming works: variables, functions, classes and objects. It also contains a lot of other features - for example: decorators, yield, lambda. Anyway, you can learn Ruby instead of it. Ruby is similar to...
  5. sn3ejk

    Tfs 0.3.6

    Could you explain me what description do you need? Are you talking about arguments for these functions? Or do you want me to explain you when server runs these functions? If you know anything about C++, you can read everything in file named creaturescripts.cpp. If not, I might you can find a...
  6. sn3ejk

    Tfs 0.3.6

    You are able to use these functions: onLogin onLogout onJoinChannel onLeaveChannel onThink onAdvance onLook onDirection onOutfit onSendMail onReceiveMail onTradeRequest onTradeAccept onTextEdit onReportBug onStatsChange onAreaCombat onPush onTarget onFollow onCombat onAttack onCast onKill...
  7. sn3ejk

    Lua Item editing help

    You have to remove attribute named "attack" from your item. Example code for forgottenserver 1.0: item:removeAttribute("attack") _ Regards, sn3ejk
  8. sn3ejk

    Air Max

    Kurwa, co to za kraj w którym wyrażanie własnej opinii to jest już hejt? Czy wszystkim ludziom na świecie muszą się podobać gimbasiaste AirMAXY pro elo level 99? Za dużo się polskiego hip-hopu gimbusy nasłuchaliście i teraz nie możecie odróżnić opinii od hejtu. Peace dla wszystkich nastolatków...
  9. sn3ejk

    It's possible?

    Sure. You have to generate CodeBlocks project in cmake (or cmake-gui - whatever you're using). _ Regards, sn3ejk
  10. sn3ejk

    Linux Auto restarter?

    I'm not sure that I understand you correctly (so sorry about it but I got lacks in English). You don't have to use command "cd". You can create shortcut to your executable file - example: ln -s /home/kito2/forgottenserver/forgottenserver /usr/bin/forgottenserver And you have also update your...
  11. sn3ejk

    Linux Compiling Error - Lua header not found.

    apt-get install libncurses5-dev And later, try this one: wget http://www.lua.org/ftp/lua-5.1.4.tar.gz tar -xzvf lua* cd lua* make linux && make install then do ./configure again _ Regards, sn3ejk
  12. sn3ejk

    Computer halp.

    Intel Core i7-3930K, MSI X79A-GD65 (or ASUS P9X79), Palit GTX 780 Super JetStream, 4x 4GB Corsair Vengeance 1866 MHz, Seagate Barracuda 1TB (or something from WD), Plextor M5 Pro 128 GB (or Samsung SSD 840 Pro 128 GB), Seasonic SSR-650RM 650W, Phanteks PH-TC12DX (or Noctua NH-D14). You just...
  13. sn3ejk

    In-Player creating level bug!

    What system are you using to create character (website or in-game account manager)? If you're using second system you can set starting level in config.lua as far as I know. _ Regards, sn3ejk
  14. sn3ejk

    LUA Tags dont work now

    This feature should be written as far as possible because it's the basement for this forum. _ Regards, sn3ejk
  15. sn3ejk

    How popular are you?

    10/10 _ Regards, sn3ejk
  16. sn3ejk

    Linux Crashing and altering skills..

    Your revision is outdated as I said. I suggest you to replace your forgottenserver with downgraded latest trunk by MartyX. It will save your time and fix some issues connected with your source code. _ Regards, sn3ejk
  17. sn3ejk

    Lua [Avesta 7.4] Level reset if lvl <50

    Try it: function onAdvance(cid, skill, oldLevel, newLevel) if skill == SKILL_LEVEL and newLevel > 50 then return false end return true end _ Regards, sn3ejk
  18. sn3ejk

    Linux Crashing and altering skills..

    What version of forgottenserver are you using? Probably your server is outdated and you have to copy some source code from latest version to your. _ Regards, sn3ejk
  19. sn3ejk

    Lua Cannot use SHA1 encryption.

    Firstly, you have to create backup of your database. You can do it via phpmyadmin as far I know. Later, you can try to convert all passwords from plain to sha1. Try this command for example: UPDATE `accounts` SET `password` = SHA1(`password`); After it, when you will be able to login on your...
Back
Top