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

    How can I place new items to this server?

    Using and working on sabrehavens, although it is a good base, is not a good idea. The structure of the quests and NPCs as well as the items is not the most friendly to work with. If your plan is to move to tfs and you are going to make a retro version, I suggest using the latest nekiro...
  2. NvSo

    TFS 1.X+ Castle Boost exp

    I have similar xpboost scripts and I use them this way: function Player:onGainExperience(source, exp, rawExp) local xpCastle = 0 if self:getGuild() and self:getGuild():getId() == CASTLE24H:getGuildIdFromCastle() then xpCastle = exp * 1.20 -- +20% XP end return exp + xpCastle end
  3. NvSo

    AAC [MYAAC]Characters page

    search for: system/templates/characters.html.twig
  4. NvSo

    TFS 1.X+ Cannot connect to the server after recompiling another source

    try set ur local ip these with 192.168.0.1 example, search on your conection, client and server need the same ip. if u use remote host thats another thing
  5. NvSo

    Solved Optimize elseif script.

    Every day we learn something new! i need more practice :) and its sure, as the original was, now it is at least times better XD
  6. NvSo

    C++ decrease speed on equiped items (slots)

    u want decrease speed? I think I'm sure that if you use the value negatively it should work, or at least that's how the logic seems to work in version 0.6.5, I don't know if it makes much difference. <attribute key="speed" value="-10" />...
  7. NvSo

    Storage tfs 1.5 error

    If you are using function onLogin(player) it is better that you use the function in this way: player:getStorageValue
  8. NvSo

    TFS 1.X+ Cannot connect to the server after recompiling another source

    try with packetCompression = false in config.lua and ofc check if u're using the OTSERV_RSA in the client properly
  9. NvSo

    Solved Optimize elseif script.

    You will always need to check if the item exists or not before using the lever as well as the correct looktype. Try: local config = { pricePos = Position({ x=1918, y=1232, z=5 }), addonName = { "first", "second" } } local outfits = { [50001] = { items = { { id =...
  10. NvSo

    Solved Optimize elseif script.

    The shortest way is to call the storages by an array of them from 50001 to 50050 (or ur expected range) that is one of the first things you can shorten, for the rest you are already using calls to different items as well as different storages, to the being a toggle there isn't much you can do to...
  11. NvSo

    color+itens

    Of course it is possible if you use OTCv8 for example in the bot module it has a section in the analyzer where it places the rarity frame for the items based on their name and price, and if you experiment with the function and make your own module you can see It is not very difficult to achieve...
  12. NvSo

    RevScripts tfs 1.4+ Stand on item xxx and get constanly hp/mp healed

    joined nov22, 2008. We have to try to learn some things a little, right? Or at least try. Come on, don't be discouraged, you can learn something, or at least have tried.
  13. NvSo

    TFS 1.X+ It is possible? 8.6 with latest content?

    Downgrade 13.21 to 8.60v2 (otb v20) feel free to use, also this time i reload the attibutes of items otb, and fix some animations loops big files attached on MEGA: 53.43 MB folder on MEGA (https://mega.nz/folder/5FQEnT4R#pAbmAAhpBhmcP1jaVkXm8Q)
  14. NvSo

    What "killed" RL Tibia for YOU?

    It seems to me that Tibia has evolved as they know that most players are already adults or old, and they are not children who learned about the game years ago and that many went from playing things like Counter-Strike for example. The only bad thing that they really did and totally changed the...
  15. NvSo

    [8.0] [TFS 1.2] - Server Global Full [Real Map]

    simply, compile on debug, and when crash share the entire log.
  16. NvSo

    Otclient tasks button

    The OTC community seems to me that at least Mehah keeps it very well updated and with quite big optimizations currently, the layout would be good to make it as close to Tibia 12+ Maybe, trying to add as many features as possible. It would be a matter of doing a fork and adding the Layout...
  17. NvSo

    Need tutorial how to setup OTCV8 for mobile

    Try use apk editor studio v1.6.0
  18. NvSo

    tooltip OTC V8

    You need contact Oen44#0 on discord, search him on Open-Tibia Academy Discord Channel
  19. NvSo

    Solved otcv8-dev Compiling Error 'to_string': is not a member of 'boost::core::basic_string_view<char>'

    remember that you must install the correct libraries in vcpkg to be able to compile, and then use the command: vcpkg integrate install and put the file attached inside vc16 folder (unzipped). then go to Project - Properties - VCPKG - and change use vcpkg to Yes reload visual studio and try...
  20. NvSo

    How can I add new items from newest version on map editor and how to add items to market on Sabrehaven?

    edit and add manually inside marketprotocol.lua on the market module of client https://github.com/ErikasKontenis/SabrehavenServer/blob/0dfb49beaa8aeb280301ce2d4733bf89de8c7f55/800OTClient/modules/game_market/marketprotocol.lua#L55
Back
Top