• 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!

Search results

  1. HeberPcL

    Lua Skull System - Custom TFS 1.x

    I do not check the worldType in the setSkull () script. I believe that it is not possible to use skull in enforced type.
  2. HeberPcL

    Lua Skull System - Custom TFS 1.x

    I tested your code with worldType = "enforced" but it did not work.
  3. HeberPcL

    Lua Skull System - Custom TFS 1.x

    @Xeraphus, Well noted, but the worldType = "enforced" should not solve this? Another question, in PVP-Enforced the Black Skull should not be without its characteristics?
  4. HeberPcL

    Lua Skull System - Custom TFS 1.x

    Hey OtLanders, I'm making a server Enforced and would like to customize the Skull System, based on frags per storage and using all Skull Colors. { SKULL_YELLOW, SKULL_GREEN, SKULL_WHITE, SKULL_RED, SKULL_BLACK, SKULL_ORANGE } I tried using worldType = "pvp" and the setSkull() function works...
  5. HeberPcL

    Znote AAC 1.4 - [TFS 0.2.13+] & [TFS 0.3.6+/0.4]

    How to show youtube movie?
  6. HeberPcL

    Solved [tfs 1.0] Experience from killing higher level players

    @Ninja, I would like to add the experience to the 5 most that cause damage, could you help me? And congratulations for the script!
  7. HeberPcL

    Supreme Health Potion (Flask ID)

    Maybe same flask for Ultimate ?
  8. HeberPcL

    Supreme Health Potion (Flask ID)

    Search first https://otland.net/threads/tfs-1-2-new-potions.246981/#post-2406142
  9. HeberPcL

    Lua NO Drop Corpse - TFS 1.x

    Hey OTlands, I would like to disable the body after the death of the players in TFS 1.2, any ideas? Just editing source? Item* corpse = getCorpse(lastHitCreature, mostDamageCreature); if (corpse) { g_game.internalAddItem(tile, corpse, INDEX_WHEREEVER...
  10. HeberPcL

    [PROBLEM] How to change start player level in znote acc

    users.php // Custom Start $vocation_gains = Config('vocations_gain'); $start = Config('newCharacterData'); $base = Config('baseCharacterData'); if ($start['custom'] === true) { $voc = $vocation_gains[(int)$character_data['vocation']]; $health_ = ( $base['health'] + ($voc['hp'] *...
  11. HeberPcL

    Lua Outfit Color Change BLOCK - TFS 1.x

    Even with the false return you are still making the changes. And at the next login it will receive the changes.
  12. HeberPcL

    [PROBLEM] How to change start player level in znote acc

    @Znote Thank you for your help and appreciation for your contributions to the community.
  13. HeberPcL

    Lua Outfit Color Change BLOCK - TFS 1.x

    Your idea is excelende! But I believe that return false should not effect the change. @Colors and @Xeraphus Thanks!!!
  14. HeberPcL

    Lua Outfit Color Change BLOCK - TFS 1.x

    Even preventing a change TFS saves a change and not next Login the player receives a change. How do I fix this?
  15. HeberPcL

    [PROBLEM] How to change start player level in znote acc

    Hey @Znote, It's my first time with your AAC. Following his tip, I did the following; config.php // Start Level Needed $config['startCustom'] = true; $config['startLevel'] = 150; // Base Level Stats $config['baseLevel'] = 8; $config['baseHealth'] = 185; $config['baseMana'] = 40...
  16. HeberPcL

    Lua Outfit Color Change BLOCK - TFS 1.x

    No problem. I post code! Thanks!
  17. HeberPcL

    [PROBLEM] How to change start player level in znote acc

    It works well for starting at level 8, but in case it starts at level higher than 8 the player remains with the same life and mana. How to configure life and mana of different vocations and level greater than 8?
  18. HeberPcL

    Lua Outfit Color Change BLOCK - TFS 1.x

    function Creature:onChangeOutfit(outfit) local old = self:getOutfit() if ( (old.lookHead ~= outfit.lookHead) or (old.lookBody ~= outfit.lookBody) or (old.lookLegs ~= outfit.lookLegs) or (old.lookFeet ~= outfit.lookFeet) ) then self:sendCancelMessage("You cannot change your outfit...
Back
Top