• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Ascuas Funkeln

    TFS 1.X+ While in a party, you can deal DMG to your allies.

    Where can I look for a solution? Where can I find the code to share? Here: Search (https://otland.net/search/) Basic 1.x dont have implemented party protection? Then?? First post make here little confusion, thrid is about other way. As i said, 5 sec search... Request Party Protection...
  2. Ascuas Funkeln

    Best way to add description for item attribut? TFS 1.3 , LUA

    Im good understand? U wanna do something like this? If you add health or mana to items, u wanna see it displayed same as other stuff like sword fighting etc? In both case for armor items and weapons in item.cpp just add this stat what u want Find if (it.abilities) { for...
  3. Ascuas Funkeln

    Lua do not allow the same ip for the boss (MC)

    function onUse(player, item, fromPosition, target, toPosition, monster, isHotkey) local PlayerPerIP = 1 local MC = 0 for _, check in ipairs(Game.getPlayers()) do if player:getIp() == check:getIp() then MC = MC + 1 if MC > PlayerPerIP then...
  4. Ascuas Funkeln

    OTClient Script to assign Hotkey

    Hello, What i need is create in mod window button and when its pressed then script will assign (example: "F1 hotkey by text value") Already got this function TEST(value) currentHotkeyLabel.value = "Attack" currentHotkeyLabel.autoSend = true updateHotkeyLabel(currentHotkeyLabel)...
  5. Ascuas Funkeln

    OTClient Shop Module

    ClanWindow < MainWindow size: 210 100 @onEscape: modules.game_shop.destroyClanWindow() Label text: Rank: width: 38 anchors.top: parent.top anchors.left: parent.left margin-top: 2 SpinBox id: spinBox step: 1 width: 50 anchors.top: parent.top...
  6. Ascuas Funkeln

    TFS 1.2 What im doing wrong in this storage check

    You have function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end and other functions define in script?
  7. Ascuas Funkeln

    If physical damage with sword...

    U get mod from Tibiaking? Why you dont follow instructions? U compile everyrhing correct?
  8. Ascuas Funkeln

    If physical damage with sword...

    sendScreanSound(cid, "SwordDamage.wav") You can send on attack extendedopcode, then Otclient will play sound if receive this packet.
  9. Ascuas Funkeln

    Lua Help in script

    Sorry for lack of info, and ofc work perfect! Thanks
  10. Ascuas Funkeln

    Lua Help in script

    Hello, Someone can help me in this script? Im pretty retarded in tables xD What i need is: a = Trigger item, used on item b = old item c = new item which has item id (b+1) Item "a" can be used only on items from "ITEMS" list, then script should remove "a" and "b" item, then create "c" item...
  11. Ascuas Funkeln

    OTClient Health/Mana Bars

    I don't even know how to link images with functions.. Then obtain images from .pic is not a challenge U wanna challange but making request thread? :D Study *.lua and *.otui from this mod and you will learn how to put image into game window and resize, crop etc...
  12. Ascuas Funkeln

    Lua Item Upgrade basic value[1.2]

    Hello, i need help with this script. What i want is, make this % upgrading every time from basic value, not from actual value. Example: Armor Value: 100 Upgrade per hit: 3% Result from 0% to 3% is 105 instead of 103, cuz they calcuate all 3 level, and take value of actual lvl instead of basic...
  13. Ascuas Funkeln

    Lua TFS[1.2] - Define player in condition

    Hi, i already done it in little other way and forgott about this thread. Anyway i tested script as and it works :)
  14. Ascuas Funkeln

    C++ Limit skills 254 -> how change uint?

    In vocation.cpp This line define required mana for advance, in high levels they return sick numbers cuz of this std::pow thats mean "power" uint64_t reqMana = std::floor<uint64_t>(1600 * std::pow<double>(manaMultiplier, static_cast<int32_t>(magLevel) - 1)); You can change it for exmaple...
  15. Ascuas Funkeln

    (Upgrade Script) display item name, need help.

    I try get any info from here lua-users wiki: Split Join (http://lua-users.org/wiki/SplitJoin) But i cant understand how to make it in this script. Maybe someone have idea how to split here @Edit Ok i get little progress, problem make the % symbol If i do something like that local name =...
  16. Ascuas Funkeln

    (Upgrade Script) display item name, need help.

    Yes its setup this name(as you see in first post), but script dont see this name properly in next upgrade try. Here is problem local name = Item(item):getName():split('+')
  17. Ascuas Funkeln

    (Upgrade Script) display item name, need help.

    Hello, i refresh thread. What i need is editing this lines thats result of upgrade item should be: Armor (1%) instead of Armor +1 Anyone can help me? local name = Item(item):getName():split('+') doItemSetAttribute(itemEx.uid, ITEM_ATTRIBUTE_NAME, it:getName()..((nLevel>0) and "+"..nLevel or ""))
  18. Ascuas Funkeln

    Compiling Anyone can extract map to images?

    Ok, making "quest/challenge" is the same as request... Nothing to say more. Near all my posts in otland are in support section, im here 7-8 years, and mr. White Knight of Rules coming and tell me im looking for attention in "discussion subforum" and make mess on forum. "if everybody play the...
  19. Ascuas Funkeln

    Compiling Anyone can extract map to images?

    You are pretty offensive. I make it in discussion and ask that anyone can extract it, i dont make request "do it for me". yeezzzz. @Edited thread... Or just close it, cuz nc...
  20. Ascuas Funkeln

    Compiling Anyone can extract map to images?

    No, i dont mean request... " There is a request forum and a job forum here." Did i look like i dont know that?
Back
Top