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

    Problem with RME - Map Loader Errors ( Failed to load Houses and Failed to load Spawn)

    Thanks, I just had the same error and moving all my files to HD worked for me.
  2. ckripz

    [C++/Linux] Compiling old engine (sources) on Debian 10 / Ubuntu 20.04

    i am using ubuntu 20.04 at the end of the compilation I get this: make all-am make[1]: Entering directory '/home/sources' g++ -I/usr/include/libxml2 -I/usr/include/lua5.1 -O2 -fomit-frame-pointer -D__USE_MYSQL__ -D__ENABLE_SERVER_DIAGNOSTIC__ -D__ROOT_PERMISSION__ -D_THREAD_SAFE...
  3. ckripz

    [8.60] TFS 0.4 Rev3996 War & Cast

    I have the same error
  4. ckripz

    condition addon in outfit

    Bump!
  5. ckripz

    condition addon in outfit

    Bump!
  6. ckripz

    [TFS 1.3] Postman Quest, cannot open door

    check that your port id is not added in global.lua doors = { [1209] = 1211, [1210] = 1211, [1212] = 1214, [1213] = 1214, [1219] = 1220, [1221] = 1222, [1231] = 1233, [1232] = 1233, [1234] = 1236, [1235] = 1236, [1237] = 1238, [1239] = 1240, [1249] = 1251, [1250] = 1251, [1252] = 1254...
  7. ckripz

    condition addon in outfit

    Hello! good afternoon, I have a detail with a script. I have a movement script, what it does is that when you step on the floor the script gives you an outfit, everything is fine here, if you give me the outfit but what it doesn't give me is the addon, I suppose it is because I don't have it...
  8. ckripz

    Monsters Doenst Pass on field?

    https://otland.net/threads/monsters-fields-and-walk-steps.252746/#post-2452287 It may help you to review this topic, and edit the sources.
  9. ckripz

    Monsters Doenst Pass on field?

    <flag canwalkonenergy="0" /> 1-yes 0-no
  10. ckripz

    TFS 1.X+ NPC Mount & Addon.

    local mounts = { ["Azudocus"] = {tokens = 775, mountId = 44}, ["Carpacosaurus"] = {tokens = 775, mountId = 45}, ["Platesaurian"] = {tokens = 775, mountId = 37}, ["Armoured War Horse"] = {tokens = 425, mountId = 23}, ["Crimson Ray"] = {tokens = 525...
  11. ckripz

    TFS 1.X+ Clean Area

    remove creatures and containers(corpses, bags etc..) function cleanZone(frompos, topos, clean_creatures) for xx = frompos.x, topos.x do for yy = frompos.y, topos.y do local tile = Tile(Position(xx, yy, frompos.z)) if tile then local items =...
  12. ckripz

    Lua Function creature:moveTo(position)

    the monster does not move if it has speed 0. can it be solved?
  13. ckripz

    OTClient onBottom outfit

    a lot of work for nothing. you would have to edit the items OTB, and the way the serve paints the screen(SOURCES). and the flag would be better itemOnTop
  14. ckripz

    TFS 0.X monsters give levels, not experience ,its possible?

    something like that the idea local config = { ["rotworm"] = {level = 1}, ["demon"] = {level = 8} } function onkill(cid, target) local monster = config[target:getName()] local player = Player(cid) local playerLevel = player:getLevel() local exptoLevel =...
  15. ckripz

    TFS 1.X+ Anty-Stack Runes - minCount, maxCount in Items.xml attribute?

    I like the idea, hopefully someone can help you.
  16. ckripz

    Remere's Map Editor 3.3

  17. ckripz

    C++ Monsters Fields and Walk Steps!

    Thank you! I had no idea.
  18. ckripz

    C++ Monsters Fields and Walk Steps!

    Here is the solution of my 2 problems thanks! I love you <3
  19. ckripz

    C++ Monsters Fields and Walk Steps!

    Sorry for not explaining well But the detail of the first image of the server 8.60 the monster runs fast to any direction although I do not have target, instead in the server 10.97 the monster does not run fast like that thinks to move xd.
Back
Top