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

    Solved Problem with NPS whos sell bless.

    Blesser.xml : <?xml version="1.0" encoding="UTF-8"?> <npc name="Blesser" script="data/npc/scripts/blesser.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="298"/> </npc> Blesse.lua : local keywordHandler = KeywordHandler:new() local npcHandler =...
  2. M

    Rme quest box - little bug.

    Hi! When i use chest with id 1740 i cant add content : But when i use other chest ,(other position) i have normal content : How i can repair it ?
  3. M

    Tibia graphics.

    Hi ! Server on Tibia Graphics is full legal ? If i would use tibia.spr for example to create new game it would be legal ? Or i break the law then ?
  4. M

    Annihilator quest doesnt work!

    I have it : ani_solo.lua : local config = { daily = "no", -- allow only one enter per day? (like in global Tibia) level = 100, storage = 11014 } local playerPosition = { {x = 974, y = 894, z = 8} } local newPosition = { {x = 541, y = 827, z = 7} } config.daily =...
  5. M

    Solved Double spells NPC

    HI ! My npc sell me 2 x the same item as i check on trade. NPC.xml : <?xml version="1.0" encoding="UTF-8"?> <npc name="Senzu Seller" script="data/npc/scripts/potion seller.lua" walkinterval="2000" floorchange="0"> <health now="150" max="150"/> <look type="154"/> <parameters> <parameter...
  6. M

    Solved 3 quests and 1 you can take.

    Hi I want to do quest with 3 option to choose . I have it : (but it doesn't work) local itactionid = { 11011, 11012, 11013 } local itemss = { 2433, --saiyan power 2190, --ki blast 2191 --makankosappo } local storagge = 11011 function onUse(cid, item, frompos, item2, topos) if item.uid ==...
  7. M

    Solved Create new attack name for monster.

    Hi ! It's me again ;) I want to monster shot with my 13 attack effect : <attack name="13" interval="1500" chance="100" range="4" min="1400" max="2000"/> But i have error - My TFS don't know what is it attack name ="13" . How i can do thas?
  8. M

    Solved Decay monsters corpse.

    Hi ! I have monster - wolf.xml : <?xml version="1.0" encoding="UTF-8"?> <monster name="Wolf" nameDescription="a wolf" race="blood" experience="3000" speed="195" manacost="255"> <health now="100" max="100"/> <look type="27" corpse="2827"/> <targetchange interval="2000" chance="0"/>...
  9. M

    HealthGain and manaGain description

    Hi ;) I would like HealthGain and manaGain was shown on screan when you click for him. I dont use this : <attribute key="description" value="100 hp and 100 ki regeneration per second."/> PLease help.
  10. M

    Solved Vocation's corpose

    Hi ! I have 60 Vocation i would like ,then some have special corpose. Where and what i must change in order to achive it. Please help me .
  11. M

    Page with spr

    Hi ! Somebody know any page with tibia spr ? I search it , but i cant find this . Please help me .
  12. M

    Solved Item who add mana and health after remove.

    Hi! I have item who add mana and health after remove. How i can repair it ? I want , that it give me mana if i have it dress. Code that item (items.xml) : <item id="7886" article="a" name="Special C16 Boots"> <attribute key="weight" value="800"/> <attribute key="slotType"...
  13. M

    Solved Item which add 1000hp to maximum hp.

    Hi!. I want do item which add xxx point HP . No regenerate , but add , to max Hp. For example : Person have 60 k hp , when he equip that item he have 70k hp , but when he dequip that item he have again 60 k hp. Please help me!
  14. M

    Solved Twice attack Item.

    Hi. I want crate a Sword which attack double. But i dont know how i can start. Please help me.
  15. M

    Items.xml - VALUE

    Hi . I saw that http://otland.net/threads/items-xml-item-attributes-list.199957/ , but i dont know for example as value i can write on slottype - value :<attribute key="slotType" value="two-handed"/> I need list of value what i can write there.
  16. M

    Solved Function onKill dont work.

    I kill enemy player and i dont give soul and i dont give Message : function onKill(cid, target, lastHit) if isPlayer(target) == TRUE and isPlayer(cid) == TRUE then doPlayerAddSoul(cid, 5) doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, "+5 soul for kill " ...
  17. M

    Solved Maximum items on RME mapeditor.

    Hi ! I have 11426 items in items.otb - i saw it in my OTItem Editor ,but my RME Map editor don't see my last added Item . Why ? I must add new item to RME to some file ? Please help me !
  18. M

    Check a maximum soul.

    Welcome ! I want check Maximum number soul player , because i want give him 5 points and i don't want give him to much this point. Example : Player have maximum soul = 100 soulmax="100" *With Vocation.xml I don't want give him 105 that points. Please help me .:)
  19. M

    Tfs 0.3.6

    Welcome! I need help about all function which i can use for create my Open Tibia Server. Example function : function onKill(cid, target, lastHit)
Back
Top