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

    Solved After killing Annihilon the teleport do not appear.

    You can paste here you error get in console? Onkill Annihilon? are u see name correct?
  2. C

    Solved After killing Annihilon the teleport do not appear.

    doItemSetAttribute(teleport, "aid", t.aid) for doSetItemActionId(teleport, t.aid) and other line and functions.
  3. C

    Can't log in to my own server

    are you have in your config.lua ip = "localhost"? try changed for 127.0.0.1
  4. C

    Mysql passwords are hidden

    You need have encryption SHA1 ,not use more plain.. all servers use sha1 and is normal have passwords encryption.. not is error ,is normal need put sha1 now your passwords encrypted.
  5. C

    Solved After killing Annihilon the teleport do not appear.

    local config = { timeToRemove = 180, -- seconds message = "You now have 3 minutes to exit this room through the teleporter. It will bring you to the next room only during his time or the teleporter will disappear", teleportId = 9773, bosses = { -- Monster Name...
  6. C

    finding 8.7 real server

    http://www.xtibia.com/forum/forum/862-otserv-86x-e-87x/ http://www.xtibia.com/forum/topic/194285-global-870-full-chaito-soft-e-otshop/ http://www.xtibia.com/forum/topic/158649-real-global-map/
  7. C

    Wrong item picture on my website!

    Just only need download .gif the tibia.wikia or any website.. go to folder and look what number have or click and put view image ,next you see what number have put same name your new image and changed..
  8. C

    Solved Monster Error

    you have inside your monster <script> PetDeath </script> remove.. why you don't have any function PetDeath added in Creaturescripts.. what monster are u added ?
  9. C

    Lua Npcs Traveling Help

    are you have any error in .exe on say yes your npc or hi?
  10. C

    Solved Script error

    hmm.. my error is why you have 205 on start local outfits = and in line get 1, #outfits <- start in 1.. You only need changed specific addons you have or wanna changed for many looktypes? doCreatureChangeOutfit(cid, {lookType = outfits[math.random(205, #outfits)], lookHead = 0, lookBody = 0...
  11. C

    Solved Script error

    local outfits = { math.random(205, 15), math.random(25, 15), math.random(15, 110), math.random(125, 106), math.random(107, 18) } local FOODS = { [6394] = {1, "Transformation!"} } function onUse(cid, item, fromPosition, itemEx, toPosition) local food = FOODS[item.itemid] if(not...
  12. C

    Solved Script error

    try local outfits = {205,15,25,15,110,125,106,107,18} local FOODS = { [6394] = {1, "Transformation!"} } function onUse(cid, item, fromPosition, itemEx, toPosition) local food = FOODS[item.itemid] if(not food) then return false end if((getPlayerFood(cid) + food[1])...
  13. C

    Guild Wars 0.3.6

    On Windows machine to compile open project in Dev-Cpp, press ALT+P find there 'C++ Compiler' in one of the tabs and add there -D__WAR_SYSTEM__. Rebuild. On a Linux open configure.ac find OPTIONAL_FLAGS="" and there add -D__WAR_SYSTEM__ so it looks like this: OPTIONAL_FLAGS="-D__WAR_SYSTEM__"...
  14. C

    Solved z_From_admin_pm

    you use modern acc? or what use
  15. C

    Lua Npc System

    You compiling steps use for 1.0? ,you cannot compiling same other versions.. you try force sources to get compiling and added others .cpp ?
  16. C

    Account Manager- Question

    For me works mi script ,ok put function promotionlevel and works.. don't worry ,p
  17. C

    Lua Npc System

    are you compiling in linux?
  18. C

    Lua OnLook Error in console Pic Included

    here you go.. problem married fixed function onLook(cid, thing, position, lookDistance) if(isPlayer(thing.uid) and thing.uid ~= cid and getCreatureStorage(thing.uid, 85987) ~= -1) then doPlayerSetSpecialDescription(thing.uid, (getPlayerSex(thing.uid) == PLAYERSEX_FEMALE and ".\nShe" or...
  19. C

    Help with tibia client

    What program are you using for edit custom client? -.^ I think made by is in Title or inside program get any configuration for denied bot ..
  20. C

    help with mod plz

    what mod use now you? and what function are in line 67
Back
Top