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

Rich Sword From HIGHEXP.EU

Imfreezing

Krossa Kapitalismen
Joined
Jun 7, 2012
Messages
1,009
Solutions
1
Reaction score
88
Location
Edron
Hello Otland , I gonna show you the rich sword script from highexp

BEFORE WE START !! IAM NOT THE OWNER OF THESE SCRIPT... I HAVNT SCRIPTED.
*I DONT CLAIM ANYTHING... just clearing that..... i dont know the owner though....

Now goto
Data/Weapons/scripts Create a Lua and name it richsword
And put this in
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HOLYDAMAGE)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_WHIRLWINDSWORD)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -60.0, -30, -40.0, -25)

local area = createCombatArea( { {1, 1, 1}, {1, 3, 1}, {1, 1, 1} } )
setCombatArea(combat, area)

function onUseWeapon(cid, var)
return doCombat(cid, combat, var)
end
now, Goto Data/weapons/weapons.xml and put this in
Code:
<wand id="Your Item id" range="10" lvl="8" mana="1" enabled="1" exhaustion="0" script="richsword.lua">

*OPTIONAL* Goto your items.xml and Search for your sword id and put
Code:
        <attribute key="attackspeed" value="1"/>
That will do the attack speed Quick
So once again, Not my script , i copied it. Have fun with it ^^

//Imfreezing
 
Back
Top