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

    Programmer Modify RME and TFS 1.4.2 to use map sectors

    Looking for a team to work with me on making this. DM me if you are interested. Any information on how to go about this would be highly appreciated. The map editor source I will be modifying: GitHub - OTAcademy/RME: OTAcademy fork of Remere's Map Editor repository...
  2. Itutorial

    C++ Async database

    How hard is it to implement async database calls? It seems pretty easy based on what I have read. What things should I consider? I have created this code which theoretically will execute a query async. What problems could happen from this? std::future<bool> Database::executeAsyncQuery(const...
  3. Itutorial

    TFS 1.X+ Npchandler CALLBACK_GREET change

    I am trying to make it so when I return false in my greet callback the npc will still greet the player with the message I determine but it will not focus or release the focus of the player after doing so. function greetCallback(cid) local player = Player(cid) if not player then return...
  4. Itutorial

    TFS 1.X+ Custom Item attribute not being set

    So I have increased the amount of attributes I can use. One of which is bindtype of the item. The issue is it isn't changing when I try to use setAttribute on it. There are no errors indicating a problem it is just persisting anyway. Maybe there is a size limit somewhere I need to figure out...
  5. Itutorial

    Programmer OtclientV8 + TFS source change

    I have created a visibility system where players cannot see creatures that are too far away (even if they are within the screen area). The visibility is determined by day/night and weather like snow, ect. The player can gain more visibility using a light source. The server side of this code I...
  6. Itutorial

    TFS 1.X+ Player visibility

    I want to make it so players can only see creatures in their visibility range. Right now creatures will only update when they leave or enter the screen area. However, I need it to update if they are within the screen area as well. Here is the main part of the code I am trying to do. In...
  7. Itutorial

    TFS 1.X+ Tfs 1.4 player:addCondition()

    Anyone know why it isn't working? There are no errors. It just doesn't add the condition. I have used prints and know the code is executing as intended. if potion.health then local condition = Condition(CONDITION_ATTRIBUTES) condition:setParameter(CONDITION_PARAM_SUBID, 3)...
  8. Itutorial

    otclienv8 BotTextEdit

    For some reason I can not use BotTextEdit. It just destroys the UI. This is how I have it set up: BotTextEdit < TextEdit anchors.top: prev.bottom anchors.left: parent.left anchors.right: parent.right @onClick: modules.client_textedit.show(self) text-align: center...
  9. Itutorial

    OTClient otclientv8 Updater Problem

    Using windows. Everything works including downloading new files until it tried to install them. I get this error. The weird thing is even if I am not downloading data.zip it still shows this error. It seems the problem has to do with this: if (reMount) { unmountMemoryData(); file =...
  10. Itutorial

    TFS 1.X+ Where is floorchange handled?

    Where in the sources is floorchange handled? It seems in my 1.4 version after the player moves up or down stairs their direction is opposite from what it should be.
  11. Itutorial

    OTClient Otclientv8 error when floors are above player

    Really weird problem here and it seems to have come out of nowhere.. If I have floors above my player I get this error: There are no items on the floor above that aren't in places where this error doesn't occur. Any ideas?
  12. Itutorial

    OTClient Where are otclient's tooltips handled?

    I know how to use the tooltips but I cannot find where the code to display the tool tip is. Also, if someone knows how I can add text color to the tooltip that would be a bonus. Thanks for any help. https://otland.net/threads/tool-tip.262132/#post-2535347 I think I might be dumb early in the...
  13. Itutorial

    C++ Sending custom attributes to client

    How can I do this? This is what I have so far Server Side: void NetworkMessage::addItem(const Item* item) // Send custom attributes to client. Item* tmpItem = item->clone(); add<uint16_t>(CUSTOM_ATTR_LAST - 1); // Send size of custom attributes for (uint16_t key = CUSTOM_ATTR_RARITY; key <...
  14. Itutorial

    Compiling Luavarient errors after adding .clang-format

    Kind of shot myself in the foot. I have upgraded tfs 1.4/1098 to current tfs sources as much as possible. I just added the "new" .clang-format file and it broke my luavariant.h file somehow or at least thats what it seems to be. Does anyone have an idea what it could be? #ifndef...
  15. Itutorial

    RevScripts Problem after adding movement memory leak fix

    I implemented [Revscriptsys] fixing memory leak in Actions & Moveevents (#4742) after I get an error on two of my movement scripts. All others seem to be fine. The only difference between these two and my other ones is they both use actionid to identify the item. local moveevents =...
  16. Itutorial

    TFS 1.X+ Spells onTargetCreature not found

    TFS 1.4.2/1.5 local combats = {} function onGetFormulaValues1(player, level, magicLevel) local min = (level / 5) + (magicLevel * 1.2) + 7 local max = (level / 5) + (magicLevel * 2) + 12 return -min, -max end function onGetFormulaValues2(player, level, magicLevel) local min =...
  17. Itutorial

    TFS 1.X+ TFS 1.5 setCustomAttribute crash

    Whenever I try to use the setCustomAttribute lua method the server crashes. I created a talkaction that works like /attr but will just set item rarity to whatever I want. local talkaction = TalkAction("/rarity") function talkaction.onSay(player, words, param) if player:getAccountType() <...
  18. Itutorial

    OTClient OTC UI tooltips

    Anyone know how to properly do this? It seems the LocalPlayer object does exist but for some reason I can't use the lua functions associated with it. !tooltip: tr('Increases maximum health by %d', LocalPlayer:getLevelStat(0))
  19. Itutorial

    TFS 1.X+ Storing item attributes system

    I am looking at the item attributes system. It seems we have to store values based on bit shift operations which obviously limits the amount of attributes that can be defined. Can someone who knows explain why this is and how the system works?
  20. Itutorial

    TFS 1.X+ Some items do not trigger onEquip/onDequip

    Hello everyone, I am trying to create an onEquip that will get the stats off all worn items and print them out. The script seems to work properly on some items but not on others. Do we know of any problem in tfs that might cause this? In the code I have registered two items. Demon shield and...
Back
Top