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

    Lua How to show bounty hunt list in NPC?

    not really, the only relevant lines are from 30 to 56
  2. Elbow

    Set unmoveable,unpickupable and use with

    they're for tutorial, so I guess no?
  3. Elbow

    Set unmoveable,unpickupable and use with

    not moveable, not takeable is stored in items.otb (use otitemeditor or similar program) use with is stored in tibia.dat too, so client edit
  4. Elbow

    Lua How to show bounty hunt list in NPC?

    learn from a script that fetches rows from database, like !deathlist command https://github.com/otland/forgottenserver/blob/master/data/talkactions/scripts/deathlist.lua and try to do something similar here for wantedList
  5. Elbow

    Compiling Help change spawnrates per players online

    in spawn.h there's a method getInterval https://github.com/otland/forgottenserver/blob/master/src/spawn.h you should write additional code to change the return value of the method example, cannot test right now: uint32_t getInterval() const { double bonusinterval = 1 +...
  6. Elbow

    Lua [0.4] DemonOak error

    I was wrong about variable conflict, the bug appears to be in action script http://hastebin.com/behijufeme.coffee
  7. Elbow

    Lua [0.4] DemonOak error

    undo the earlier changes, open the lib script in notepad++, ctrl-h (replace window), find what: summons, replace with: oak_summons, mark Match whole word only press button replace all do the same for action script
  8. Elbow

    Gaming PC?

    1. maybe if you get one of the weaker processors (amd quad core?), an 8-core will perform just as well as an i5 processors, or even better in games like BF3 / BF4 from what I've heard. sure, AMD cpu's have worse single core performance but graphics card matters a lot more in games, and if you...
  9. Elbow

    Solved Offline or online?

    If you can't connect to server via config.lua ip = "xx" then that's probably the reason why it's not able to check the status. Have you already restored the changes in system/load.compat.php to default code?
  10. Elbow

    Crash Server onkill tfs 1.x

    function onKill(cid, target) target = Monster(target) if (target ~= nil) then local mt = MonsterType(target:getName()) if mt:useRewardChest() then local loot = BossLoot:new(target) if loot then local corpse =...
  11. Elbow

    [Gersior] [1.0] [Classes Guild] HELP

    update your PHP version, this AAC will not work fully without PHP 5.4.0+ you can do this by downloading a newer xampp version and installing it over, but backup your database (c:\xampp\mysql\data or export database via phpmyadmin) and c:\xampp\htdocs first.
  12. Elbow

    Lua [0.4] DemonOak error

    don't use local summons, but rename the word summons to something else (think, oak_summons?) in lib and in actions/scripts/demonOak.lua
  13. Elbow

    Solved Offline or online?

    Online status check is using the IP from your config.lua, and that is 156.210.x.x. Are you able to connect to your server from the host PC when using that same IP from config.lua? If not, that's the reason why it's showing offline, and you have to use hosts file to resolve this (one of the ways).
  14. Elbow

    [Help] Item editor doesn't save changes in my otb file

    What didn't work? You're not being very specific. Blocking attributes have to be removed in both Tibia.dat and then in items.otb.
  15. Elbow

    Solved Offline or online?

    If your config.lua IP in the router's DHCP range (usually 192.168.x.x) or the global IP from http://whatismyip.com/ ?
  16. Elbow

    Solved Missing sql query ingame store

    Looks fine, does it update the number of "coins" in the database > table accounts? Check in phpMyAdmin.
  17. Elbow

    Tibia 64x64

    it will look better on larger screens, as when scaling 32x32 to 120x120 (example) and 64x64 to the same size, 64x64 will obviously look better and less pixelated. only question is, if Tibia client will support this (thread creator says it does)
  18. Elbow

    Solved Offline or online?

    config.lua, what is the ip set to? your global IP? there could be trouble with this if you're NATed (behind a router), but on a VPS/dedicated server it shouldn't matter.
  19. Elbow

    [Gersior] [1.0] [Classes Guild] HELP

    <?php if(!defined('INITIALIZED')) exit; class Guild extends ObjectData { const LOADTYPE_ID = 'id'; const LOADTYPE_NAME = 'name'; const LEVEL_NOT_IN_GUILD = 0; const LEVEL_MEMBER = 1; const LEVEL_VICE = 2; const LEVEL_LEADER = 3; const LEVEL_OWNER = 4; public...
  20. Elbow

    Solved Missing sql query ingame store

    Post the whole function
Back
Top