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

    C++ How to change the folder where the theforgottenserver.exe file is generated

    I have changed the directory where the theforgottenserver.exe file is created in the project. However, when I try to run this file directly through Visual Studio, it gives an error because it cannot find the config.lua file. However, the config.lua file and everything else are in the...
  2. E

    TFS 1.X+ Blocking Item move

    Hello, I wanted to block a item, I mean, impossible to throw away, so, if it's on a bag, the bag should be blocked too.. So, shouldnt be possible to move the blocked item between the bags, and if i try to do it, it should verify if does exist a blocked item, if yes, then the bag shouldnt be...
  3. E

    OTClient Vertical Progress Bar

    Hello, I'm trying to make a vertical progress bar, but when I add it at 80% it draws from top to bottom, and I would like to do the opposite That's how it looks when it's 80%... And this is how I would like it to look... That was the code I edited -- @docclass UIVerticalProgressBar =...
  4. E

    TFS 1.X+ Help to Count Item when move It

    Good morning, I am wanting to develop a system that counts how many items the player gets, or moves into the backpack. For example, Item Sword, I want to perform a function that executes every time he wins an item with the same ID as a Sword, and every time he moves a sword into the backpack he...
  5. E

    OTClient Connect to ENCRYPTION_SHA256

    My Sever use encryption type ENCRYPTION_SHA256, but my otclient cannot connect in character list why ?
  6. E

    OTClient Compilling problems

    I'm Trying to compile otclient last version with vcpkg and i got this erro: Severity Code Description Project File Line Suppression State Error (active) E0289 no instance of constructor "boost::posix_time::seconds::seconds" matches the argument list otclient...
  7. E

    TFS 1.X+ Compilling problems

    Hi, I formatted my computer and installed windows 10 PRO, I installed visual studio community 2017 and set the libs in TFS 1.3 project, I put the VS to compile but when I try to run the following error "0xc000007b" ~ when I try to use the debugger I get the following error Real Error...
  8. E

    C++ TFS 1.2 metatable bind problem

    Good morning, I'm doing a new class called "Pokeball" that inherits the "Item" class. But I'm having trouble binding the class to use it in LUA, I can not send the metatable to use the functions in Lua. When i try to do this : function onUse(player, item, fromPosition, target, toPosition...
  9. E

    Compiling Downgrade Server Version (TFS 1.1 1077 to 1041)

    Some one can help me with downgrade from my tfs 1077 to 1041 ? 1077 no have data editor support and have bugs in spr on otclient, so i want to make a downgrade to 1041 I tryed to make it #define CLIENT_VERSION_MIN 1041 #define CLIENT_VERSION_MAX 1041 #define CLIENT_VERSION_STR "10.41" Its...
  10. E

    Windows Arithmetic Bug on C++ TFS 8.6

    Im trying to do : std::cout << "\tMAX HEALTH: " << target->getMaxHealth() << std::endl; std::cout << "\tEXPERIENCE: " << g_monsters.getMonsterType(monster_id)->experience << std::endl; std::cout << "\tDAMAGE: " << damage << std::endl...
  11. E

    Compiling TFs 1.x compiling bug

    Some one can help me with this bug ? Libs: Includes:
  12. E

    10.76 Animation Bug

    When i use the otclient in version 1076 i have this bug it is only in otclient
  13. E

    TFS 1.1 Outfit Animation BUG

    I Compile the TFS 1.1 (10.76) now, and when i login in my character i got this bug... Anyone can solve this problem ?
  14. E

    Recive Opcode in Client

    Good afternoon, I'm with a problem in TFS 1.0, I can not send an opcode for my client. Thats is my module: function init() ProtocolGame.registerOpcode(90, callBackOpcode) end function terminate() end function callBackOpcode(protocol, msg) print("a") end And it is my talkactions...
  15. E

    Lua TFS 1.0 BUG OPCODE

    Why Opcode are not working in my tfs 1.0 ? I need to active it ? Please Help me.
  16. E

    Problem with extended opcodes

    Im Getting this erro ERROR: Unable to send extended opcode 10, extended opcodes are not enabled In This code function addItemList() local protocolGame = g_game.getProtocolGame() if protocolGame then protocolGame:sendExtendedOpcode(10, "D") return true end end...
  17. E

    Lua TFS 1.0 Erro OPcode

    When I try to use opcodes on my server I get this error in the client ERROR: Unable to send extended opcode 1, extended opcodes are not enabled ERROR: Unable to send extended opcode 12, extended opcodes are not enabled ERROR: Unable to send extended opcode 10, extended opcodes are not enabled...
  18. E

    Solved Help with corpse (onDeath) TFS 1.0

    function onDeath(player, corpse, killer, mostDamageKiller, unjustified, mostDamageUnjustified) print(getContainerSize(corpse)) return true end Why does this always returns 0 ?, how i can return corpse from game ? to check size and get itens from corpse ?
  19. E

    Lua TFS 1.0 - doAreaCombatHealth Direction Bug ?

    I Make this in my script local area = createCombatArea{ {1, 1, 1}, {1, 1, 1}, {1, 3, 1} } function onSay(player, words, param) local lvl = player:getLevel() local dmgMax = ((lvl * 5)) local dmgMin = ((dmgMax*0.90)) local position = player:getPosition()...
  20. E

    Solved TFS 1.0 - doAreaCombatHealth Direction Bug ?

    Hello, I'm trying to make a new spells system by talkactions, but i have one problem. Look, This is my script local area = createCombatArea{ {1, 1, 1}, {1, 3, 1} } function onSay(player, words, param) local lvl = player:getLevel() local dmgMax = ((lvl * 5)) local dmgMin...
Back
Top