• 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. Aeronx

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/upgrade_system_cs.lua:onDeath data/upgrade_system_core.lua:366: attempt to index local 'lasthitkiller' (a nil value) stack traceback: [C]: in function '__index' data/upgrade_system_core.lua:366: in function...
  2. Aeronx

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    there's a small bug on your system. If you have summons, and a summon kills the monster, lasthitkiller will give you problems.
  3. Aeronx

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    Im implementing this on TFS 1.2 instead of 3. I get and error, not finding getCustomAttribute function is non-existent. Is something that its from tfs 1.3 or its just missing from the system?
  4. Aeronx

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    You finally managed! Congrats sir! Really good system. Probably will add some features from this to mine! great work!
  5. Aeronx

    Damege knight spells with elemental weapon

    You will need to get the weapon damage yourself. function onGetFormulaValues(player, skill, attack, factor) weapon = nil if player:getSlotItem(CONST_SLOT_LEFT) then weapon = player:getSlotItem(CONST_SLOT_LEFT).itemid elseif player:getSlotItem(CONST_SLOT_RIGHT) then...
  6. Aeronx

    Own Client (different look)

    its OTClient
  7. Aeronx

    Paperdoll

    In that case, yes. There are other ways, i cant really saw how, but i've seen here on this forum some pots about paperdolls. Anyway, with Otclient you can do anything so far, even so, you will need an image for every item and for every side (N,W,S,E). Sorry that i cant help no more.
  8. Aeronx

    Paperdoll

    OTClient
  9. Aeronx

    LUA script that display the top level of online players

    -- Returns the 'cid' of the highest level online player. function getHighestLevelOnlinePlayer() local highest = { level = 0, player = 0 } if getOnlinePlayers() >= 1 then for _, name in ipairs(getOnlinePlayers()) do -- Loop through all online players...
  10. Aeronx

    LUA script that display the top level of online players

    Why would you want to get highest online player through sql? You can already check online players, sql would only be needed if the player you are searching for is offline.
  11. Aeronx

    Scripter Free TFS (1.X) scripts - post your ideas

    Yep, i used to use one of those systems, but they were way too restrictive. So i started working on my own. Basically what i do is check loot from monster killed, if there's any weapon or equipment, modify its ATTRIBUTES, and add new ones, like physical resist, or whatever ATTRIBUTE exist on tfs...
  12. Aeronx

    Scripter Free TFS (1.X) scripts - post your ideas

    I saw your town portal system and had some ideas. Ideas: 1.- Random item stats on items for monster drop. Some rare items you need "identify" them to show the stats. 2.- Hire companion. So far like diablo3 ones, different companion tipes that goes along you, can have their own eq (like click on...
  13. Aeronx

    CreatureEvent [TFS 1.3] Item Sets

    Adding storages to sets mean that you can add any function to the sets. If 2 parts, add storage (12345, 1) which will trigger an aura, or a random attack, or even go through a door or whatever you can imagine basically, there are like infinite things to do hehe (at least is how my set system...
  14. Aeronx

    CreatureEvent [TFS 1.3] Item Sets

    Missing one fundamental feature: · Applying storages as bonus. Other than that, really good job.
  15. Aeronx

    Scripter Free TFS (1.X) scripts - post your ideas

    Monster "Artificial Inteligence" (Behavior) (https://otland.net/threads/monster-artificial-inteligence-behavior.241452/)
  16. Aeronx

    Action [TFS 1.X] Cursed Chests

    I've been testing a bit this system and I have some recommendations. Recommendation: · Only the player who activated the chest can get the reward. · If party, leader, or party members can activate and get loot. Note: Otherwise if you are killing a boss for example and are a bit far doing some...
  17. Aeronx

    Scripter Free TFS (1.X) scripts - post your ideas

    This is really really easy to achieve with onHealthChange function. There are some scripts and even tutorials to do it on this forum.
  18. Aeronx

    Scripter Free TFS (1.X) scripts - post your ideas

    Nope. for i = 1, 80 do summoned = doSummonCreature("demon", {x = math.random(spawn1.minX, spawn1.maxX), y = math.random(spawn1.minY, spawn1.maxY), z = spawn1.z}) if summoned ~= false then local rifttier = globalstorage from a modalwindow selecting tier...
  19. Aeronx

    Scripter Free TFS (1.X) scripts - post your ideas

    Since your last scripts are mostly from "diablo3" ideas I suggest this: Rift event: · 1-4 players queue, party or random. · Random Spawn of shrines, cursed chests. · ladder for ranking. · Random map zone with random monster spawn, etc. Im pretty sure you know how rifts work :p
  20. Aeronx

    MoveEvent [TFS 1.X] Waypoints like in Diablo

    There is a system like this one already. (Called D3 teleport or something like that) Works nearly like yours, but yours is way better condensed, code speaking. The configuration on this script is fast, and easy, and you dont need many repetitive files and different configs. I totally recommend...
Back
Top