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

    [TFS 1.4] Add conditions while on a "training" tile

    The script works. I was just making a note to myself that removeCondition(condition) will not remove a condition. removeCondition(CONDITION_ATTRIBUTES, condition) was the only way I could remove the conditions.
  2. G

    [TFS 1.4] Display god/player commands with talkaction

    Just a script to display god /commands and player !commands. Saw another one but it had to be formatted in a weird way. < words= or something like that. This one can be formatted anyway you like. You'll see what I mean when we add the files below. Formatted may not be the right word. 🤷‍♂️...
  3. G

    OTClient NPC addons list with numbers please

    I'm not 100% sure what you were asking but I think this it. <look type="153" head="78" body="88" legs="0" feet="88" addons="0"/><!-- 0 --> <look type="153" head="78" body="88" legs="0" feet="88" addons="1"/><!-- 1st --> <look type="153" head="78" body="88" legs="0" feet="88" addons="2"/><!--...
  4. G

    TFS 1.X+ Question about reserved storages in storages.lua

    TFS 1.4 and 1.5 for sure in data/lib/core/storages.lua Are these predetermined storages set to the player, can they be set to the player to unlock an outfit? if so how? if not, why are there 10,000,000 reserved storages for outfits and how are they used by the game? Also, what are...
  5. G

    [TFS 1.4 - RevScript] Yalahar Mechanisms

    Tested on TFS 1.4 data/scripts/actions local mechs = { [7001] = {toPos={x=2708, y=1015, z=7}, text="Entered Ghouls."}, [7002] = {toPos={x=2701, y=1015, z=7}, text="Entered Skeletons."}, [7003] = {toPos={x=2657, y=1098, z=5}, text="Entered the Arena Quarter."}, [7004] = {toPos={x=2662, y=1098...
  6. G

    [TFS 1.4] Boosted Creatures

    this is caused when the same monster is registered more than once, with same event name. The reason it started spamming was the fact the rats were respawing. Spawing them in with /m resulted in instant console spam. I "fixed" this by breaking the BoostedDeath into the 3 seperate boosts...
  7. G

    [TFS 1.4] Add conditions while on a "training" tile

    Whilst trying to figure out the RevScripts I did a thing, useless but a thing. :D Adds conditions onStepIn and remove conditions onStepOut. using aid or item id if prefer, I left the code in for it. data/scripts/movements local critHitConfig = { CRIT_HIT_CHANCE = 50, CRIT_HIT_AMOUNT = 500...
  8. G

    Tibia OtLand IP Changer

    Anyone have an idea why my otland ipchanger is trying to access a web address in the czech republic? Malwarebytes is blocking it. for good reason since I'm located in the U.S. and trying to connect to my own server also located in the U.S. 2013/12/15 13:57:46 -0500 THAWADE-PC ThaWade...
  9. G

    Wont show loot in log or screen

    The same thing happened to my Mystic Spirit v0.2.14. Did you find the cause of it? Also shared experience stopped working around the same time.
  10. G

    Problem with uniform server

    Grab this one on sourceforge. It's above the Coral's. works nicely and doesn't need installed. I don't know how well it will hold up to a heavy load though as I only have 4 people tops on my private server. Looking for the latest version? Download 11_0_2_ZeroXI.exe (24.0 MB) <-- that link...
  11. G

    Solved Could use some help making a wateringcan.lua

    Works. Thank you very much. EDIT: Thanks for the help Limos, if you're wondering how it turned out here it is :) pretty massive but works great. local transform = { [7655] = 7670, [7665] = 7670, [7673] = 7670, [7670] = 7678 } local firstBloom = {7680, 7682, 7684, 7686, 9982, 9986}...
  12. G

    Solved Could use some help making a wateringcan.lua

    I want this doTransformItem(getThingfromPos(toPosition).uid, firstBloom[math.random(4)]) to pick a random ID from here local firstBloom = { [1] = {7680}, [2] = {7682}, [3] = {7684}, [4] = {7686} } But instead of doing that it just changes from 7670 to 7678 to 7670 to 7678...... on every use...
  13. G

    Solved Could use some help making a wateringcan.lua

    Could someone please tell me what I'm doing wrong? = Bumpin'!
  14. G

    Solved Could use some help making a wateringcan.lua

    Since I couldn't find a watering can that works like Tibia I thought I would try and make a script for it.But I've run into a problem. When it gets to my third dotransformitem line it just goes back to the second one so it ends up just making pot id 7670 and 7678 over and over again. There are...
  15. G

    Manarune

    min = 'level * 1 + maglv * 7', max = 'level * 1 + maglv * 9' min = level times 1 plus magic level times 7 level 20 x 1 = 20 magic level 40 x 7 = 280 20 + 280 = 300 min = 300 max = level times 1 plus magic level times 9 level 20 x 1 = 20 magic level 40 x 9 = 360 20 + 360 = 380 max = 380 So if...
  16. G

    Solved Grizzly Adams TFS 0.3.6 try change for 0.2.14. not working.

    Figured it out, finally. So incase anyone else goes searching. The fix is below. This <event type="kill" name="KillingInTheNameOf" event="script" value="killinginthenameof.lua"/> Needs to be this <event type="kill" name="KillingInTheNameOf" script="killinginthenameof.lua"/>
  17. G

    Solved Grizzly Adams TFS 0.3.6 try change for 0.2.14. not working.

    Tried this one also http://otland.net/threads/grizzly-adams-killing-in-the-name-of-quest-all-tasks-more-real-tibia.159150/ gave me console error [22/07/2013 10:28:53] Lua Script Error: [Npc interface] [22/11/2013 10:28:53] data/npc/scripts/KillingInTheNameOf.lua:onCreatureSay [22/11/2013...
  18. G

    Solved Grizzly Adams TFS 0.3.6 try change for 0.2.14. not working.

    I have a Grizzly Adams npc that worked great on tfs 0.3.6. I thought why not move it over to mystic spirit 0.2.14 when I decided to start fooling with my OT again. The reason I changed was because the server I have for tfs 0.3.6 used client 8.54 and with 0.2.14 I get to use client 9.60 and alot...
  19. G

    Solved Need some advice on a line in quest.lua

    :) I keep track of them in a wordpad document. I have a horrible memory :)
  20. G

    Solved Need some advice on a line in quest.lua

    Oh yeah I know that but if I get all willy nilly with my uid's I'll forget which one i've used then i'll run into the blasted duplicate unique id error in the server console. which is slightly annoying to me. :) However using my storageid from my system.lua worked. I don't know why I didn't...
Back
Top