• 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!

Recent content by Baahzera

  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)
Back
Top