• 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

    Solved [Error - Globalevent Interface] cleanhouse !

    Np. So its works now? If everything wokrs fine mark as solved ;)
  2. Ascuas Funkeln

    Lua Vocation.xml

  3. Ascuas Funkeln

    Solved [Error - Globalevent Interface] cleanhouse !

    local requiredTime = 60 * 60 * 24 * 10 function onThink(interval, lastExecution) doSaveServer() local result_plr = db.getResult("SELECT * FROM `houses`;") if(result_plr:getID() ~= -1) then while(true) do local owner = tonumber(result_plr:getDataInt("owner")) local...
  4. Ascuas Funkeln

    TFS 0.X total items bonus

    First 0.4 -> 1.2/1.3... Second to avoid all problems you must edit source to force movements action to use on item script and function. But this is not neccessary if u do it in script as condition. Anyway local Sorc = createConditionObject(CONDITION_ATTRIBUTES)...
  5. Ascuas Funkeln

    Solved [Error - Globalevent Interface] cleanhouse !

    Console told you everything... We cant help you since u dont paste cleanhouses.lua script to check what is wrong...
  6. Ascuas Funkeln

    Use 100x item if have 100 item

    local config = { [12782] = {exp = 97001, lvl = 79001, typ3="Hitpoints"}, [12783] = {exp = 97002, lvl = 79002, typ3="Manapoints"}, [12784] = {exp = 97003, lvl = 79003, typ3="Magic Level"}, [12785] = {exp = 97004, lvl = 79004, typ3="Melee"}, --[?] = {exp = 97005, lvl = 79005...
  7. Ascuas Funkeln

    C++ TFS 1.3 Item Attributes

    items.cpp -> defined what u need Item using <attribute key="absorbPercentAll" value="7" /> <attribute key="absorbPercentFire" value="8" /> <attribute key="absorbPercentPhysical" value="88" />
  8. Ascuas Funkeln

    Problem with Neoncube

    Try low or other lower than normal, i dont use neoncube anymore but i remember when creating archive i change something to make it works and i think its was level compression. Im not in home for now, then if any lower compression wont work i check my old files when i back to home what change...
  9. Ascuas Funkeln

    Lua TFS 1.3 - Buff spell gives more damage from spells on x seconds.

    Sure, but i dont like when script call other script :)
  10. Ascuas Funkeln

    Solved Annihilation (Exori Gran Ico) PROBLEM !

    Mark solution post as Solved :)
  11. Ascuas Funkeln

    Lua TFS 1.3 - Buff spell gives more damage from spells on x seconds.

    BUFF - Create spell like this local function BuffStop(playerId, seconds) local player = Player(playerId) player:setStorageValue(500, 0) end function onCastSpell(player, variant) player:setStorageValue(500, 1) addEvent(BuffStop, 5000, player) -- 5000...
  12. Ascuas Funkeln

    Problem with Neoncube

    When you create .rar archive select archive compression level to normal
  13. Ascuas Funkeln

    OTClient OTC Tutorials?

    [TUTORIAL MODS]- Creating Modules with Extended Opcode (https://otland.net/threads/tutorial-mods-creating-modules-with-extended-opcode.270062/) Some time ago i made simple module making tutorial maybe will help you, and important in this thread @oen432 put very useable extension (JSON) that are...
  14. Ascuas Funkeln

    RevScripts SSA exhaust

    Not working? You need script to avoid wearing item when exhaust?
  15. Ascuas Funkeln

    RevScripts SSA exhaust

    if toPosition.x == CONTAINER_POSITION and toPosition.y == CONST_SLOT_NECKLACE or CONST_SLOT_RING and item:getId() == ITEM_STONE_SKIN_AMULET or ITEM_MIGHT_RING then addEvent(function() exhaust[pid] = false end, 2000, pid) 2000 = 2 sec
  16. Ascuas Funkeln

    The state of this community

    Same as @Xikini, i spend near 100% time on Otland in support section and i dont see this problems, ofc there are more lurkers than contributors but this is normal even in real life, there are many threads like this one :| You go with the times or you drown with dreams and nostalgia, simple. And...
  17. Ascuas Funkeln

    How work set/get storagevalue?

    google.com -> write -> "otland storages how to"... 5 sec work and first search result... [Lua] Understanding Storages (https://otland.net/threads/lua-understanding-storages.189075/)
  18. Ascuas Funkeln

    Bug on realmap tfs 1.3 client crashes

    Just, select in itemEditor(otb) location of Tibia.spr and Tibia.dat of you client, next load you server item.otb Then in itemEditor click "Edit->Create Missing Items", after it done click "Tools -> Reload Item Attributes" Save otb file, upload on server, restart everything and check...
  19. Ascuas Funkeln

    TFS 0.X Some bugs to fix.

    This will help you: 0.4 -> 1.3 Anyway, maybe paste code of torch and potions action... That we can look for bugs
Back
Top