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

Recent content by Kryzax

  1. Kryzax

    Your thoughts on Racism

    Racism is just fear. That doesn't make it acceptable but it makes it understandable.
  2. Kryzax

    Lua Adding an item with an ActionID in monster loot

    Aha! I tested it with a stackable item. Good thinking! Never would have figured that out :D
  3. Kryzax

    How to edit a Npc?

    For example: Put the script in data/npc/scripts/eva.lua Then in data/npc/eva.xml: <npc name="Eva" script="data/npc/scripts/eva.lua" access="3" lookdir="2" walkinterval="1500" talkRadius ="4" >
  4. Kryzax

    Lua Adding an item with an ActionID in monster loot

    Something strange happens. When a player moves the item from the monster to backpack the action id disappears, any clue what's happening?
  5. Kryzax

    Lua Duplicate lever when timer ends

    It creates a lever on top of the existing one. And I forgot I had changed it to 10 seconds. Doesn't change the problem though.
  6. Kryzax

    Lua Duplicate lever when timer ends

    I made a script but it has a problem (always a problem..). After 5 seconds the timer puts the switch back to its original position but if theres a monster or person standing on the lever then it doesn't work. I think it's because of stackpos but I have no idea how to fix it! Here's the code...
  7. Kryzax

    [8.60] The Forgotten Server 0.3.6 (Crying Damson) V8

    Quick question. How to recompile this? I downloaded the sources but I cannot see 'forgotten-server.dev' like the tutorials state.. Total noob at compiling here!
  8. Kryzax

    Lua Adding an item with an ActionID in monster loot

    I've figured it out at last. In case anyone is interested: create a creature script called item.lua function onDeath(cid, corpse, deathList) local item = doCreateItemEx(2376) doItemSetAttribute(item, 'aid', 666) doAddContainerItemEx(corpse.uid, item) return true end in creaturescripts.xml...
  9. Kryzax

    Lua Adding an item with an ActionID in monster loot

    I'm pretty sure you can't add actionid in the xml of a monster? I tried it anyway and the server crashes when the amazon dies..! UniqueID works fine.
  10. Kryzax

    Tfs 0.3.6

    That's really helpful nice one. Learning!
  11. Kryzax

    Tfs 0.3.6

    Thanks mate. Slowly but surely..
  12. Kryzax

    Tfs 0.3.6

    Could someone explain to me the difference between onKill and onDeath? Trying to create a script that changes the action id of a creatures loot.. thank you..
  13. Kryzax

    Server Log doesn't show all Manas!

    Wow thanks for the replies I've been having this horrible problem too!
Back
Top