• 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. Zuma Master

    Lua Help with War OTS

    Haha I forgot to seal off the tables, how bad of me. Try it now.
  2. Zuma Master

    Bless when not in pz

    function onThink(interval) local storage = 9725 -- change to any empty storage in your server if this does not work. for _, cid in ipairs(getPlayersOnline()) do if getTilePzInfo(getThingPos(cid)) and getPlayerStorageValue(cid, storage) <= 0 then setPlayerStorageValue(cid, storage, 1) end for i =...
  3. Zuma Master

    Bless when not in pz

    function onThink(interval) local storage = 9725 -- change to any empty storage in your server if this does not work. for _, cid in ipairs(getPlayersOnline()) do if getTilePzInfo(getThingPos(cid)) then setPlayerStorageValue(cid, storage, 1) end for i =...
  4. Zuma Master

    Lua Help with War OTS

    login : registerCreatureEvent(cid, "FragReward") xml : <event type="kill" name="Reward" script="fragreward.lua"/> Data/creaturescripts/login.lua: local templepositions = { {x=,y=,z=}, {x=,y=,z=} } local areas = { {frompos = {x=,y=,z=}, topos = {x=,y=,z=}}, {frompos = {x=,y=,z=}...
  5. Zuma Master

    Lua Drop items on death

    No, you should add that line to data/creaturescripts/scripts/login.lua
  6. Zuma Master

    Lua Items - death - lose

    He meant login.lua. (fixed for confusion purposes.)
  7. Zuma Master

    Feature [CreatureEvent] OnSpawn(cid)

    Please stop doing 1 year necros and post this type of problem in Support.
  8. Zuma Master

    [Tutorial] How To Creat Balanced Spells

    In most cases it's much easier to use a simple Spellcreator. Search it up.
  9. Zuma Master

    Lua Premium shop wont sell certain items.

    I am 90% sure the problem is in this if t[item] and getAccountPoints(cid) < t[item] then but I cannot really identify what could go wrong with this line... I'll think about it and reply if no one else replies before me. EDIT: I'm sure you know about having to add values for your new itemid...
  10. Zuma Master

    Lua Premium shop wont sell certain items.

    What AAC do you use? I may be wrong but, as far as I can remember, -- some -- shop systems like these actually use an item.otb parser, but I may be wrong and hallucinating. EDIT: Oh wait how dumb of me, that looks like a LUA system xD. Let me read through it.
  11. Zuma Master

    [OtLand Official Mapping Competition] August sign up

    I don't really like the theme of this one. (Atleast not nearly as much as the last one -- AN ABSOLUTE EPIC THEME, I f**king loved that one) Although I see the massive amount of people wanting to join (34), so I can probably guess (based on the theme) we will be getting quite a lot of...
  12. Zuma Master

    Gamemaster Searching serious gamemasters to RoHaN-ots!

    I lol'd. Very extremely. GG WP.
  13. Zuma Master

    Rooks Tale

    Well the idea is quite amusing, perhaps I'll give it a try if I have some free time.
  14. Zuma Master

    Utevo REs [Only 1 monster with same name]

    I can make it working and all but there would be a few problems. Here's a list: 1- You will have to make a list of all the monsters that cannot be summoned (I'll add a tutorial inside the script to help with this) 2- You will either make a constant mana value for all monsters that can be...
  15. Zuma Master

    [Request] Offline Training 8.6

    It works exactly the same except for the offline training bar and the 9.6 statues.
  16. Zuma Master

    How popular are you?

    A good 7~/10. Seen you around a lot.
  17. Zuma Master

    [Request] Offline Training 8.6

    phuq, you beat me to it :P.
  18. Zuma Master

    Utevo REs [Only 1 monster with same name]

    Yeah this is only doable in the sources. (Unless someone thinks it's funny to try and get every single value of mana and required level of every single summonable monster, and every single non-summonable monster in the "utevo res" spell... If that happens, I'll be glad to help you)
  19. Zuma Master

    Utevo REs [Only 1 monster with same name]

    Oh and by the way, my previous script will work the same for all vocations that are registered in the spells.xml part. If you want me to limit it to Druids only, feel free to ask me to. (your request isn't exactly that obvious so I have to ask.)
  20. Zuma Master

    Utevo REs [Only 1 monster with same name]

    Go to spells.xml, search for the line with the summon spell, change the event="function" to event="script", change the value to "summon.lua". Now, go to spells/scripts, create a new lua file, name it "summon.lua" (without the quotation marks of course) and throw this script inside of it...
Back
Top