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

    100% custom world project, first attempt!

    Well here's my first attempt at mapping! RPG/Fantasy style map.
  2. D

    Lua New currency (GOLD NUGGET) script

    tfs 0.3.6 local coins = { [ITEM_GOLD_COIN] = { to = ITEM_PLATINUM_COIN, effect = TEXTCOLOR_YELLOW }, [ITEM_PLATINUM_COIN] = { from = ITEM_GOLD_COIN, to = ITEM_CRYSTAL_COIN, effect = TEXTCOLOR_LIGHTBLUE }, [ITEM_CRYSTAL_COIN] = { from =...
  3. D

    NPC FURNITURE SELLER (Builder, requires supplies)

    Currently sells: Big table, red and green cushioned chairs, red/green/blue/white/yellow/purple tapestry. Required items are Wood (5901) and pieces of cloth matching the tapestry or chair. in \npc add Bob the builder.xml <?xml version="1.0" encoding="UTF-8"?> <npc name="Bob the builder"...
  4. D

    Have the NPC remove 2 different items?

    SOLVED
  5. D

    Make monster throw an item on the ground at you?

    Is there an <attacks> that throws a specific item ID on the ground under the target, like a demon throw's a fire field <attack name="firefield" interval="1000" chance="45" range="7" radius="1" target="1"> <attribute key="shootEffect" value="fire"/> </attack>
  6. D

    Open my spawn.xml only to find this:

    NUL NUL NUL ... goes on for a while.
  7. D

    Loot rate %? 0.3.6

    My loot rate is set at 2.0 , so what would ~~chance="1000" , or chance="2000"~~ equate to in %?
  8. D

    +HP in items.xml?

    Is there a way to add health to an item in items.xml? (When the item is equipped, your maximum health is increased) Example: <item id="1998" article="a" name="godly bp of distance"> <attribute key="weight" value="800" /> <attribute key="containerSize" value="26" />...
  9. D

    Use item (ID:9473) to add health to any equipable item?

    0.3.6 Would it be possible for a quick simple easy script to upgrade items (adding health to them) so when the player equips this item, their total HP is higher... none of the scripts on this forum work Example:~ Magic Sword +55hp
  10. D

    TFS 0.3.6 item upgrades, suitable script?

    I've been through many scripts here on OTLand, but can't seem to find one that works properly (Item upgrades including health and damage, and /or attackspeed... Can somebody point me in the right direction please? :) TFS 0.3.6 8.6
  11. D

    Text over portals?

    I would like a script that makes constant text on a certain X/Y/Z, example ''TRAINERS'' over the portal leading to trainers. Is this possible? TFS 0.3.6 ~ 8.6
  12. D

    Possibility to change blood splash text?

    The red damage when you receive damage, is it possible to chcange the colors to something else? Dark yellow, orange, brown...?
  13. D

    NPC that accepts items as a for of payment (id:9020)

    I'd like an NPC that sells this item (2296) and only accepts 100x itemid:9020 as form of payment
  14. D

    Lua Small script modification #2

    I changed the script so it can only upgrade an item once, and it will give this result: ORIGINAL: MODIFIED: /\ Removed and replaced by The problem is, when the script was originally giving items +1 status, it wouldnt let me enchant it a second time because I set the maximum number to 1...
  15. D

    Lua Small modification

    I would like to make it so the upgrade's name is in the item's description, and not in it's name, eg: What I currently have: What I want: setItemName(itemEx.uid, getItemNameById(itemEx.itemid)..'UPGRADED'..slot) addEvent(doPlayerSendTextMessage,500,cid, 24,"Your item has been enchanted!")...
  16. D

    Lua Item upgrade script (Needs slight modification)

    I'm using this script, and basically I changed the line (added attackspeed). The weapon upgrades with attackspeed, but how can I make the attackspeed visible on item description? Example of what I'd want: --- Perfect refine system by Mock the bear (MTB). --- Email: [email protected]...
  17. D

    Error when connecting to my server?

    TFS 0.3.6 V8.2 When I try to connect to my server via my ip and port 7171 , it crashes my client and I get this error;
  18. D

    Item bonuses don't work?

    [cryingdamson 0.3.6 V8.2 Let's take for example, my bag (TIBIA 8.6) Inside ITEMS.XML Item ingame: When I equip the bag, I don't get any of the bonuses. I relogged and it didn't fix anything.
  19. D

    Item Upgrades 8.6 (cryingdamson 0.3.6 V8.2)

    Can anybody link me to a working item upgrade system for (cryingdamson 0.3.6 V8.2)? I've been searching around, and every script I find comes up with errors and fails to launch! Any help really appreciated
  20. D

    Easy question... creating a new backpack/container

    I took the item 9076 and added it to items.xml (wasn't in the list) <item id="9076" article="a" name="greyish bag"> <attribute key="weight" value="800" /> <attribute key="containerSize" value="8" /> <attribute key="slotType" value="backpack" /> </item> In...
Back
Top