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

    TV Sessions & RME Live Mapping

    connection time out :s
  2. Cloow

    simple script help

    I guess i'll throw in a bump here
  3. Cloow

    simple script help

    when I run the script it sends me "You need to find the four pieces of crystal first." I have all the storageids Console error when I use the forge function onUse(cid, item, frompos, item2, topos) if getPlayerStorageValue(cid) == 31587 and getPlayerStorageValue(cid) == 31588 and...
  4. Cloow

    Solved Storage script

    Oh, haha.. I mixed the pos there :o local pos, e = {x=2506, y=2499, z=7}, 1304 --Pos of the item everything works now! Thanks alot for all the help cyko! Im forever grateful :3
  5. Cloow

    Solved Storage script

    if I pull again Console: Did only send me the error once, I pulled the lever atleast 10 times -- Edit -- <action uniqueid="6551" script="stlever1.lua" /> local pos, e = {x=2506, y=2499, z=7}, 1304 --Pos of the item local itemid = 1304 --ID of the item getting removed local timer = 60...
  6. Cloow

    Solved Storage script

    :O There must be some other function than "doRemoveItem" than can be used in it place?
  7. Cloow

    Solved Storage script

    Yeah the counter fixed the copy problem. Still getting the errors tough :s could it be because of the distro? -- Edit -- heppens after 60 seconds
  8. Cloow

    [ALL-ACC] Starter page

    This was ages ago :o You want me to make even better starter page for you?
  9. Cloow

    Solved Storage script

    It reads ( doCreatureSay(cid, 'Something has been moved for '..Cyko.Timer..' seconds, please explore', TALKTYPE_MONSTER) ) everything goes smoothly. But the stone is still in it place local Cyko = { LeverPos = {x=2506, y=2499, z=7, stackpos=1}, --Posistion of the lever, so players can use it...
  10. Cloow

    Solved Storage script

    local cyko = { remove_item = 1354, -- id of the item which going to be removed create_item = 1354, -- id of the item which going to be created pos = {x=2490, y==2478, z=7}, -- pos of the item which will be removed and also created remove_time = 59, -- how long should the item be removed...
  11. Cloow

    Solved Storage script

    Getting errors local pos, e = {x=2490, y==2478, z=7}, 1354 local f = function(p) local str = "Something has moved not too far away." doCreateItem(1354, 1, pos) doTransformItem(getTileItemById(p, 1946).uid, 1945) end function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid...
  12. Cloow

    Solved Storage script

    Thanks alot, cyko! Sorry for taking so much of your time, but if you did not see I edited the last post with another script. If you would have the time and such I would be forever grateful! :3 (need to spread some rep before giving, i'll give asap!)
  13. Cloow

    Solved Storage script

    I changed my mind, I want it to give the player a storage so it cant be summoned again by the same player. something like this, but I cant get it to work .. local t = { monster = {"MONSTER", {x=2502, y=2499, z=7}}, } function onStepIn(cid, item, position, fromPosition)...
  14. Cloow

    Solved Storage script

    Thanks alot cyko, works now :)
  15. Cloow

    Solved Storage script

    Im getting teleported to the correct position, still having my item in the bag (12339) -- Edit -- Also noticed another script that wont run .. local t = { storage = 32000, interval = 120, monster = {"Theruay", {x=2502, y=2499, z=7}}, msg = "Theruay appears!" } function onStepIn(cid...
  16. Cloow

    Solved Storage script

    Im still getting the error. Could it be because of group ids?
  17. Cloow

    Solved Storage script

    Heppens when I walk over the tile
  18. Cloow

    Solved Storage script

    Thanks alot! Could someone help me with this one to? :) local id = 5578 --this is the action id u need to edit to the item in map editor local place = {x=2499, y=2499, z=7} --location where player will be tped local item = 12339 function onStepIn(cid, item, position, fromPosition) if...
  19. Cloow

    Solved Storage script

    I don't get it, why wont these scripts work? function onUse(cid, item, frompos, item2, topos) if item.uid == 6124 then setPlayerStorageValue(cid, 5184, 1) doSendMagicEffect(cid,12) doPlayerSendTextMessage(cid,22,'You found some strange power.') end else if...
  20. Cloow

    Solved Teleport with storage value

    Wow, really appericate it! Thanks alot
Back
Top