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

Search results

  1. S

    Lua onAddItem

    Can I use this function to detect item a player have received? I wanted to create an extra info any time player acquires special eq, not by OnUse etc. If not that way, perhaps any other?
  2. S

    Windows Game Client 8.54 Ambient Light/ Advanced

    Done, can close or delete. Thanks.
  3. S

    Windows Game Client 8.54 Ambient Light/ Advanced

    can i have a sample then?
  4. S

    Windows Game Client 8.54 Ambient Light/ Advanced

    Yes, it's for custom client. What sort of bribe?;o
  5. S

    Windows Game Client 8.54 Ambient Light/ Advanced

    I would love to disable Ambient Light in Advanced Graphics Options. Anyone ever found a way how to do it? Perhaps to constantly swap a set integer of Ambient Light desired to 0 or default? I tried lots of times with Hex editor, no real success. Thanks in advance, lots of people could use it...
  6. S

    Lua How do i remove specific item on specific tile?

    works, thanks, can't rep ;/
  7. S

    Lua How do i remove specific item on specific tile?

    I just tried to use: doRemoveThing(getTileItemById({x = 1001, y = 999, z = 8}, 3766, 1)) and of course, it didn't work, i also tried: doCleanTile({x = 1001, y = 999, z = 8}) and yet again, no effect. Any ideas? I guess it's quite simple, I am just lost by now ;d
  8. S

    Lua Quest, moving walls, kill player

    Works, thank you. rep'd.
  9. S

    Lua An easy question / message

    so basicly if msg == "XXX" then will react for all forms, xxx, xxX, XXX etc?
  10. S

    Lua An easy question / message

    if(msgcontains(msg, 'xxx'))then How to change it from contains into exact match? I looked through other npc scripts, couldn't find anything useful. Thanks.
  11. S

    Lua Challenge on certain monsters?

    works 100% fine! rep'd
  12. S

    Lua Quest, moving walls, kill player

    Ill test it later, nothing really in a hurry.
  13. S

    Lua Quest, moving walls, kill player

    Crap, can't rep you. Thanks a lot anyway.
  14. S

    Lua Quest, moving walls, kill player

    I am making a quest that will result in walls moving from the sides towards the middle of the room to get an opportunity to squash players locked in this room. There are ways to run away, but this is not the case. I got to the point of moving walls etc, what is my issue, how do I actually kill a...
  15. S

    Lua Challenge on certain monsters?

    bumping yet again
  16. S

    Lua Simple quest problem;

    Rep'd, thanks. I'll use this code as a template for other ones.
  17. S

    [How-to] Quests

    I have 2.1 remere. Seem to be latest.
  18. S

    Lua Simple quest problem;

    function onUse(cid, item, frompos, item2, topos) local specialQuests = { [2222] = 30015 } local storage = specialQuests[item.actionid] local queststatus = getPlayerStorageValue(cid, 9943) if storage == 2222 then if queststatus == 1 then doPlayerAddItem(cid, 2420, 1)...
  19. S

    Lua Simple quest problem;

    According to few tutorials with action and unique ID's mine don't work since my black contents blocks don't show up; http://otland.net/f479/how-quests-148708/ function onUse(cid, item, frompos, item2, topos) local storage = specialQuests[item.actionid] queststatus =...
Back
Top