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

    Lua Monster kill action in lua

    Yes, recent example: Lua - [TFS 1.x] Help with getDamageMap and table (https://otland.net/threads/tfs-1-x-help-with-getdamagemap-and-table.269852/#post-2602222)
  2. Cosades

    Lua [TFS 1.x] Help with getDamageMap and table

    In data/creaturescripts/creaturescripts.xml add new line: <event type="kill" name="Achievements" script="achievements.lua"/> In data/creaturescripts/scripts/ add new file named achievements.lua containing: local config = { ['shaburak demon'] = {amount = 400, achievement = 'Shaburak...
  3. Cosades

    TFS 1.X+ Ignore creatures when using getPathTo

    // creature:move(tile[, flags = 0]) FLAG_IGNOREBLOCKCREATURE
  4. Cosades

    [TFS 1.3] [8.6] Help me with MySQL Configuration (Server lag for 3sec when player die)

    Please link to github/thread to your distro with source and datapack (the so called "tfs 1.3 8.6"). Also if you modified data/creaturescripts/scripts/playerdeath.lua or something simillar post it. If you modified the source please say so. If I won't see anything bad in c++/lua then we'll check...
  5. Cosades

    AAC Error

    Like seriously what the fuck is this? Looking through it I realized I haven't seen worse collaboration of Russia and Germany since 1941. I really hope you attached the wrong file.
  6. Cosades

    C++ Remere's Map Editor - Ground Floor

    https://github.com/hjnilsson/rme/blob/0962708fb52113906367f0cad1d77997448c5a00/source/map_drawer.cpp#L112
  7. Cosades

    Help Depot items :( OTX 7.4

    Add this file (items.xml) to Remere's Map Editor\data\760 Then you can add new towns in RME (ctrl+t) and set depots to towns.
  8. Cosades

    C++ Walk over not walkable item/tile

    Example usage: https://github.com/otland/forgottenserver/blob/master/src/game.cpp#L809 The checks you asked for: https://github.com/otland/forgottenserver/blob/master/src/tile.cpp#L479
  9. Cosades

    Looking for Town Citizenship Scrip for teleport [TFS 1.0]

    If not working post the error from console. function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if player == nil then return false end local newTownId = item.uid-40000 if player:getTown():getID() ~= newTownId then...
  10. Cosades

    Armonia!

    PM
  11. Cosades

    Armonia!

  12. Cosades

    "This is not a valid OTBM file or it does not exist"

    Well if you're desperate enough you can post the corrupted otbm and I'll check if it's repairable but considering it cannot read the root node the chances are small.
  13. Cosades

    Lua tfs 1.3

    I am assuming you are using ubuntu/debian. Debian: apt-get install locales && dpkg-reconfigure locales Ubuntu: apt-get install locales locale-gen en_US.UTF-8 update-locale LANG=en_US.UTF-8 reboot
  14. Cosades

    Need help with 7.6 acc manager

    On 7.6 engines it means that it cannot load a player. You should post your character .xml file to check what's wrong.
  15. Cosades

    Lua [Lua Error] At login (TFS 0.4)

    Let's do a sanity check, try this: local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid...
  16. Cosades

    Looking for Town Citizenship Scrip for teleport [TFS 1.0]

    Haven't tested it, may not work. In data/movements/movements.xml add line: <movevent event="StepIn" uniqueid="40001" script="citizenship.lua" /> <!-- Town with ID 1 --> In data/movements/scripts add new file named citizenship.lua: function onStepIn(creature, item, position, fromPosition)...
  17. Cosades

    Athena Editor Development Thread

    I'm saying honestly that if you're going to develop it further I can see it being the standard map editor instead of RME in the near future. Have you got any documentation on otbm and otb structure by the way? I've learned most of it by reverse engineering and from rme/otc sources but I'm not...
  18. Cosades

    Baiak? maybe u brazil hue?

    What the hell does "baiak" mean?
  19. Cosades

    Earth Shape

    I've generated it obviously.
Back
Top