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

    Player Loot Rate

    Are u mean to create a storage to store the loot rates for each player with a value, and in the function of loot create in somewhere in the sources change something just before create loot?
  2. supergt

    Lua Dugeon System

    Hmm ty.. So you are suggesting to declare the g_Dungeons as a global variable? I mean, just omiting the local? g_Dungeons = { -- Dungeon(name, minLevel, maxLevel, rewards) Dragons = Dungeon("Dragons", 15, 30, {1100, 1101, 1102}) } function Dungeon(name, minLevel, maxLevel, rewards)...
  3. supergt

    Lua Auction System + Upgrade System

    Thats a good feature to have in a server, especially with a auction system... Could you share your full code of this upgrade system, because if you have the solution in here, we could use too
  4. supergt

    Lua Dugeon System

    I don't undertood, the dungeons should not be added on local g_Dungeons = { -- Dungeon(name, minLevel, maxLevel, rewards) Dragons = Dungeon("Dragons", 15, 30, {1100, 1101, 1102}) } function Dungeon(name, minLevel, maxLevel, rewards) local this = { name = name or "unamed"...
  5. supergt

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

    My server have a high loot, so i'm thinking about make a limit on deposit, on LUA NPC... Or should be more better change money to 64 too? I have no knowledge in C++
  6. supergt

    Lua Dugeon System

    Thats true, players also need a storage to get kicked off...
  7. supergt

    Lua Dugeon System

    I'm 100% percent uses this if had a system works to 0.4... A better way to kick players from dugeon was set cave no logout zone Add global storage to server, anyway idk how to do, just giving a idea...
  8. supergt

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

    If you find the way to do it, please share...
  9. supergt

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

    Guys!? Don't give up pls :)
  10. supergt

    TFS 0.X Offer expire auction system

    Everytime i see a sql, after finish i see a result:free it's not necessary? i mean, we will have no problem by using this script without this last result:free()
  11. supergt

    Lua Auto recharge assassin star on LUA SCRIPT

    Some time ago, i got this same problem... I've tried to make exacly like it, but for small stones, should be nice, but i gave up. I think the problem is, it's removing the item, addaing again, but not on hands, on backpack Make some prints to test
  12. supergt

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

    @danick10 you looks the more experient here, what do u think... should not be better this second way?
  13. supergt

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

    I can not to test now, but i want this system too... So it's not just change: data\npc\lib\npcsystem\modules.lua To: hastebin And change in some where (i don't found) on source to price shows bank balance+player money, like is on this image: Google Image Result for...
  14. supergt

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

    @danick10 did u understand what this function do? for(MoneyMultiMap::iterator mit = moneyMap.begin(); mit != moneyMap.end() && money > 0; ++mit) { Item* item = mit->second; if(!item) continue; internalRemoveItem(NULL, item); if(mit->first >...
  15. supergt

    TFS 0.X Offer expire auction system

    There is already this one ... CREATE TABLE `auction_system` ( `id` int(11) NOT NULL auto_increment, `player` int(11), `item_id` int(11), `item_name` varchar(255), `count` int(11), `cost` int(11), `date` int(11), PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1...
  16. supergt

    [8.60] The Forgotten Server 0.4

    Mailbox bug was fixed? Fix/Patch - 3777 mailbox bug fix
  17. supergt

    Compiling Help to compile OTClient on Debian 9

    I trying to compile OTClient on Debian 9, but it's won't work (it's not only me, there is others topics about compile otc in debian 9) What i did? 1 Installed everything was necessary: root@ldebian:/home/ldebian/Documents# apt-get install -y build-essential cmake git-core Reading package...
  18. supergt

    Linux Compile OTCLIENT - Debian 9

    If u found a way, pls share, i still looking for this... bump bump
Back
Top