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

A Wand.

Snakie

New Member
Joined
Apr 15, 2010
Messages
263
Reaction score
4
Hey Guys.
Can someone make me a Donation Wand that will shoot with a cool effect the range of the wand have to be 7 sqm, it must hit from 1000 to 1800 and only Druid, Elder Druids, Sorcerer, Master Sorcerer Should be able to use it. The ID of the wand have to be 8922.

REP+++ To the one that could script me this!
 
Try this, I just edited a wand I found on the forums.
PHP:
	<wand id="8922" level="78" mana="25" min="1000" max="1800" type="earth" event="script" value="donation_wand.lua"/> <!-- Donation Wand -->
		<vocation id="1"/>
		<vocation id="2"/>
		<vocation id="5"/>
		<vocation id="6"/>
	</wand>

PHP:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, 1)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.5, -60, -1.5, -80)

function onUseWeapon(cid, var)
return doCombat(cid, combat, var)
end
 
Back
Top