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

    CreatureEvent Fun scripts "owned!" message when you die.

    Simple script that shows the letters "Owned!" when you die. creaturescripts/preparedeath.lua local function sendLetter(p) local pos = p.pos local letter = p.letter doSendAnimatedText(pos, letter, TEXTCOLOR_RED) end function onPrepareDeath(cid, lastHitKiller, mostDamageKiller) local...
  2. Darad

    CreatureEvent Level cap system with points!

    Couldn't get it in a mod, so here's some scraps of code! What does it do? This script keeps players at a certain level. Creating a max level on your server. For every level they gain over the max they get a point. This points can be used in a shop or whatever you like. Script includes a...
  3. Darad

    TalkAction !getplayerinfo

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Get player info" version="1.0" author="Darad @ Babylon" enabled="yes"> <config name="gpi_config"><![CDATA[ config = { vocations = { [1] = 'sorcerer', [2] = 'druid', [3] = 'paladin', [4] = 'knight', [5] = 'master...
  4. Darad

    After death I click ok and get my charlist! Annoying!

    Ok, this is really annoying, when I die I get my char list, wether I click ok or cancel. Is this a bug in TFS 0.3.5pl1? Or has this something to do with my config.lua?
  5. Darad

    luaDoTransformItem(). Item not found

    Hey guys, need some help here. Have a mod that does some stuff, and then lowers the charges on the item. But this lowering does not work properly. Here's the code that does it. <action itemid="XXXX" allowfaruse="0" event="buffer"> -- Set charges. if config.useCharges == 1 then...
  6. Darad

    Action Simple quest mod, easy to configure! [updated]

    Simple easy to use quest mod. Add unique id of the chest to the config array, add rewards and storageValue, you're done :) Players can now receive exp too. Don't want to give a reward, but just exp, leave out the reward :) <?xml version="1.0" encoding="UTF-8"?> <mod name="Quest system"...
  7. Darad

    Action [MOD][configurable] Advanced home map script with cooldown timer!

    Proudly presenting! Config charges = 5, -- set to 0 if you want to make it endless useCooldown = 1, -- 0 don't use it, 1 use it cooldownTime = 60, -- cooldown in minutes cooldownWhileLoggedOut = 1, -- let the cooldown end while the player is online. if set to 0 the cooldowntimer only runs while...
  8. Darad

    Action [MOD] Grappler!

    Item that hooks on anything with actionid 1337. If you miss anything in the script gimme a call, I'll build it in! :) Good to use in quests! Explanation found here (Grappling Gun - Grappling Gun) How it works - Use the grappler on an object, the porting start, poof you're there...
  9. Darad

    TalkAction Love declaration mod

    Mod to declare your love to someone. Didn't test the distance check Also it has no exhaustion so it's a good way to spam someone. Will add this later. <?xml version="1.0" encoding="UTF-8"?> <mod name="Love" version="1.0" author="Darad @ Babylon server" enabled="yes"> <talkaction...
  10. Darad

    CreatureEvent Forever aol

    Forever aol script. Placed it under creatureEvent cause that seemed most logical. To prevent loss from players with red skull the wearer is teleported to temple instead of dying. This way he doesn't loose experience. But this can be built in of course, if you wish to. items.xml <item...
  11. Darad

    Forever aol (mod maybe?)

    Hey guys, I need a forever aol for latest version of TFS, been trying a lot of things with ondeath events but all it resulted in was either have loot drop or a player running around with 0 hp. Any idea's? ID of the amulet is 2196 creatureEvent script function onDeath(cid)...
  12. Darad

    Action Items that buff!

    Hi guys, my latest script, items that buff the player temporarily. Notice: The mana buff gives a GM character the extra 10% mana, but he cannot fill it up with a mana potion. Normal players can though. Relogging and dying removes the buff. actions.xml <action itemid="1983" event="script"...
  13. Darad

    Buffing items

    Solved.
  14. Darad

    Book that buffs hp for x minutes?

    Wrong thread, sorry...
  15. Darad

    Invisibility check

    Hi guys, wondering if there's a way to depend spells on invisibility. Checked the lua function list and couldn't find such a thing. local distanceCombat = createCombatObject() setCombatParam(distanceCombat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) setCombatParam(distanceCombat...
Back
Top