• 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

    player:getMana() gives error

    OK i get the problem when paste it in notepad xDXDDX local combat = Combat() combat:setParameter(COMBAT_PARAM_AGGRESSIVE, 0) local condition = Condition(CONDITION_HASTE, CONDITIONID_DEFAULT) condition:setParameter(CONDITION_PARAM_TICKS, -1) combat:addCondition(condition) local regenCondition...
  2. Ascuas Funkeln

    player:getMana() gives error

    local combat = Combat() combat:setParameter(COMBAT_PARAM_AGGRESSIVE, 0) local condition = Condition(CONDITION_HASTE, CONDITIONID_DEFAULT) condition:setParameter(CONDITION_PARAM_TICKS, -1) combat:addCondition(condition) local regenCondition = Condition(CONDITION_REGENERATION...
  3. Ascuas Funkeln

    player:getMana() gives error

    If still dont work try change player to cid, cuz that are work onCastSpells And change this to getMana() < 5 then this getMana() =< 5 then
  4. Ascuas Funkeln

    player:getMana() gives error

    You restarting server or just reload scripts? Check this local combat = Combat() combat:setParameter(COMBAT_PARAM_AGGRESSIVE, 0) local condition = Condition(CONDITION_HASTE, CONDITIONID_DEFAULT) condition:setParameter(CONDITION_PARAM_TICKS, -1) combat:addCondition(condition) local...
  5. Ascuas Funkeln

    player:getMana() gives error

    local combat = Combat() combat:setParameter(COMBAT_PARAM_AGGRESSIVE, 0) local condition = Condition(CONDITION_HASTE, CONDITIONID_DEFAULT) condition:setParameter(CONDITION_PARAM_TICKS, -1) combat:addCondition(condition) local regenCondition = Condition(CONDITION_REGENERATION...
  6. Ascuas Funkeln

    Lua My server is online, but no one can connect. Why?

    https://otland.net/search/570228/?q=Connection+refuse+%2810061%29&o=relevance https://otland.net/threads/cant-connect-to-my-owm-server-error-10061-refused-connection.241791/
  7. Ascuas Funkeln

    player:getMana() gives error

    onCastSpell(creature, var) << Creature player:getMana() << Player local combat = Combat() combat:setParameter(COMBAT_PARAM_AGGRESSIVE, 0) local condition = Condition(CONDITION_HASTE, CONDITIONID_DEFAULT) condition:setParameter(CONDITION_PARAM_TICKS, -1) combat:addCondition(condition) local...
  8. Ascuas Funkeln

    TFS 1.X+ player:registerEvent(name) && onTextEdit tfs 1.x

    You can setup this without any problems and lags in login.lua
  9. Ascuas Funkeln

    1.3 Sourc 2020 bug

  10. Ascuas Funkeln

    Lua Custom ring of healing problem with Delay

    local condition = Condition(CONDITION_REGENERATION) condition:setParameter(CONDITION_PARAM_SUBID, 4) condition:setParameter(CONDITION_PARAM_TICKS, -1) condition:setParameter(CONDITION_PARAM_HEALTHGAIN, (math.random(50,150))) condition:setParameter(CONDITION_PARAM_HEALTHTICKS, 100)...
  11. Ascuas Funkeln

    STORAGE - Command to remove storage and code to remove storage in SQL.

    Create talkaction script that execute this: db.query("DELETE FROM `player_storage` WHERE `player_storage`.`key` = " 123456 ";")
  12. Ascuas Funkeln

    OTClient Close button by window OTClient

    Window and button name
  13. Ascuas Funkeln

    TFS 0.X attempt to concatenate upvalue 'maximum' (a nil value)

    addEvent instead of aaddEvent
  14. Ascuas Funkeln

    OTClient Close button by window OTClient

    "calling the function OnOff just as the hotkey" OTUI MiniWindow @onClose: modules.SCRIPTNAME.onMiniWindowClose() If you have edited "Main/MiniWindow" if i got remember u make mess with it :D then function onoff() if SCRIPTNAMEButton:isOn() then SCRIPTNAMEWindow:close()...
  15. Ascuas Funkeln

    Problem with life bars and mana(OTCLIENT)

    Post healthinterface module, otui code
  16. Ascuas Funkeln

    TFS 1.X+ Weapon damage and distance 'miss' hit

    weapons.cpp bool WeaponDistance::useWeapon(Player* player, Item* item, Creature* target) const
  17. Ascuas Funkeln

    OTClient Close button by window OTClient

    function onoff() g_keyboard.bindKeyDown('Ctrl+B', FILENAME.onoff) if mainWindow:isVisible() then mainWindow:hide() else mainWindow:breakAnchors() mainWindow:show() end end
  18. Ascuas Funkeln

    Purchased houses not staying purchased

    How you restart it? Always use /closeserver before restarting server.
  19. Ascuas Funkeln

    C++ NEW SLOT ERRO (0.3.6)

    Always try to post solving of the issue if you get it. You will help each others who will get the same problem and trying find solve of it.
Back
Top