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

Recent content by bitta1

  1. B

    NPC Request

    in scripts/addons.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  2. B

    Addon Npc Like Rl

    this is the one i use on my server -.- dude what are u on otland for just being negative about everything
  3. B

    Addon Npc Like Rl

    In Varkhal.xml : <?xml version="1.0" encoding="UTF-8"?> <npc name="Varkhal" script="addons.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="134" head="78" body="88" legs="0" feet="88" addons="3"/> </npc> and in scripts/addons.lua local...
  4. B

    Want Lua Scripts? Request here.

    local ITEM_GOLD_INGOT = 9971 local coins = { [ITEM_GOLD_COIN] = { to = ITEM_PLATINUM_COIN, effect = TEXTCOLOR_YELLOW }, [ITEM_PLATINUM_COIN] = { from = ITEM_GOLD_COIN, to = ITEM_CRYSTAL_COIN, effect = TEXTCOLOR_LIGHTBLUE }, [ITEM_CRYSTAL_COIN] = { from = ITEM_PLATINUM_COIN...
  5. B

    [LUA][8.6a different SD

    http://otland.net/f82/donor-sd-rune-138690/ Try This
  6. B

    Addon Npc Like Rl

    u mean varkhal?
  7. B

    DONOR SD Rune

    This is a donor sd rune that hits double a normal sd and is 2x faster than the normal one local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE) setCombatParam(combat...
  8. B

    Donor SD

    sry coz i tested it on a monster with 80% death protection i edited post :)
  9. B

    Donor SD

    <rune name="Donor SD" id="2263" allowfaruse="1" charges="3" lvl="45" maglv="15" exhaustion="450" needtarget="1" blocktype="solid" event="script" value="attack/Donor SD.lua"/> And add this in spells.xml :)
  10. B

    Donor SD

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA) setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT...
  11. B

    Random Monster Outfit

    This is a action script that allows u to use a christmas token and turn into any monster outfit :) function isAtRange(from, to, value) return from <= value and value <= to end local null, range = {0,1,135,225,30,75,266,302,336,335,329,328}, {161,191} function onUse(cid, item...
  12. B

    Full Strike Attack

    In Attack/Full Strike.lua --Scripted by Legend-- local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE) setCombatParam(combat1, COMBAT_PARAM_EFFECT,5) setCombatParam(combat1, COMBAT_PARAM_DISTANCEEFFECT, 3) setCombatFormula(combat1...
Back
Top