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

    Tfs 1.3 Check slot

    i think the error are here; local leftHand = creature:getSlotItem(CONST_SLOT_LEFT) leftHand print "0"
  2. L

    Tfs 1.3 Check slot

    are good, but i dont know how do it correctly.
  3. L

    Tfs 1.3 Check slot

    Hi Steve, thanks for help. I think your cod has error. see the image .
  4. L

    Tfs 1.3 Check slot

    I'm trying to do a check while using a spell but I can not do it. It is a check if it is axe or sword. anyone can help? is tfs 1.3. function onCastSpell(creature, variant) local player = Player(creature) local leftHand = player:getSlotItem(CONST_SLOT_LEFT) local item =...
  5. L

    Doubt Outfit

    sorry, I meant that the problem of outfit exchange is in the female gender. My English is terrible.
  6. L

    Doubt Outfit

    @nokturno, I realized that you are only making mistakes with the female sex.
  7. L

    Doubt Outfit

    loguin.lua are, function onLogin(player) local loginStr = 'Welcome to ' .. configManager.getString(configKeys.SERVER_NAME) .. '!' if player:getLastLoginSaved() <= 0 then loginStr = loginStr .. ' Please choose your outfit.' player:sendOutfitWindow() else...
  8. L

    Doubt Outfit

    When I logged in with the sample it worked, the correct type appeared, but when I create a new character, it does not look like the sample,
  9. L

    Doubt Outfit

    Does anyone know why when I create a new character it is not coming with the outfit defined in the sample? I already unplug this outfit "136" in the otfit.xml file
  10. L

    TFS 1.2 Get Spec...2

    helped a lot, very well explained thanks again. Like+
  11. L

    TFS 1.2 Get Spec...2

    I have another similar question in this post, if this function creates an area (considering from me) how would I exclude myself from it? ex. I have 3 monsters 1 player and I in the area of magic, I would like me to exclude more than another player and the monsters...
  12. L

    TFS 1.2 Game.getSpectators

    Perfect is it, thanks StreamSide
  13. L

    TFS 1.2 Game.getSpectators

    Hi all, I have a doubt, if I want to identify only 3 targets (can be player or show or both), within that table below how would I do? local spectators = Game.getSpectators(Position(100, 100, 7), false, false, 5, 5, 5, 5) for i = 1, #spectators do local spectator = spectators...
  14. L

    Help with Action Script TFS 1.2

    Perfect, I changed some things according to your file and it worked. thank you very much.
  15. L

    Help with Action Script TFS 1.2

    Well, maybe i need change my source, this vanilla source is for tfs 1.2? if yes u have link for download it?
  16. L

    Help with Action Script TFS 1.2

    @mackerel i get same error. In fact the error does not appear in the notepad but also does not learn the spell. I think about one error this function in the source. Omg.
  17. L

    Help with Action Script TFS 1.2

    Hi all, I have one action with this use and why this script dont work? (TFS 1.2) function onUse(player, item, fromPosition, itemEx, toPosition) player:canLearnSpell(Energy Wave) player:learnSpell(Energy Wave) player:getPosition():sendMagicEffect(CONST_ME_MAGIC_BLUE) return true...
  18. L

    Help with script tfs 1.2

    Sorry, my english is terrible. "puts 2 more in the elemental damage when using any item" = add +2 damage (elemental type) in the item (x). For example, Fire sword atk 42, later to use the item = Fire sowrd atk 44.
  19. L

    Help with script tfs 1.2

    Hi guys, im try make one simple script to put 2 more in the elemental damage when using any item. I tried every bit more and I'm not getting anyone can help? is tfs 1.2.
Back
Top