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

    C++ Boss Reward tfs 1.4

    I'm trying to add it to tfs 1.4, but I'm having these errors, does anyone have a solution? https://github.com/otland/forgottenserver/pull/1641/files#diff-71ab3d0cd534a1608f1c652185c8a8e1247c81813161673bedf7f5433dad2483 Error C2248 'Container::maxSize': cannot access private member...
  2. M

    AAC add function to the shop system

    @MyAAC https://github.com/slawkens/myaac-plugins/blob/master/gesior-shop-system/payments/pagseguro.php#L55 hello, somebody can help add this function. I want to add the function to PHP, where it will add the item when purchasing Points. INSERT INTO `z_ots_comunication` (`id`, `name`, `type`...
  3. M

    C++ add features from tfs 1.2 to 1.4

    I added my enchantment system in tfs 1.4, but i had problems, could anyone help? When i remove the functions everything seems to work normally movement.cpp https://github.com/otland/forgottenserver/blob/1.4/src/movement.cpp#L459C1-L476C1 uint32_t MoveEvents::onPlayerEquip(Player* player, Item*...
  4. M

    tfs 1.5 online but can't login

    Please could someone help, I'm trying to get tfs 1.5 online, without success. I thought the settings were wrong so I tested with canary and it worked Myaac login.php TFS 1.5 Client 12.86.11871
  5. M

    C++ otcv8-auras-and-wings Unresolved external symbol deflateEnd

    I'm trying to add the system > https://otland.net/threads/otcv8-auras-and-wings.284325/#post-2719135 Please, could someone help me solve this? protocol.obj : error LNK2001: unresolved external symbol deflateEnd protocol.obj : error LNK2001: unresolved external symbol deflateInit2_ protocol.obj...
  6. M

    RevScripts Movements stepin/out tile pos

    Hello, I would like help, how to add the coordinates for the script to work on the chosen tile? Does it only work with aid? the tiles would be 284, 176, 7 and 284, 177, 7 local coal_basin = MoveEvent() coal_basin:type("stepin") function coal_basin.onStepIn(creature, item, position...
  7. M

    Lua Transform item

    Hello, I found this script, I would like that instead of creating a new item it transforms the item with the same attributes as the previous one. knight helmet LV1 to knight helmet LV2, for example knight helmet LV1 XX (Arm:215) Slots: Increase 15% max melee. Increase 15% max melee. Increase...
  8. M

    Lua [TFS 0.4/1.2] Tier upgrading system

    Hello, this script was created by infernum, is it possible to add a quantity of items for the upgrade? example > need 3 elven mail(2505) to upgrado for dsm(2492) local gear = { [2087] = {tier = 1, upgraderType = 'key', chance = 30, items = { [2505] = 2492...
  9. M

    Lua binds items when equipe

    if possible, if player equips certain item then that item will bind to player so only that player can use that item tfs 1.2
  10. M

    Changing protocol version optimized_forgottenserver

    im trying to change the protocol to use a OtclientV8 and outdate client 1000, already tried #define CLIENT_VERSION 1100 #define CLIENT_VERSION 1120 #define CLIENT_VERSION 1121 I always have this error /home/debian/servidor/tfs/src/protocolgame.cpp: In member function ‘void...
  11. M

    Vocations Balancing [implementation]

    I tried make it in a better way to configure it so that the damage is changed according to the type of attack... I think had a result + -, if someone is available to make it safe and better based https://otland.net/threads/tfs-1-3-vocations-balancing-easiest-way.271997/#post-2619887 local...
  12. M

    auto update Question

    auto update is a free tool, or i need something more, already follow the tutorial and it didn't work
  13. M

    Signature spr/dat OTC V8

    my spr / dat signature are different of the official, how i can make work on client V8 Can someone help ?
  14. M

    AAC Myaac - Maximum guild members

    Hello I want to add maximum number of members in guild in myaac, Can someone help ?
  15. M

    Insert party task count (custom system)

    how i can insert this solution on the script https://otland.net/threads/tfs-1-2-task-party.273451/#post-2652592 tfs 1.2
  16. M

    Lua Trainers Teleport

    I don't know what is wrong, if someone can help when there is no more space (position) of this error "Tile" returns like nil tfs 1.2
  17. M

    get image from storage [PHP]

    how can i capture the image according to the value of a storage <?php $monster = $db->query('SELECT `value` FROM `global_storage` WHERE `key` = 56404'); ?> <img id="Monster" src="images/monsters/<?php $monster ?>.gif" onClick="window.location =...
  18. M

    Party.lua send message loot channel

    send different loot message for member and leader function Party.broadcastPartyLoot(self, text) local CHANNEL_LOOT = 128 local party = self:getParty() if party:getLeader() then sendChannelMessage(CHANNEL_LOOT, TALKTYPE_CHANNEL_O, text) -- end -- local...
  19. M

    C++ getstorage c++

    solver
  20. M

    change exp stage to float

    how can i change so that exp is: <stage minlevel="300" maxlevel="400" multiplier="2"/> <stage minlevel="401" maxlevel="601" multiplier="1.5"/> <stage minlevel="601" maxlevel="1000" multiplier="0.5"/> tfs 1.2
Back
Top