• 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. Fabi Marzan

    RevScripts Movements stepin/out tile pos

    you can use: coal_basin:position(Position(284, 176, 7), Position(284, 177, 7))
  2. Fabi Marzan

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Systemvip Problem on /checkvip of player

    What is line 47? As if the variable “player” has not value
  3. Fabi Marzan

    Lua [SQLite] -=[TFS]=- 0.4 8.60 Perfect System VIP 2.0 - Doesn't work as it should

    I think that in 0.4 that premium option was not yet implemented
  4. Fabi Marzan

    Error compiling TFS 1.4

    https://otland.net/threads/26-08-2023-tfs-nekiro-7-72-fmt-lib-problem.286038/
  5. Fabi Marzan

    26.08.2023 TFS NEKIRO 7.72 <fmt> lib problem

    https://github.com/otland/forgottenserver/pull/4466/files#diff-324e0607787321f61354325cf71b34fd25d190ddc82c86e19293ece4f7916abc I have already seen about 50 people posting the same problem.
  6. Fabi Marzan

    Downgrade my tfs 1.5 src

    You wouldn't have told him and you get a free $ hahaha
  7. Fabi Marzan

    Error during compilation in visual studio (error C2338)

    https://github.com/otland/forgottenserver/pull/4466/files#diff-324e0607787321f61354325cf71b34fd25d190ddc82c86e19293ece4f7916abc
  8. Fabi Marzan

    Compiling TFS [1.5 downgraded] (Windows)

    I try this: https://github.com/otland/forgottenserver/pull/4466/files#diff-324e0607787321f61354325cf71b34fd25d190ddc82c86e19293ece4f7916abc
  9. Fabi Marzan

    C++ Does not show the Text when the value is 0

    Hmm, I don't quite understand what you mean, but I already chose the easiest way, what I did was place it in the same classification text, if the item has a classification then it will also get Tier. // Show Classification and Tier on item uint32_t classification = item ...
  10. Fabi Marzan

    C++ Does not show the Text when the value is 0

    I put it like this: <item id="3286" article="a" name="mace"> <attribute key="weaponType" value="club"/> <attribute key="attack" value="16"/> <attribute key="defense" value="11"/> <attribute key="weight" value="3800"/> <attribute key="classification"...
  11. Fabi Marzan

    C++ Does not show the Text when the value is 0

    In fact I tried -1 and nothing... and is that code from canary? I'm sorry I didn't say the version, I'm using a tfs 1.5 nekiro put it like this: if (tier != nullptr) { s << " Tier: " << tier; } And there is an error when compiling: And I've also tried before placing >= -1 as tier and it...
  12. Fabi Marzan

    C++ Does not show the Text when the value is 0

    In fact I have doubts about that, because when I set the Arm attribute to 0, it also does not show the text I also tried before that way and nothing does not show it. EDIT: In fact, I put it like this: // Show Classification and Tier on item uint32_t classification = item ...
  13. Fabi Marzan

    C++ Does not show the Text when the value is 0

    Greetings as always, I have a problem that does not show the text when the value of the attribute is 0, I added the Tier attribute in the items, but apparently when I set it to 0, it does not show me the Tier text. Add in sources in item.ccp // Show Classification and Tier on item...
  14. Fabi Marzan

    TFS 1.X+ The player does not want to disconnect

    I have a big problem that I don't know why, but when it comes to disconnecting the player, in my case it only happens when you close the client, basically the player doesn't want to disconnect. In the console it stays all the time saying you have loggout outI don't know where that is modified in...
  15. Fabi Marzan

    TFS 1.X+ Money is not being recognized in my server

    Will you have the worth attribute in items.xml? <attribute key="worth" value="10000" /> <item id="3043" article="a" name="crystal coin"> <attribute key="weight" value="10"/> <attribute key="worth" value="10000" /> </item>
  16. Fabi Marzan

    global tibia 8.6 is still popular? would you keep playing?

    I'm still playing it, I really like kaldrox and other servers of that version, many people don't have time to play tibia, so they need to use a bot to have it full afk and reach the next day with a level to be in war battling. If it wasn't for the Elfbot that version would be dead without a doubt.
  17. Fabi Marzan

    Show mana healing numbers in purple

    This for mana: Game.ccp This: int32_t realManaChange = targetPlayer->getMana(); targetPlayer->changeMana(manaChange); realManaChange = targetPlayer->getMana() - realManaChange; To: int32_t realManaChange = targetPlayer->getMana(); targetPlayer->changeMana(manaChange); realManaChange =...
  18. Fabi Marzan

    C++ Healthticks show seconds in Look Item.

    Perfect, thanks.
  19. Fabi Marzan

    C++ Healthticks show seconds in Look Item.

    Greetings, I have a problem that I can't understand, it's about placing Healthticks and Manaticks as a description. By placing the manaticks or healthticks attributes, it shows the seconds that it will be healed. <attribute key="manaGain" value="20" /> <attribute key="manaTicks" value="1000" />...
Back
Top