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

    lever boss

    function onUse(cid, item, pos, itemEx, toPosition) local valueid = 3007 --store global local timer = 2 -- horas if (getGlobalStorageValue(valueid) < os.time()) then setGlobalStorageValue(valueid, os.time() + timer * 60 * 60) doCreateMonster("Demon Darakan", {x = 1547...
  2. Baahzera

    Lua Function doSaveHouse(houseId)

    TFS already have it https://github.com/otland/forgottenserver/blob/master/src/luascript.cpp#L12529
  3. Baahzera

    Full Monster Loot drop

    Go to your items.xml file and change the containerSize attribute to something you want. For example: <attribute key="containerSize" value="56" />
  4. Baahzera

    TFS 1.X+ Adding a key (with action id) inside a bag with items, as reward from a quest.

    Probably this way, changing player usertada to the bag userdata you already have local key = bag:addItem(2091, 1) if key then key:setActionId(6010) end Also you may want to check if the bag actually was added to the player within your for condition if bag then ... end
  5. Baahzera

    Removing the "Golden" from the set

    https://github.com/otland/forgottenserver/blob/master/src/protocolgame.cpp as you can see, there's no funcion with that name in TFS 1.3.
  6. Baahzera

    Spells Versus Walls

    The only reason for that happening is that you have made changes when the code verifies if there is a blocking item in front of out if you cast area spell.
  7. Baahzera

    Spells Versus Walls

    This is not a problem. You might have applied these changes Fixes from: Vank · mattyx14/otxserver@f19236c (https://github.com/mattyx14/otxserver/commit/f19236c0e21abe861abd9e9f88f995b16faaeffc) So revert it.
  8. Baahzera

    Removing the "Golden" from the set

    Function void ProtocolGame::sendBlessStatus() does not even exists on TFS 1.3
  9. Baahzera

    count all potions in action bar

    I'm looking for a solution on this, therefore I have produced different results, like action bars counting more than I actually had. Any help or hint would be apreciated.
  10. Baahzera

    TFS 1.X+ Function usage

    Oh! I didn't see that piece of code. This will help a lot! Thank you!
  11. Baahzera

    TFS 1.X+ Function usage

    Yes.
  12. Baahzera

    TFS 1.X+ Function usage

    Hello. I am having trouble on using the function setSkullTime. I've already take a look on the C++ code but didn't get it out. I'm setting a skull type to a player, then I try to set skullticks for it to be like unlimited amount of time until the player logs out. I've tried: setSkullTime(-1)...
  13. Baahzera

    Action [TFS 1.2] Exercise Weapons

    @biagitox are you in protection zone?
  14. Baahzera

    Action [TFS 1.2] Exercise Weapons

    Updated here: fix a problem with exercise weapons (#539) · opentibiabr/OTServBR-Global@fbe682b (https://github.com/opentibiabr/OTServBR-Global/commit/fbe682b338e4f75de2cede746c4d2dcd64b8f5ca)
  15. Baahzera

    Linux Login with Client 12 crash the server

    Yes it is. I tried what you said and played with file permissions, therefore, it didn't work. That's what I was thinking that I could literally crash every server using that source. That worked, the server doesn't crash anymore. Now I wonder why the developers of these OTBR can login (I still...
  16. Baahzera

    Linux Login with Client 12 crash the server

    I've already made that. I tested within different machines running Ubuntu 19.04, 18.04 and 16.04, also with Debian 9. I don't think that database is related to this issue as it appears to be related to crypto++. Thank you for your answer.
  17. Baahzera

    Linux Login with Client 12 crash the server

    Hello. Since I could not find a solution I'm starting this thread. The server I'm trying to start is: opentibiabr/OTServBR-Global (https://github.com/opentibiabr/OTServBR-Global) I made sure I compiled following all instructions and have the key.pem file with compiled TFS. Tested on Ubuntu...
  18. Baahzera

    AAC MyAAC Leaking user/database password

    I've done exactly what you said about display_errors and init_set(), however, the error was still being showed. The changes were made to this file: slawkens/myaac (https://github.com/slawkens/myaac/blob/master/system/libs/pot/OTS_DB_MySQL.php#L138) You'll see that there's no exception handling...
  19. Baahzera

    AAC MyAAC Leaking user/database password

    Hello. I've found that when MyACC fails to connect to mysql server it displays error messages leaking database user and password. I've supressed my infos from the error. ERROR: Cannot connect to MySQL database. Possible reasons: MySQL is not configured propertly in config.lua. MySQL server is...
Back
Top