• 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!

Search results

  1. Dyabl0

    How do I write inside a book?

    Actions.xml: <action itemid="1970" script="other/theholytible.lua" /> theholytible.lua: local text = "Banor I praise your name.\nBe with me in the battle.\nBe my shield, let me be your sword.\nI will honour the godly spark in my soul.\nMay it flourish and grow" function onUse(player, item...
  2. Dyabl0

    Linux apache2 error

    More likely the error can be caused by virtual host configuration, so make sure any changes you did in /etc/apache2/sites-available/ /etc/apache2/sites-enabled/ are correctly. However, as it says execute: systemctl status apache2.service or journalctl -xe to see which error is caused for real.
  3. Dyabl0

    otland ots

    TwifySoft Actually it was introduced right after SoftCores.
  4. Dyabl0

    Emote Spells?

    I don't believe changing its colour can be doable, however feel free to look up here: forgottenserver/game.cpp at d978360ebbf980fc901eb2abc4bba3507a18418f · otland/forgottenserver · GitHub
  5. Dyabl0

    Help Wall does not disappear [TFS 1.2]

    The fact it will not properly is because the wall does not get the last Weeper killed, try with this: local positions = { Position(33097, 31976, 11), Position(33097, 31977, 11), Position(33097, 31978, 11), Position(33097, 31979, 11) } local barrierPositions = {...
  6. Dyabl0

    Help Wall does not disappear [TFS 1.2]

    Try with this: local positions = { Position(33097, 31976, 11), Position(33097, 31977, 11), Position(33097, 31978, 11), Position(33097, 31979, 11) } local barrierPositions = { Position(33098, 31976, 11), Position(33098, 31977, 11), Position(33098, 31978, 11)...
  7. Dyabl0

    Monster loot

    Make sure your Frost Dragon.xml includes loot tag. If it already does, do you get any error on console?
  8. Dyabl0

    Erro shopsystem.php Dragon Ball 8.60

    Can you please explain a bit more what is exactly wrong? Do you get any errors on your console? If so, paste them here and please use code tags.
  9. Dyabl0

    Windows Reset all chars on the server

    Use Update query statement. You should look look at here: PHP - [phpMyAdmin] Commands to edit database. This way you can learn also.
  10. Dyabl0

    Best Hosting Service?

    I'd personally recommend you to check for Don Daniello's OT hosting services: Hoster - OTS Hosting Service (Any TFS/OTServ) DDoS Protection I haven't bought any, since my project is not ready yet but I'm hundred percent sure I'll be using his services.
  11. Dyabl0

    getFungusInArea Error [TFS 1.2]

    Add this to your script (slimeGobbler.lua): local function getFungusInArea(fromPos, toPos) for x = fromPos.x, toPos.x do for y = fromPos.y, toPos.y do for itemId = 13585, 13589 do if Tile(Position(x, y, fromPos.z)):getItemById(itemId) then...
  12. Dyabl0

    Linux server Drops all the time

    There is something wrong with your Movements, have you done any special changes recently? You might get better response from someone else who can understand better this core dump and tell your what is causing exactly. I would recommend you to look for recent changes that might causes those crashes.
  13. Dyabl0

    Compiling TFS 1.2 8.22

    You should check instructions for how to compile TFS engine in here: Compiling · otland/forgottenserver Wiki · GitHub
  14. Dyabl0

    Linux server Drops all the time

    Could you please specify a bit more? Which TFS version is it? Do you get any error on your console? Does it create any dump core file?
  15. Dyabl0

    Npc selling keys with certin action id.

    You can use setActionId(id) function: local key = player:addItem(2088, 1) if key then key:setActionId(3666) end Then set this Action ID to a door in your map editor.
  16. Dyabl0

    Replacing depreciated items?

    If "Replace item" function did not help you, then you can try: Map -> Cleanup -> Do you want to remove all invalid items from the map? -> Yes in order to remove those red square items. This has been always useful for me while I downgraded newer maps for older versions.
  17. Dyabl0

    Solved Attaching actionid to item

    If it does not have, check other lib lua files, if none of them has, then you can always try adding.
  18. Dyabl0

    Solved Attaching actionid to item

    Check your /data/lib/050-function.lua, make sure you have: function doSetItemActionId(lols, actionid) return doItemSetAttribute(lols, "aid", actionid) end If still doesn't work, try either using this function: doItemSetAttribute(key, "aid", 3666)
  19. Dyabl0

    [REAL-OTX] [7.72] [ZNOTE 1.5] Problem with acc

    This simply means your server is not having access to the correct database, check your database information and compare with the one in config.lua. Now either it uses sqlite (.s3db) file or different database. Also make sure sqlType is "mysql" instead of "sqlite".
  20. Dyabl0

    [REAL-OTX] [7.72] [ZNOTE 1.5] Problem with acc

    Make sure the same account exists at website and on database. If that's right, then probably your ports 7171/7172 isn't configured properly. Also, go to your /www/config.lua and look for: $config['TFSVersion'] = ''; if you have 'TFS_02' then try changing to: 'TFS_03'
Back
Top