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

  1. aqubjukr

    TFS 1.X+ Get a value by showTextDialog

    Thanks @Roddet. Não tinha pensado dessa forma, usando register event. I will also reflect and try to get a better solution to the problem you mentioned. Btw, thx man. U've helped me a lot. <3
  2. aqubjukr

    TFS 1.X+ Get a value by showTextDialog

    How to do this? I don't understand how you're going to accomplish this, bcos it's not a game item, but a "local" dialog box.
  3. aqubjukr

    TFS 1.X+ Get a value by showTextDialog

    Does anyone know how to tell me the correct way to get the text value typed by the player inside the showTextDialog? I know that the function is structured in the following way: showTextDialog(id, text, canWrite, length), but I couldn't do it at all. local function processValue(cid) local...
  4. aqubjukr

    TFS 1.X+ storages teleport style private cave

    player:teleportTo(Position(x,y,z))
  5. aqubjukr

    Only allow using item if it's equipped

    Yep. I just sent a base on how to check the armor in the scprit, the action is up to him.
  6. aqubjukr

    Only allow using item if it's equipped

    local armor = player:getSlotItem(CONST_SLOT_ARMOR) if armor and armor:getId() == ARMOR_ID then —- script —- end
  7. aqubjukr

    TFS 1.X+ does not send effect to position

    Put effect line after teleport line.
  8. aqubjukr

    TFS 1.X+ Base and Level difference?

    MagicLevel example: BaseMagicLevel = Skill of the player in the bar (no item influence) MagicLevel = The amount of "BaseMagicLevel" + any item that contributes to the magic level, such as, the hat of the mad (+1 ml) The others, follow the same pattern
  9. aqubjukr

    Solved Cmake .. Debian 9 Tfs 1.3

    Uninstall this one and downlod a updated cmake. Download | CMake (https://cmake.org/download/)
  10. aqubjukr

    Lua [TFS 1.3] Being able to "select" a player through a talkaction param.

    Hello thanks for the help @Sarah Wesker. I was already building talkaction by modal using the player ID to solve the problem. 🤣 Your script worked just fine, it will help me a lot as a base. Thanks @drakylucas and @Evil Puncker. ❤️
  11. aqubjukr

    Lua [TFS 1.3] Being able to "select" a player through a talkaction param.

    When using your script, it doesn't print anything. (Don't recognize the param as a player) Note: I've fixed the line of if.
  12. aqubjukr

    Lua [TFS 1.3] Being able to "select" a player through a talkaction param.

    Sorry, but I couldn't understand what you wanted to go through. I believe that because a param is used, it works differently. Even though I shortened the script even more, it gives nil when using :x local player = TalkAction("/player") function player.onSay(cid, words, param) local...
  13. aqubjukr

    Lua [TFS 1.3] Being able to "select" a player through a talkaction param.

    I have the following problem: When using a talkaction with param, it always returns "nil" if the player is offline. (If the player is online everything goes well) Example: If I type: "/player Maker" (when he is offline), it will be printed on the console: nil. I was wondering if there is a...
  14. aqubjukr

    TFS 1.X+ skills limit

    Try use: if player:getSkillLevel(v.skill) >= v.lim or (player:getSkillLevel(v.skill) + v.incre) >= v.lim then player:sendCancelMessage("Você não pode comprar esse skill.") return false end Or only (In that case it can pass a little, but it will block when it pass.): if...
  15. aqubjukr

    Scripter Paid Job TFS 1.2 Daily boosted monster

    Feat: Boosted Creature by marcosvf132 · Pull Request #1609 · opentibiabr/otservbr-global (https://github.com/opentibiabr/otservbr-global/pull/1609)
Back
Top