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

    onEquip / onDeEquip actionid

    Hi, is it somehow possible to use a actionid checker in the xml instead of itemid when using the equip or deEquip functions - I mean it doesn't look like it works the usual way like: <movevent type="Equip" actionid="1000" slot="armor" event="script" value="someScript.lua"/> Is there...
  2. Tarielle

    Item magic level

    Hi, is there an attribute for the doItemSetAttribute function that sets the magic level of a item, like hat of the mad? If there isn't is there someway to set / get it somehow else? Thanks
  3. Tarielle

    selfMoveToPosition

    hi, can someone please show me how to use the selfMoveToPosition = selfMoveTo NPC thing? thanks
  4. Tarielle

    getSpectators

    hi, why isn't it possible to use the getSpectators function like this: getSpectators(getNpcPos(), 6, 4,false) as when I do so it still sense peoples outside the 6,4 square. thanks
  5. Tarielle

    NPC greets twice

    hi, when you greet a npc he welcomes you in both private and default. But as I've made so my npc's only talk in the default channel I'd like to remove the first default welcoming as the npc's puts its message twice (only when you greet them) so basicly my question is how I remove that double...
  6. Tarielle

    Multiple creature event registers

    function onLogin(cid) registerCreatureEvent(cid, "1") registerCreatureEvent(cid, "2") registerCreatureEvent(cid, "3") registerCreatureEvent(cid, "4") return TRUE end when I make my login.lua like that only the last one is registered so how can I register them all? thanks
  7. Tarielle

    Turning a NPC

    Hi, I have this Npc that's not moving. But he is facing the wrong way... How can I make him/her face another direction than north? thanks
  8. Tarielle

    near sensor of a npc

    Hi, is it possible for a npc to sense a player x squares from the npc? Like if a player is 2 sqm's close to the npc the npc teleport the player somewhere thanks
  9. Tarielle

    monster respawn with timer

    Hi, I have this script that if you kill a monster it spawns another one (if you made something wrong) but I want it to spawn at the same spot, but as it reacts exactly whe nthe mosnter dies it still counts as there is a monster there, so I'd like a timer of like 1 second that starts when the...
  10. Tarielle

    function that executes when server start

    Hi, is there some function thing that executes when you start the server? thanks
  11. Tarielle

    item position

    hi, is it possible to get a item position? if not how could make a check if there is a item at a certain position? like if I should remove something I'd only want it removed if the really is there. thanks
  12. Tarielle

    setItemArticle to nothing

    Hi, how can I use the setItemArticle to set the article to nothing at all? if you do it like setItemArticle(item,"") it'll set it to the default setting. thanks
  13. Tarielle

    cheking the slots of a backpack

    hi, Im trying to do this thing that adds a item to the player, but I'd like it to like "not add" it if there is no space in the backpack (or slots at the equipment) thanks
  14. Tarielle

    NPC's only trading with a special storage value

    Hi, how can I make so the NPC's only wants to trade with the player if he/she got a special storage value with LUA (or XML if possible): local shopModule = ShopModule:new() npcHandler:addModule(shopModule) shopModule:addBuyableItem({'item'}, item.id, price, 'item') Thanks
  15. Tarielle

    NPC's taking items with action id

    Hi, what do I add if I want the NPC's to check the action id of the item? if doPlayerTakeItem(cid,2124,1) == 0 then Thanks
  16. Tarielle

    Activate report rule violation

    Hi, How do I activate the rule violation? (ctrl + r) Thanks
  17. Tarielle

    Unwriteable letter

    Hi, how can I make a letter unwriteable? Like if I set the item text to something.. How can I make so the retriever can't change the text? If there is a special letter that are made for such purpose please tell me the id. I dont want to be whinning or anything but I don't want to use a...
  18. Tarielle

    End line with with doSetItemText

    Hi How can I end line with doSetItemText(item,"text text") so the text and text appears above and under each other like pressing the return key between them.. Like this: text text Thanks
  19. Tarielle

    Npc's selling liquid

    Hi Why isn't it possible to make the NPC's sell liquid stuffs? Or if it is, how can I make it? I do like: mug of water,2012,1,5; Thanks
  20. Tarielle

    NPC channel with parameters

    Hi, how do I make the NPC's to talk at the NPC channel with the parameter system?
Back
Top