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

    TFS Crying Damson (7.6) outputmessage.cpp

    I get this error. Im not sure yet what is causing it. It happens when I kill/block/take damage from monsters (if thats any help). Once it appeared I can click "ignore" and continue like normal but now it will start to happen more frequently and soon it appears less than a second after I...
  2. H

    Generate items.otb

    Im using Crying Damson 0.3.6 converted to client version 7.6. When I use a normal 7.6 map generated with RME I get error saying its wrong map version. It is possible to convert a 7.6 map to 8.x with items.otb from the server but that way is too messy since once I done that there is no way to...
  3. H

    Lua What is wrong with this "minimum level" script?

    Hello. This script is supposed to: 1. Restore level to 70 if player is below that level. 2. Add equipment + supplies upon death or first login. Only second part is working, why? Note: I didn't post all item arrays for each vocation. That part is already working. function...
  4. H

    Delete users, not threads, again??

    It lasted maybe 1 hour? Thread is deleted again? But with the amount of spam that was cleaned from Realsofts thread I expect this thread to stay too. It cant be possible to get a advertisement thread deleted just because some people insult each other there. And Im sorry for your mods if you get...
  5. H

    Dont delete thread, delete users

    Oldera thread was deleted because 5 players decided to quit ot and wanted to make everybody quit. Why is thread deleted? Delete users instead.
  6. H

    Source edit, can someone tell me what is wrong with my code?

    Hello. I edited source code. These is what I edited: In player.cpp void Player::death(), changed "Level loss" part to: //Level loss oldLevel = level; uint32_t newLevel = level; while((uint64_t)(experience - getLostExperience()) < Player::getExpForLevel(newLevel)) {...
  7. H

    [C++] Trying to set minimum level to 70

    Hello. Im having some trouble to understand everything but I will try to fix it and post here to see if I understood it correctly. If I got something wrong, please help me. I have tried a couple of different ways with server crashes as result that is why I make this thread. //Level loss...
  8. H

    Lua Error on line 177 "attempt to index local `items`"

    Error "attempt to index local `items`" on line 177 which looks like this: This is the script local BACKPACK = 0 local ITEM = 1 local ITEMS = 2 local SLOT=3 local SLOT_HEAD = 1 local SLOT_NECKLACE = 2 local SLOT_BACKPACK = 3 local SLOT_ARMOR = 4 local SLOT_RIGHT = 5 local SLOT_LEFT = 6 local...
  9. H

    Use accounts id instead of accounts name

    Hello. My server uses accounts ID for acc and not accounts name. How can I change this? Is there an easier solution to this? (for example change in sources so server use account names as acc)
  10. H

    Is there elfbot for 8.0?

    edit: More simple question: Is there elfbot for tibia 8.0?
  11. H

    No exp from same IP on pvp-enforced (avesta)

    Hello, I followed this guide: http://otland.net/f35/no-exp-same-ip-when-killing-another-player-pvp-enforced-hardcore-74764/ Here is what I changed (other parts that you need to change are working, so I dont post them). When I kill myself with mc I still get exp, why doesnt it work...
  12. H

    Show ban comment in "bans"

    Hello I use Nicaw and Avesta and I want to show ban comment in "bans". Website looks like this: Here is my modified code for bans.php <div class="mid"> <?php $SQL = AAC::$SQL; $SQL->myQuery('SELECT players.name, bans.comment, bans.expires, bans.active FROM bans, players WHERE bans.type = 2...
  13. H

    Diagonal walk bug in Avesta

    Normal Avesta: 1. Diagonal walk 2. Delay 3. Take next step Bugged Avesta: 1. Diagonal walk 2. "Use" or "Use with" (any item, rune, even just right click "use" somewhere on the map) 3. No delay 4. Take next step Does anybody know where in sources I can find this "bug". I want to use...
  14. H

    Free tibia cams?

    Record without restart client or relog first Play Freeware Are there any?
  15. H

    Någon som spelar 7.6 fortfarande?

    Tryck på länken isf V
  16. H

    Warloria discussion thread

    After having Warloria 7.7 online for one day it was obvious it will never work unless I fix all bugs. Instead I started looking at other possibilities. I found TFS Crying Damson converted to 7.6 and so far its very promising. With this all basic features of latest version of tfs Im given endless...
  17. H

    Avesta for 7.6, exp-rate with decimals, declare identifier

    Im using Avesta (0.6.3) for version 7.72. I changed... m_confInteger[RATE_EXPERIENCE] = getGlobalNumber(L, "RateExp", 1); ... in configmanager.cpp to... m_confDouble[RATE_EXPERIENCE] = getGlobalNumber(L, "RateExp", 1); ... in order to be able to choose a decimal number as RateExp...
  18. H

    Simple NPC, answer to keyword "amulet of loss"

    Hello. I have made a custom NPC that sells runes, items etc for my pvp-e war server. I have changed so itemloss upon death is always 0% which means people dont need aol. But incase someone missed that, I want my npc to respond "text" to keywords 'amulet of loss', 'aol' This is what the NPC...
  19. H

    Infinitive rings

    I have a pvp-e war server and I want to change so rings (time ring, energy ring, ring of healing) are infinitive. Is this possible? Where can I change that? Sources? Items.xml? Items.otb? I looked in items.xml and items.otb and I couldnt find anything. The closest was in items.xml where...
  20. H

    Compiling How can I convert "rooked" system to "cant die below x lvl"?

    Hello. I want to change "rooked" system to work with my war server. I have this in config.lua: -- Level on which player will get rooked LevelToRook = 5 When someone die to level 59 (LevelToRook = 59) I want him to be teleported to his normal temple position (RookTempleId = 1, same ID...
Back
Top