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

    setMaster(player) , does not work TFS 1.2

    setMaster only works on convinceable creatures in TFS 1.2 (this was changed in TFS 1.3), you would have to edit the sources to get it working.
  2. Mkalo

    Lua onGainExperience for summons

    Damage map: forgottenserver/luascript.cpp at master · otland/forgottenserver · GitHub
  3. Mkalo

    Linux questions regarding vps

    You should go for Hoster - OTS Hosting Service (Any TFS/OTServ) DDoS Protection or other OTServer oriented hosting as it look like you have no experience at all with hosting otservers in linux, finding a good VPS company may be hard and you might end up wasting your money on cheap vps that can't...
  4. Mkalo

    Lua [OTHire 7.72] Map Marks on Movement

    I don't even think there is such functionality in 7.72. At least you wont find it in OTHire source.
  5. Mkalo

    OTClient MC

    Afaik, there's no config for that. You would have to code it and compile yourself.
  6. Mkalo

    losse items

    That's why you post the server version before people trying to help you not after. Rules for the Support board
  7. Mkalo

    losse items

    Remove it.
  8. Mkalo

    losse items

    forgottenserver/creaturescripts.xml at master · otland/forgottenserver · GitHub
  9. Mkalo

    Fix/Patch Teleport Stackoverflow

    There is some people intentionally placing teleports that leads to itself or to another teleport to make an infinite loop causing stackoverflow. This will print warnings on map loading if there is teleports like that. detectteleport.patch · GitHub
  10. Mkalo

    Unique spell that summons a demon

    Yea, that means you have to edit the source...
  11. Mkalo

    Unique spell that summons a demon

    And then everyone can use convince runes on Demons. The right way is editing source, the hacky way is to do another monster that is exactly like Demon but convinceable.
  12. Mkalo

    Lua onEquipItem + script (TFS 1.2)

    You can't have a script and use the vocation thing, unfortunately. I do have a modification in source that allows you to do that if you want. Changes to how movement and events work · Mkalo/forgottenserver@e59092e · GitHub Only this modification, the other is not necessary for you, unless you...
  13. Mkalo

    AAC Create guild error

    You could try the search bar: https://otland.net/search/1774328/?q=guild+with+id+0&o=relevance Solved - Gesior acc Guild with ID 0 doesn't exist. when creating guild
  14. Mkalo

    Programmer Fixing a crash-bug - Stacktrace Report

    The first report is useless because you didn't provide the entire log: "---Type <return> to continue, or q <return> to quit---" Anyway this is a bug in an addEvent, the only way of fixing it is finding the addEvent that is causing it. You would have to check all addEvent usages on your server...
  15. Mkalo

    Lua Boat NPC - taking money from bank

    function StdModule.travel(cid, message, keywords, parameters, node) local npcHandler = parameters.npcHandler if npcHandler == nil then error("StdModule.travel called without any npcHandler instance.") end if not npcHandler:isFocused(cid) then...
  16. Mkalo

    Lua Boat NPC - taking money from bank

    You should send the entire StdModule.travel. Use pastebin if it's too big.
  17. Mkalo

    C++ Help to solve core dump

    That is not the latest TFS 1.3, you should provide the link to the source code or at least what you are using.
  18. Mkalo

    Lua Boat NPC - taking money from bank

    With the code that I sent it's impossible to work for money but not work for balance. You should place prints and make sure that it's even executing this function.
  19. Mkalo

    C++ Help to solve core dump

    You should provide the full backtrace. "bt full"
  20. Mkalo

    Lua Boat NPC - taking money from bank

    function TravelModule.onConfirm(cid, message, keywords, parameters, node) local module = parameters.module if not module.npcHandler:isFocused(cid) then return false end if shop_npcuid[cid] ~= Npc().uid then return false end...
Back
Top