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

Lua shoot with crystal arrow?

tim26

Member
Joined
Aug 12, 2008
Messages
618
Reaction score
11
Location
Poland
Hello i want make crystal arrow working how i can do this? it don't work don't shoot
 
data/weapons/weapons.xml:

Open weapons.xml

and go to the bottom of the script and you will find this:

PHP:
	<distance id="3965" level="20" function="default"/>	<!-- Hunting Spear -->
	<distance id="7378" level="25" function="default"/>	<!-- Royal Spear -->
	<distance id="7367" level="42" function="default"/>	<!-- Enchanted Spear -->
	<distance id="7368" level="80" function="default"/>	<!-- Assassin Star -->
	<distance id="7364" level="20" function="default"/>	<!-- Sniper Arrow -->
	<distance id="7365" level="40" function="default"/>	<!-- Onyx Arrow -->
	<distance id="7363" level="30" function="default"/>	<!-- Piercing Bolt -->
	<distance id="2547" level="55" function="default"/>	<!-- Power Bolt -->
	<distance id="6529" level="70" function="default"/>	<!-- Infernal Bolt -->

You should add your crystal arrow, Example:

Crystal Arrow:

PHP:
	<distance id="2352" level="20" function="default"/>	<!-- Crystal Arrowr -->

Add that one to your script and just edit the lever require!
 
Back
Top