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

    Open server from my computer

    I use linux I don't have an anti virus Using the command on chat shows: 21:39 Server has been opened successfully. When i try to connect it shows that PLease wait Connecting to login server... After a long time Connection time out. Either your network is failing or the server is...
  2. samandriel

    Open server from my computer

    What do i need to open to host a server from my home? Site/OT was not working for my friends so i open ports: 7171 and 80 With 80 website starts to work, but even with 7171 my friends couldn't connect... What else do i need to do? I also put my external ip on config.lua on ip = " --- edit...
  3. samandriel

    TFS 0.X Auction system + upgrade system

    The upgrade system is on the other topic, but bring it to here... --PERFECT UPGRADE SYSTEM UpgradeHandler = { nameLv = { [1] = "[R]", [2] = "[G]", [3] = "[B]", [4] = "[W]", [5] = "[D]", }, completeNameLv = { [1] = "red", [2]...
  4. samandriel

    TFS 0.X Auction system + upgrade system

    I got this upgrade system from @jacqen and @zabuzo TFS 0.X - Caracter [] bug on upgrade system (https://otland.net/threads/caracter-bug-on-upgrade-system.273485/#post-2634658) And i want to make it works with my auction system (trade off / market) script I'm already manage to store the...
  5. samandriel

    TFS 0.X How to set setPlayerStorageValue and doPlayerSetExtraAttackSpeed temporally?

    How to set setPlayerStorageValue and doPlayerSetExtraAttackSpeed temporally? I want to set 2 stats temporally like utito tempo.lua local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local...
  6. samandriel

    TFS 0.X boost spell hp/mp/storage

    It works!!!!! Thank you!
  7. samandriel

    TFS 0.X boost spell hp/mp/storage

    Did u know how to setandadd HP I tried this, but not work local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_ATTRIBUTES)...
  8. samandriel

    TFS 0.X boost spell hp/mp/storage

    50% less hp 50% more mp or 50% more hp 50% less mp i just wanna know how to set this states temporally...
  9. samandriel

    TFS 0.X How to set stats temporally

    I want to set 4 stats (-50%hp, +50%mp, +atkspeed, storage) Thats how to set: 1 hp to -50% hp deBuff = getCreatureMaxHealth(cid) setCreatureMaxHealth(cid, deBuff) 2 mp to +50% mp buff = getCreatureMana(cid) setCreatureMaxMana(cid, buff) 3 +atk speed (Lua Function -...
  10. samandriel

    TFS 0.X boost spell hp/mp/storage

    I don't get local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_HASTE) setConditionParam(condition, CONDITION_PARAM_TICKS, 33000)...
  11. samandriel

    TFS 0.X boost spell hp/mp/storage

    there is a setCreatureMaxHealth(cid, health) and setCreatureMaxMana(cid, mana) i could get take the % by getCreatureMaxHealth(cid) and getCreatureMana(cid) i would like a way to make it, but if anyone send a script would be amazing too my main problem isn't deal with max health, its set it...
  12. samandriel

    TFS 0.X boost spell hp/mp/storage

    How to create a boost spell (like utito tempo) who sets temporally player hp to 50%, mp to 50% but set a storage for this time? Like utito tempo local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat...
  13. samandriel

    TFS 0.X How to create a buff who change attackspeed temporally?

    TYYYY <3 but guys, how to use this as a buff spell (srry its my first buff spell) local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) doPlayerSetExtraAttackSpeed(cid, 400) -- atk speed =...
  14. samandriel

    TFS 0.X How to create a buff who change attackspeed temporally?

    what are u mean? this is the utito tempo script local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_ATTRIBUTES)...
Back
Top