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

    Lua Atrribute Tags in 1.0

    Anybody can tell me what they are or direct me to a thread, because i found a thread which i thought had them, but when i added <extraatk> tag to my item the server refused to start.
  2. B

    Lua Learning Spells and Action Teaching.

    yeah thats the thing i want to know what the actual functions are...
  3. B

    Change the MagicDamage?

    If you're willing to edit every one of your spells i can show you how to make vocation based multiplier
  4. B

    Lua Learning Spells and Action Teaching.

    Okay sure, however i want players to speak to npcs i kinda dont want that whole tibia interface things. My NPC will probably go something like this, Player: Hi NPC: Hi what can I do for you today? Player: <!-- Keyword fire bomb --> <<checks if fire strike has been bought, checks if storageid...
  5. B

    Linux My Server Down! Tfs 0.3.7 Rev5916

    I think he means that in ubuntu his process keeps getting killed before he can read the console for any errors, so he is asking if there are any scripts around that forces the console to stay open even on crash instead of an instant close so he can find out the cause.
  6. B

    Lua Learning Spells and Action Teaching.

    A little bump? =D
  7. B

    I will balance vocations with spells and weapons and more but how?

    I always feel that vocations don't need to be balanced, people who play druids should concentrate on healing, sorcs on being glass AOE cannons, paladins should be a glass single target cannon, and knights should just focus on tanking. Having every vocation be able to do everything just makes...
  8. B

    Solved getCreatureOutfit not working inside of my npc

    I think its because of this code if getCreatureOutfit(cid).lookType ~= 209 or (getPlayerStorageValue(cid,45023) ~= 2) then selfSay("Only necromancers are permitted inside the sanctum!", cid) return false Meaning that as long as your player doesn't look that way it will prompt this...
  9. B

    Solved Comparison Operators

    yeah ~= means does not equal this guide i saw the other day seems pretty good maybe you wanna read it. otland.net/threads/scripting-guide.74030/
  10. B

    Lua Learning Spells and Action Teaching.

    Well just like normal tibia where spells aren't just given out the moment you login you can use em all. So like flame strike for example, however what i meant by conditional is i know now more advanced functions are put in place like you know for example in shops there is the...
  11. B

    Lua Learning Spells and Action Teaching.

    Hello once again support forum, Could anybody show me in 1.0 how an NPC who teaches spells would look like and if you have one maybe with if else conditions already because i want it to be a conditional spell to be taught. Also, if i were to want a spell to be a item reward, chest reward etc...
  12. B

    Lua Talkactions Help

    Hey thanks for this, it really helps! Just one more thing though, if i just want a single param how would that work?
  13. B

    Lua Talkactions Help

    Hi, I would like to know how talkaction params work. I've been trying to look through talkaction scripts and I can't quite get how you specify the amount of params you put in and where you would then proceed to filter them into doing different things. I'm not going to request the script itself...
  14. B

    New OTItemEditor

    Any chance of the Server ID being possible to edit?
  15. B

    Lua Actionscript local function

    Thanks for the quick response! Oh yeah i also forgot to ask, how do i call the function? because i've only seen it on creaturescripts so far and those use a return addEvent also will this result in an increment of storageid 40104? player:getStorageValue(40104) +1 or should i be using...
  16. B

    Lua Actionscript local function

    I've seen local functions in certain scripts around, and i understand how they work in java and whatnot i'm just not sure how they work in lua. Must they be at the start before the main function? and the parameters inside are mine to choose as well correct? Damn i'm making quite a few new...
  17. B

    Disable MC

    Thanks, in the end i decided to go with local warnings = 3 -- how many times a player will get MC warning before he gets kicked local interval = 5 -- how many seconds between each MC warning local function mcKick(player, warnings) if warnings ~= 0 then...
  18. B

    Disable MC

    Hi, Is there anyway in 1.0 to disable multi clients? Like not allowing two of the same ip to log into the game? I'm pretty sure it's not in config but it seems like something that would have already been done somewhere. Thanks!
  19. B

    Solved Spells and actionids

    Got it! Thanks for the help
  20. B

    Solved Spells and actionids

    Sorry I think I may not have been specific enough, i'm not using an item here. I mean in the spell itself ultimate healing.lua itself, would it be possible to add an actionid increment in the spell. Sorry i feel really stupid right now i kept saying actionid i meant storageid
Back
Top