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

    TFS 1.2 Blessed

    Hello guys, I implemented the script below, but it doesn't work properly here. In this part of adding the blessing "player: addBlessing (1)" despite the script does not give errors the player also does not receive the blessing...
  2. L

    TFS 1.2 Cap attribute

    Could someone help me put the "add Cap" as an attribute in the source? Example of the attribute in the item <attribute key="cap" value="20" /> (when equipping the item he gains 20 in the total cap)
  3. L

    TFS 1.2 Task Error

    I made a comment on this topic below. I don't know if I did it in the right field. https://otland.net/threads/advanced-task-npc.266598/ Would I like a button option to return to choose the initial tasks would also be good. Could anyone help?
  4. L

    TFS 1.2 Script

    How would i do for this situation? If I throw 1 item (any) on the floor (pos x, x, x) and then throw another item (any) on top of item 1 does it become another item x? It would have to be automatic like movements, but I believe it’s not here when it comes to items.
  5. L

    TFS 1.2 Movements

    Hello guys, I have this script (movements) that when equipping a backpack provides player 6 in the total cap. It works well but whenever I relog add 2 to the total cap because it happens? I simply want to add 6 to the total cap and when I remove the bp, return the normal cap. The numbers "200"...
  6. L

    TFS 1.2 add Cap on item

    How do I add cap on the item. Ex. When equipping a backpack the player gains 200 cap. and when you remove backpack the cap it goes back to normal. I tried using the "weapons" script player:setCapacity(player:getCapacity() + 200) but dont work. I think because it is not a weapon itself I would...
  7. L

    TFS 1.2 Spell Buff Weapon

    Is it difficult to make a spell to buff weapons? Ex. 20% of the damage of the equipped weapon will be extra poison damage. Can anyone help to develop this?
  8. L

    TFS 1.2 NPC Aldo

    Does anyone know why this error is happening when i buy an item from this npc? the .xml file is this <?xml version="1.0" encoding="UTF-8"?> <npc name="Aldo" script="Aldo.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100" /> <look type="128" head="40" body="37"...
  9. L

    TFS 1.2 Npc Error.

    Anyone can help me? I have this error for deposit gold. I also went to buy an item from npc Aldo and gave this error. Do I need to rewrite any missing functions? Someone must have removed something from the server that I use as a base. I would like help to solve the problem and not change...
  10. L

    Tfs 1.2 Custom items look

    Can i change the color of this text? how would i do? 1577629528 I'd like to do a customization like this below the Cyntara server. Is very difficult?
  11. L

    TFS 1.2 Summon Spell

    Would it be possible in the spell a monster to summon him and hit other targets without hitting the person who summoned him and without adding him master? Example. I summon a rat and he hits the other targets but not me without me sending attack.
  12. L

    TFS 1.2 Text Screen

    how i can represent the text whenever regenerate using food like the picture?
  13. L

    TFS 1.2 Move Item For bp

    Do you have any function to move the equipped item to bp? Ex. I use a spell that makes the equipped helmet go to bp. Can you do that?
  14. L

    TFS 1.2 Spell Check Pos

    How could I check if the player (selftarget) is in the same position after 2 and 5 seconds?
  15. L

    TFS 1.2 Walk function

    Is there any function to check if the player is walking?
  16. L

    Tfs. 1.2 getAttack()

    Guys, how do I get the physical attack of the sword for example after it has been added Attribute. I'm using it this way below but it takes the base item as a reference. function onCastSpell(creature, var) local player = Player(creature) local leftHand2 =...
  17. L

    TFS 1.2 Get Element Damage

    Anyone know why dont work my spell? I am trying to add more elemental damage to the item. function onCastSpell(creature, var) local player = Player(creature) local leftHand = player:getSlotItem(CONST_SLOT_LEFT) local leftHand2 =...
  18. L

    TFS 1.2 function doAreaCombatCondition

    I am trying to use this function "doAreaCombatCondition(cid, pos, area, condition, effect)" is crashing the server. Have another similar function for add Condition in area? I thought of selecting the creature by Tile and then add for "doAddCondition(cid, condition)" but dont work.
  19. L

    TFS 1.2 block Spell in pz

    Anyone know how to put this spell to not use it in pz area? https://otland.net/threads/tfs-1-2-ultimate-eplosion-poison-storm.243497/
  20. L

    Tfs 1.2 LoopCount Error

    Hi guys, I make one spell script with LoopCount but if select the target and deselect, the loop get error because no have target more. How can I fix this part? Spell. local function sendHealingEffect(cid, position, loopCount) local player = Player(cid) local alvo = player:getTarget()...
Back
Top