• 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!

Recent content by I r New

  1. I

    Lua Actions Script Help

    wow, why did I think of doing that >_< I've just done it like this before and it worked ;c haha thanks C: Edit: ...That's not working ;s Edit 2: FIXED IT CCCCCCCCC: I accidently put an extra 'end' loooooooooooooooooool
  2. I

    Lua Actions Script Help

    I'm trying to make it so I use a pick on a blood stain (ID 1901) and it teleports you to this position. The Blood Stain has the action ID 1000 in the map editor - "16:22 You see a bloodspot. ItemID: [1901], ActionID: [1000]." 2553 is a pick. function onUse(cid, item, fromPosition, itemEx...
  3. I

    i need some support spells!

    ...done 1.) lasts 10 seconds local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition...
  4. I

    Fixing a 2 scripts (addon bonus system and Teleport item)

    Added the line where you cannot use the amulet when you're PZ locked. Not sure if it'll work because I was unsure of how to place it in. local RemoveOnUse = 'yes' local teleport = {x=1028, y=1020, z=7} local vocation = {9,10,11,12} local level = 100 function onUse(cid, item, fromPosition...
  5. I

    Mana Ring

    add this onto the ring, Realpwnz. <attribute key="healthGain" value="25" /> <attribute key="healthTicks" value="1000" /> <attribute key="manaGain" value="25" /> <attribute key="manaTicks" value="1000" />
  6. I

    Mixed Rune

    Make sure to let me know if it works (:
  7. I

    [ACTIONS] Get outfit by quest

    You can change the ActionID to whatever you want. Put it onto a chest. Anything really. I'm not sure if this will work... I use it for addons. function onUse(cid, item, frompos, item2, topos) local looktype = 159 if getPlayerStorageValue(cid,5500) == -1 then doPlayerAddOutfit(cid,looktype,1)...
  8. I

    Two Actions

    Thank you guys, (:!
  9. I

    Two Actions

    Number one is right on the money I'll explain number two some more. You have to have say.. Pirate legs in your backpack to enter a spawn. It won't take the pirate legs upon entry. No need for the vocation though either. Thank you though. (:
  10. I

    Two Actions

    What I would like is: 1; Use an item, say... shovel on a pillar and it teleports you to X, Y, Z 2: Can't enter a door without a specific item in your backpack. Also a specific level. Thankyou, (:
  11. I

    ERROR with citizen.lua script

    That's a low version of TFS o_O Well, this is the 8.54 Crying Damson one, 0.3.6. they're completely identical. o.O function onStepIn(cid, item, position, fromPosition) if(item.actionid > 30020 and item.actionid < 30100) then local townId = (item.actionid - 30020) doPlayerSetTown(cid...
  12. I

    Mixed Rune

    I've made the script before, so.. I did this one, I spent 1 minute, max. but this is how I remember doing it, when I first did it. o_O it goes in spells, just like a rune should. Not actions. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)...
  13. I

    [solved]

    Thankyou, CyberM it works! :D
  14. I

    [solved]

    Bump~
  15. I

    [solved]

    check first post~ I updated that.
Back
Top