• 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. GOD Half

    C++ Player::canWalkthrough() TFS 1.2

    Hi, yours "if" no opening or closing { } ? Or is this just an example you've done to demonstrate? Well, as I'm in version 1.2~1.3 I believe it's not useful, although having true and false, the structure is different. The change I made was based on what @Ninja posted. Anyway thank you, bro.
  2. GOD Half

    C++ Player::canWalkthrough() TFS 1.2

    Thank's. You know how you get the monsters to go through the summons, too? EDIT 2: When I summon, he dont through, only when I leave his screen and the same is teleported to me, which allows to pass through it. You know why? EDIT 3: Missing put: g_game.updateCreatureWalkthrough(creature)...
  3. GOD Half

    Lua How to find the position information I want in an array?

    Sorry sir. Error in line 41 when addOutfit. function onAdvance(player, skill, oldlevel, newlevel) -- OUTFITS -- local OUTFIT0001 = 905 -- 01 local OUTFIT0002 = 129 -- 02 local arrayOutfit = { [1] = {OUTFIT0001, OUTFIT0002} } local arrayVocation = { [1] = {1...
  4. GOD Half

    Lua How to find the position information I want in an array?

    Thank you. But can you help me build this code below? He's making a mistake, and I think you can understand what I've tried to do. EDIT.: I find a error, I'll show again, cheking... EDIT 2: Here is the revised code , but it has an error. for _, v in pairs(arrayVoc) do if type(v) == 'table'...
  5. GOD Half

    Lua How to find the position information I want in an array?

    I need to find the information based on the position of each array. local arrayVoc = { [1] = {1, 2, 3, 4, 5}, [2] = {6, 7, 8, 9, 10}, [3] = {11, 12, 13, 14, 15}, [4] = {16, 17, 18, 19, 20}, [5] = {21, 22, 23, 24, 25}, [6] = {26, 27, 28, 29, 30} } Currently the search system...
  6. GOD Half

    [Naruto 2018 Project] - Preparing 1st Outfit Updated!

    The purpose of this video was an example I did showing that a person who does not know how to draw can draw. I'm looking for a spriter ... Note: If the person draw everything from the beginning, I assure you that it'll take three times as much time to finish a single complete outfit (all Tibia...
  7. GOD Half

    [Naruto 2018 Project] - Preparing 1st Outfit Updated!

  8. GOD Half

    TFS 1.X+ Client crash when change new Outfit.

    Yeah I know.. I asked the question but then solved the problem. I already explained what happened there. Thank you!
  9. GOD Half

    TFS 1.X+ Client crash when change new Outfit.

    Hi guys, I'm using TFS 10.98 version. What is happening is that I created the new Outfit, adapted correctly to be able to change the colors but when I open the Outfit window by the Tibia Client, the game crash. The otclient opens, but it does not change the colors. I uploaded a video to get...
  10. GOD Half

    Object builder 0.4.5 10.98?

    ?
  11. GOD Half

    TFS 1.X+ Shield Skill without shield

    Can anyone help me make a system that the character increases the shield skill when using armor instead of shield? SOLVED: I just added that code (will receive the skill if it takes damage): if (damage > 0) { addSkillAdvance(SKILL_SHIELD, 1); } In the part below (player.cpp)...
  12. GOD Half

    TFS 1.X+ Skills rates

    Você pode explicar melhor? Por favor. Parece que não funciona, adaptei aqui para testar e não deu nada certo.
  13. GOD Half

    Spriting- how to cut outfit with mounts (object builder)

    I noticed that it only saves the style of the outfit at most 4 columns. Notice in the picture below a test that I did. Anyone know if can I change it so I can identify more columns? For the outfit it needs 16 columns of 64px. That's why making a mistake importing.
  14. GOD Half

    Spriting- how to cut outfit with mounts (object builder)

    Hello, I have a similar problem. When I export this outfit exactly (Citizen), to edit and work a new one. It goes with that format you posted: However, when I import the Animation Editor, it saves on another form: And this happening he bug at the time of import. The only way I...
  15. GOD Half

    Compiling How to know the tibia version?

    Thanks!
  16. GOD Half

    OpenTibia Object Builder 11.7X, Item Editor 11.7X, client & items.otb working with 10.97 & Remere's Map Editor

    Hello.. "Object Builder 11.7X, Item Editor 11.7X..." ? I did not understand
  17. GOD Half

    Compiling How to know the tibia version?

    Thank's. Can you tell me if I change to 11.40 does it work?
  18. GOD Half

    Compiling How to know the tibia version?

    Hi guys, Please, how can I see which minimum and maximum version my server supports in compiling? Thanks.
  19. GOD Half

    Problem with the /reload command TFS 1.2

    I changed the text "Reload type not found." to Portuguese and had accent.. player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Reload type not found.") I returned the normal text in English and it worked. The funny thing's that I went back to testing with the Portuguese text and now it works...
Back
Top