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

    where are my loot msg appearing?

    found, ty. Trying to pass the msg to another channel.
  2. VictorOtInfinit

    where are my loot msg appearing?

    I created a loot channel, but i need to put the mensage in there, but i cant find where my loot msg is displayed to modify... Using tfs 1.3
  3. VictorOtInfinit

    Compiling issue

    solved, just added the library to /vcpkg with this line: .\vcpkg install --triplet x64-windows boost-asio boost-filesystem boost-iostreams boost-lockfree boost-system boost-variant cryptopp libmariadb luajit mpir pugixml spdlog
  4. VictorOtInfinit

    Chat Loot (Loot channel)

    I'm using this script: C++ - Loot Channel System (https://otland.net/threads/loot-channel-system.254816/) But says to put: owner->sendChannelMessage("", ss.str(), TALKTYPE_CHANNEL_Y, CHANNEL_LOOT); if (owner->getParty()) { owner->getParty()->broadcastPartyLoot(ss.str()); } else {...
  5. VictorOtInfinit

    Compiling issue

    When i try to compile my otserver ( TFS 1.3 ) gives this error: Error C1083 Cannot open include file: 'spdlog/spdlog.h': No such file or directory Then i saw a comment about this error that says: A library is missing, this library: gabime/spdlog (https://github.com/gabime/spdlog) But i dont...
  6. VictorOtInfinit

    Cast System

    I already did the tutorial in the pull, but whats next? I need to re-compile to work?
  7. VictorOtInfinit

    Cast System

    i'm using TFS 1.3, you know a tutorial or something to follow?
  8. VictorOtInfinit

    Otclient in resources

    I just want to know the diference between a normal script and a mod :>
  9. VictorOtInfinit

    Otclient in resources

    Prey System is a MOD? Couse is on a "modules" folder?
  10. VictorOtInfinit

    Cast System

    Hello guys, i saw this two pulls here in OTLand: https://github.com/otland/forgottenserver/pull/994 https://github.com/otland/forgottenserver/pull/2230 They are Cast Systems, but i dont know how to implement they on my server. Can anyone give me some help? Any tutorial, tips, etc pls, i'm...
  11. VictorOtInfinit

    Otclient in resources

    Hey man, can u say to me what is a mod in otserver? What this do exactly?
  12. VictorOtInfinit

    Lua !buylife and !buymana script for tfs 1.3

    Ty, this is better ^^
  13. VictorOtInfinit

    Lua !buylife and !buymana script for tfs 1.3

    I did that, was this: function onSay(cid, words, param) local player = Player(cid) local money = 100000 local hpExtra = 100 if player:getItemCount(2160) >= 100 then local hpAtual = player:getMaxHealth() player:setMaxHealth(hpExtra+hpAtual) doPlayerRemoveItem(player...
  14. VictorOtInfinit

    Lua !buylife and !buymana script for tfs 1.3

    Oh, i mean 100 permanent HP not 100 mana/life potions, the player say !buymana them he get 100 + manabase.
  15. VictorOtInfinit

    Lua !buylife and !buymana script for tfs 1.3

    I want a script that gives the player 100hp when he say !buylife and 100 mana when he say !buymana TFS 1x+ should work.
  16. VictorOtInfinit

    How to put multiples values from database in one variable?

    local allCoins = db.storeQuery("SELECT SUM(coins) FROM accounts LIMIT 0;") , still same boolean error local allCoins = db.storeQuery("SELECT SUM(coins) FROM accounts;") , returns a number that increase with usage(?) like image below. 1607400806 Solved using this code: function onSay(cid...
  17. VictorOtInfinit

    How to put multiples values from database in one variable?

    I need to get all Tibia Coins that we have in the server and save in one variable, how i do that? I tryed: local allCoins = db.storeQuery("SELECT `coins` FROM `accounts` LIMIT 0;") doPlayerPopupFYI(cid, "total coins: ".. allCoins.."") Got this error: Also tryed: function onSay(cid...
  18. VictorOtInfinit

    addEvent crashing the server.

    I don't know what error couse the distro crashs :(, its tfs 1.3
  19. VictorOtInfinit

    addEvent crashing the server.

    Not working :(, but my problem is solved, i just used another globalStorage to make a reference, when any player talk to the npc he verify what array has expired based on a globalStorage then he reset the position. xD
Back
Top