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

    Need simple script

    okay try this local t = { timer = 60, rockid = 1355, -- rock id rockpos = {x= 1697,y= 1219,z= 8}, -- rock position storage = 60050, event = 0, } local function addRock(cid) doTransformItem(item.uid, item.itemid - 1) doCreateItem(t.rockid, 1, t.rockpos) end function onUse(cid, item...
  2. UpInSmoke

    Need simple script

    it would be like this local t = { timer = 60, rockid = 1355, -- rock id rockpos = {x= 1697,y= 1219,z= 8}, -- rock position storage = 60050, } local function addRock(cid) setGlobalStorageValue(cid, t.storage, -1) doTransformItem(item.uid, item.itemid + 1) doCreateItem(t.rockid, 1...
  3. UpInSmoke

    Solved The Forgotten Server Error

    no if he followed the tutorial then he created a user account on his phpmyadmin and the user and database are the same thing. he does not use root. the password is auto generated for security sqlType = "MySQL" why is it written like this? write it all in uncaps mysql also use 127.0.0.1 not...
  4. UpInSmoke

    Solved The Forgotten Server Error

    As you can see in the tutorial, mysqlUser and mysqlDatabase should be the same thing (if you followed the tutorial) - - - Updated - - - That is a issue with your router itself, some routers are more secure you may have to call your ISP to have that fixed
  5. UpInSmoke

    Need simple script

    add this to when it removes the rock doTransformItem(item.uid, item.itemid - 1) and when it adds the rock doTransformItem(item.uid, item.itemid + 1)
  6. UpInSmoke

    Need simple script

    okay, well the lever wont move unless i make a part in the script to make it move which i can if you want. Im not sure as to why its not working, this isnt my computer so i cant actually test it
  7. UpInSmoke

    Need 2 scripts for [9.80-9.86] The Forgotten Server v0.2.15 (Mystic Spirit)

    that script will work just do it like this: local t = { [1120] = {2646, 1}, -- [tile actionId] = {itemId, count} [1130] = {8865, 1}, [1140] = {5808, 1}, [1150] = {5943, 1} } function onStepIn(cid, item, position, fromPosition) local k = t[item.actionid] if isPlayer(cid) then...
  8. UpInSmoke

    Need simple script

    you cant use event="lever".. the other way is the proper format. post the error you get when using this one: <action uniqueid="50040" event="script" value="quest/lever.lua"/> I noticed that one of them you are specifiying to other and one to quests... which folder did you place the script it...
  9. UpInSmoke

    Need simple script

    nothing? should look like this <action uniqueid="50040" event="script" value="other/SCRIPTNAME.lua"/> make sure you place the script in other, name it whatever you want and put the name where it says SCRIPTNAME then make sure the uniqueid of the lever is 50040
  10. UpInSmoke

    Action Action {OutFit Script}

    if getPlayerStorage (cid, 235235) >1 then should be if getPlayerStorageValue (cid, 235235) <1 then storage values start at -1
  11. UpInSmoke

    Need simple script

    edited script again, it will work this time lol i was dumb and forgot something - - - Updated - - - not necessary
  12. UpInSmoke

    Need simple script

    Okay i edited the script try it again
  13. UpInSmoke

    Need simple script

    yes all you need to change is rockpos and rockid. in actions.xml <action uniqueid="50040" event="script" value="other/SCRIPTNAME.lua"/> -- change script name then in your map set the unique id of the lever to 50040 and no dont change the .uid on line 15
  14. UpInSmoke

    Need simple script

    didnt try but here local t = { timer = 60, rockid = XXXX, -- rock id rockpos = {x= ,y= ,z= }, -- rock position storage = 60050, } local function addRock(cid) setGlobalStorageValue(cid, t.storage, -1) doCreateItem(t.rockid, 1, t.rockpos) end function onUse(cid, item, fromPosition, itemEx...
  15. UpInSmoke

    Need 2 scripts for [9.80-9.86] The Forgotten Server v0.2.15 (Mystic Spirit)

    try local t = { [1100] = {2160, 1}, -- [tile actionId] = {itemId, count} } function onStepIn(cid, item, position, fromPosition) local k = t[item.actionid] if isPlayer(cid) then if not doPlayerRemoveItem(cid, k[1], k[2]) then doTeleportThing(cid, fromPosition)...
  16. UpInSmoke

    Walk Through Players in PZ and Clien Version Help

    not sure about the first one but the second one is just in config.lua onePlayerOnlinePerAccount = true change to false
  17. UpInSmoke

    Need simple script

    what type of script? action? movement? talkaction? globalevent? you need to specifiy... as for the other one here: http://otland.net/f82/epic-daily-missions-tasks-mod-185352/
  18. UpInSmoke

    Quest Reward

    okay well you are using system.lua script, and what exactly is wrong? you want it to say both no cap and inv space if both are true?
  19. UpInSmoke

    Server ideas/types

    Hello, I was just curious as to everyone's favorite server type. There is so many different types of servers out there: High exp custom map Low exp custom map High exp RL map Low exp RL map Rebirths Custom everything (usually an RPG) The low - moderate exp RL map servers seem...
Back
Top