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

    Lua Where is the Error in this Script ?

    try now local config = { daily = "no", -- allow only one enter per day? (like in global Tibia) level = 100, storage = 11020 } local playerPosition = { {x = 32392, y = 32191, z = 7, stackpos = STACKPOS_TOP_CREATURE}, {x = 32392, y = 32192, z = 7, stackpos = STACKPOS_TOP_CREATURE}...
  2. seleo

    TFS 1.0 - protocol only 10.10?

    you dont have to force it just add the spr and dat files in the client version you want for example tibia 854 will be in OTClient/things/854 you can add the spr and dat files you want
  3. seleo

    TFS 1.0 - protocol only 10.10?

    TFS 1.0 have made for tibia 10.10 and downgrading it to tibia 8.54 is too hard to achieve.
  4. seleo

    libpthread.so.0

    add "#include <sys/signal.h>" to otserv.cpp. you also have to remove "-Werror" from Makefile.am
  5. seleo

    Linux Help with Server CRASH

    > Global address: 127.0.0.1 change this to your server global ip address
  6. seleo

    Starting with skills

    use a start skill script function onLogin(cid) local playerVoc = getPlayerVocation(cid) local reqTries = getPlayerRequiredSkillTries local skillStor = 56364 local gotSkills = getPlayerStorageValue(cid, 56364) if playerVoc == 5 and gotSkills == -1 then doPlayerAddSpentMana(cid...
  7. seleo

    Solved Rme Live help

    check your windows firewall configure it to accept connections through the server main ports 7171 7172 80
  8. seleo

    doors teleport me to inquisition

    Give us more information please like door id and door action id maybe the door action id is routed with a scrpit that teleport the player to inq quest
  9. seleo

    Solved Item for specific vocation

    movements.xml
  10. seleo

    Solved 3 quests and 1 you can take.

    give the chests this 3 actionid - actionid and not uniqueid 11011 11012 11013 and in your actions.xml add this 3 lines <action actionid="11011" event="script" value="moje/wandquest.lua"/> <action actionid="11012" event="script" value="moje/wandquest.lua"/> <action actionid="11013"...
  11. seleo

    Lua Drop items on death

    add blessing on login or change the loss items and loss containers values to 0 in your database UPDATE `DATABASENAME`.`players` SET `loss_items` = '0'; UPDATE `DATABASENAME`.`players` SET `loss_containers` = '0'; DATABASENAME = your server database name
  12. seleo

    guild members online in look.

    yes, its in player.cpp this is how its look like if (guild) { GuildRank* rank = guild->getRankByLevel(guildLevel); if (rank) { if (lookDistance == -1) { s << " You are "; } else if (sex == PLAYERSEX_FEMALE) { s << " She is "; } else {...
  13. seleo

    guild members online in look.

    You have to register the event in your login.lua file registerCreatureEvent(cid, "guildmembers")
  14. seleo

    guild members online in look.

    thanks for your help. but do you have any idea how i can do that with source edits ?
  15. seleo

    guild members online in look.

    21:21 You see yourself. You are an elite knight. Guild Members [1|1].. You are Leader of the test 3.
  16. seleo

    guild members online in look.

    thanks its working now but isnt there any other function to add online players after the guild rank like real tibia 18:02 You see Angel (Level 188). She is an elder druid. She is Member of the The Angels (Angel rogues:)), which has 49 members, and 24 of them online.
  17. seleo

    guild members online in look.

    not working :( function getGuildMembersOnline(GuildId) local players = {} for _, pid in pairs(getPlayersOnline()) do if getPlayerGuildId(pid) == tonumber(GuildId) then table.insert(players, pid) end end return #players > 0 and players or false end function getGuildMembers(GuildId) local...
  18. seleo

    guild members online in look.

    Hello im using TFS 0.3.6 tibia 8.60 so the source dont have the function to check the guild members online when you look a player. can anyone please send me a creature script that show how many guild members online in look. just like real tibia.
  19. seleo

    Solved Can't see my houses in my town

    are you using the same database you was using before moving to 0.3 distro ?
  20. seleo

    Gęsior shopsystem

    http://otland.net/threads/gesior-aac-categories-in-shop.60916/ http://otland.net/threads/gesior-aac-updated-shopadmin-php.71263/
Back
Top