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

    Lua Weapon Upgrade System (help)

    You can have a look at what Lua functions 0.3.6 has here and it doesnt seem to have either getItemExtraAttack() or setItemExtraAttack(). You could try doItemSetAttribute(uid, key, value) but I couldnt find what the key for extra attack would be.
  2. F

    Remove Item after 20 seconds without addEvent()

    I'm not sure if you are calling my script stupid but this is how you are ment to remove/change items after a certain time it is much MUCH simpler and alot less things to go wrong. I would say using globalevents and os.clock() is stupid since you can just use doDecayItem().
  3. F

    Remove Item after 20 seconds without addEvent()

    Try removing the .uid after each bomb so doDecayItem(bomb1) etc
  4. F

    Remove Item after 20 seconds without addEvent()

    Was the bomb created? Also it looks like you are creating the bombs twice are you ment to be doing that? Try this: local bomb1 = doCreateItem(plasticBombs[1], 1, getCreaturePosition(cid)) doDecayItem(bomb1.uid
  5. F

    Remove Item after 20 seconds without addEvent()

    Im pretty sure it's like this: egg = doCreateItem(6542, 1, getCreaturePosition(cid)) doDecayItem(egg.uid) its the normal way to do it normally but I'm not sure if that will be cancelled if you reload actions or not
  6. F

    Mapper A different kind of server - may need more then just a mapper

    Its sad that OT has come to just profit it used to be just for fun
  7. F

    Mapper A different kind of server - may need more then just a mapper

    You dont think I can make it happen or you dont think people will want to play it? Cause the system to make it happen is all but made, I just need a map to make quests on and NPCs. If you think people wont wanna play it then I wouldnt have a clue but I guess time will tell. I understand monsters...
  8. F

    Mapper A different kind of server - may need more then just a mapper

    I dont think you understood my post, I am looking for a mapper I am certainly not a mapper.
  9. F

    When we were noobs...

    Anyone one else fall for the "healing spring" trick where someone told you when you have red hp if you walk on the energy field under the library you would get full hp. Or put your item on the dp hold ctrl and type "duplicate" and it was a bug to copy items?
  10. F

    Mapper A different kind of server - may need more then just a mapper

    Around this time last year I posted a thread on another OT site to see if anyone was interested in this kind of server but didnt get much of a response so I left the idea to die but have since decided to work on it myself but I need atleast the help of a mapper or 2. What I have so far is a...
  11. F

    Spawns Poll

    Even on boats you should be shot. NPC's arent that hard to make.
  12. F

    [Help] os.clock

    I would put login_time = os.clock up with focus = 0 and all that right up the top of the script (unless you are using jiddo's system). Also I'm not sure if you can have to or's after the "==". If you can that I have been wasting alot of time copying and pasting in past scripts lol. But I think...
  13. F

    [Help] os.clock

    Usually when use in an NPC its to delay a message or something, like if the NPC is telling a really long story he might say half the story in one go then wait 10 seconds so the player can read it then say the second half. In the script it would look like this: if msgcontains(msg, "story") then...
Back
Top