• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. xYzPrototype

    Solved {{0.3.6}}!GoHouse Command not working?

    Hello again, so I found this gohouse command here, tweaked it a bit to remove some affects I didn't want, and it's not working. It's never worked, all it does is Teleport you to the same tile that the player is standing and says 'Bye'. Can someone diagnose the problem in my script please? I...
  2. xYzPrototype

    Upgrading item? ((0.3.6))

    You're a hero bro, thank you so much :)
  3. xYzPrototype

    Upgrading item? ((0.3.6))

    Hello, In my donation system there are tier 1 items and tier 2 items, and I need an item that when used with a tier 1 donator item, transforms it into the tier 2 donator item and destroys the upgrading object. I have some ideas on how to make the script, but how do I make sure that the tier 1...
  4. xYzPrototype

    Solved {0.3.6} The Forgotten Server; Can't use scythe on wheat when player is on top of tile

    local JUNGLE_GRASS = {2781, 3984, 2737, 2738} for g = 1, #JUNGLE_GRASS do local thing = getTileItemById(toPosition, JUNGLE_GRASS[g]).uid if thing > 0 then doTransformItem(thing, JUNGLE_GRASS[g] + 1) doDecayItem(thing) return true...
  5. xYzPrototype

    Solved {0.3.6} The Forgotten Server; Can't use scythe on wheat when player is on top of tile

    Okay :) So I have a watering can that regrows jungle grass to trap monsters and stuff, but I have the same problem as with the scythe, I cannot use it on the grass when a player or monster is standing there. I followed your advice but I cannot crack it, could you give me a hand please? This is...
  6. xYzPrototype

    Solved {0.3.6} The Forgotten Server; Can't use scythe on wheat when player is on top of tile

    This is my script at present. function onUse(cid, item, fromPosition, itemEx, toPosition) if(itemEx.itemid == 2739) then doTransformItem(itemEx.uid, 2737) doCreateItem(2694, 1, toPosition) doDecayItem(itemEx.uid) return true end return destroyItem(cid...
  7. xYzPrototype

    Solved {0.3.6} The Forgotten Server; Can't use scythe on wheat when player is on top of tile

    Hi again, I have this problem where players cannot use scythe or any other tools on tiles below players. I think this is the default option, but does anyone know how to change it so I can use scythe on tile below player? Thanks
  8. xYzPrototype

    Lua {8.6} The Forgotten Server 0.3.6; Really fast healing spell?

    Don't worry I've fixed it! :D :D
  9. xYzPrototype

    Lua {8.6} The Forgotten Server 0.3.6; Really fast healing spell?

    It works now :D Thank you so much man, much appreciated. EDITED: Everything works fine bro, but when I cast the spell it doesn't come up and there is no cool-down on it. Basically it's like a rune you can spam atm if you get what I mean xD
  10. xYzPrototype

    Lua {8.6} The Forgotten Server 0.3.6; Really fast healing spell?

    Okay no problem. It's so annoying because I am studying this at Uni at the end of this academic year, and so the only experience I have in this is what I've gathered working on my server, which is next to nothing :( I really want to make an awesome server, but I rely too much on people making...
  11. xYzPrototype

    Question about vocations.xml

    Okay, yours is much different to mine, you must be using a different version. I'm not 100% sure what clientID is but it might be each of the vocation routes like you said; but what I would do is make a backup copy of your server and play around with the values and see what happens xD
  12. xYzPrototype

    Question about vocations.xml

    What server are you using for a start? Why do you need to change them? I have made second promotions and all you need is: fromvoc="NUMBER" Inside your vocation
  13. xYzPrototype

    Lua {8.6} The Forgotten Server 0.3.6; Really fast healing spell?

    Yeah I know the basics haha just it's a new thing for me haha.. So like this? local i = 5 addEvent("Exura Tempo Sio", 1*1000, cid, i, ...) if i > 0 then addEvent("yourHealFunction", 1*1000, cid, i, ...) end local combat = createCombatObject() local getPlayerLevel setCombatParam(combat...
  14. xYzPrototype

    Lua {8.6} The Forgotten Server 0.3.6; Really fast healing spell?

    Thanks, but where do I add this to.. CreatureScripts?
  15. xYzPrototype

    Lua {8.6} The Forgotten Server 0.3.6; Really fast healing spell?

    Hello, I'm new to making servers/scripting and all the rest and have just made an account... I am looking for a healing spell which heals the target 5x every second. For example, the spell Exura Sio"FRIEND" only heals the target once, I am looking for a spell that heals the target 5x every...
Back
Top