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

    TFS 0.X SQL error when try to install advanced guild system

    I found a amazing system, every server should use it, it allow to create guild bank, guild task and things like that... But i'm having a problem to install There is a talkaction to install the script, but when i try to run it, shows this error [5:30:59.549] mysql_real_query(): SELECT points...
  2. gmstrikker

    TFS 0.X Help to install Advanced Guild System

    is all good now?
  3. gmstrikker

    TFS 0.X Help to install Advanced Guild System

    Full code: lib/guildlib.lua --[[ Queries: CREATE TABLE `guild_storages` ( `guild_id` int NOT NULL default 0, `key` int NOT NULL default 0, `value` varchar(255) NOT NULL default 0 ); CREATE TRIGGER `guilds_update` AFTER UPDATE...
  4. gmstrikker

    TFS 0.X Help to install Advanced Guild System

    Lol i didn't know, thank you, i'll edit...
  5. gmstrikker

    TFS 0.X Help to install Advanced Guild System

    I found here this guild system: https://www.xtibia.com/forum/topic/227593-advanced-guild-system/ It's amazing and should be used in every server.... It allow to create guild bank and guild task But i'm having some problems to install There is a talkaction to install the script, but when i...
  6. gmstrikker

    TFS 0.X Check X position, if is empty then teleport player there

    I appreciate both of your helps, thank you very much
  7. gmstrikker

    TFS 0.X Check X position, if is empty then teleport player there

    i want to make training monks more friendly to players its too boring to need to walk until a free trainer room how to check a few positions, if have no player on that position, teleport the player to this position, else if shows: the trainers room are full 401,101,7 405,101,7 409,101,7...
  8. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    Not much to say, just perfect! Thank you @Erexo
  9. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    game.cpp: In member function ‘uint64_t Game::getMoney(const Cylinder*, bool)’: game.cpp:1949:23: error: expected primary-expression before ‘const’ if(includeBank && const Player* p = dynamic_cast<const Player*>(cylinder)) ^~~~~ game.cpp:1949:23: error: expected ‘)’...
  10. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    Sure! [C++] game.cpp - Pastebin.com
  11. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    I think so: game.h - e8c04908
  12. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    I did added what u post (i just don't changed what was 64 to 32 scaring to do some shit), but got an error on game.cpp game.cpp: In member function ‘uint64_t Game::getMoney(const Cylinder*, bool)’: game.cpp:1949:23: error: expected primary-expression before ‘const’ if(includeBank && const...
  13. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    PERFECT thank you so much! Now everybody who have 8.6 can uses bank money like tibia 11... Or almost i got one last problem... I had 2000 gps on bank, withdraw 1000 for my backpack, let 1000 on bank Said deposit all, to deposit 1000, and got 2k on bank again But got this message 12:43 Paid...
  14. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    That was not my point, i dont care about this 4294967295gp limit, players will never have it on my server... I just was answer him that 3777, 0.4 (atlast mine), is already 64 Now it's working, thank you so much to being help us... But i need to ask 2 more things to you: 1- When i compile this...
  15. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    Get money is already 64 guys (i think so)... what do i doing wrong? my game.cpp hastebin errors game.cpp: In member function ‘uint64_t Game::getMoney(const Cylinder*)’: game.cpp:1949:50: error: cannot dynamic_cast ‘cylinder’ (of type ‘const class Cylinder*’) to type ‘class Player*’...
  16. gmstrikker

    TFS 0.X Buy items with money backpack or bank balance 0.4

    Hello guys, I was looking to a way to make 8.6 servers like 11+ Actual tibia have some changes really nice that should have on 8.6 servers and one of this is this: When you buy some in stores (hi,trade), if you don't have money on backpack, it check and remove money to your bank balance... Is...
  17. gmstrikker

    TFS 0.X NPC accept money on hands and bank money

    Guys... How to use the bank balance in the same variable message? I need to do it, to send player bank balance I've tried: // message to player char msg[64] = "Your bank balance now is: " + player->balance + "."; player->sendTextMessage(MSG_INFO_DESCR, msg); But don't...
  18. gmstrikker

    TFS 0.X NPC accept money on hands and bank money

    You mean, this: ... bool Game::removeMoney(Cylinder* cylinder, int64_t money, uint32_t flags /*= 0*/) { if(!cylinder) return false; if(money <= 0) return true; typedef std::multimap<int32_t, Item*, std::less<int32_t> > MoneyMultiMap; MoneyMultiMap moneyMap...
Back
Top