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

Assassin Star

Teddy

SweStream.se
Joined
Oct 2, 2008
Messages
3,797
Reaction score
10
Location
Sweden 172
how do i make assassin star unlimted.. ?
i have tested in config but its only make runes and Bolts unlimted :(
 
Go into items.xml and search for assassin star
change the breakchance to 0
Code:
<item id="7368" article="an" name="assassin star" plural="assassin stars">
		<attribute key="weight" value="200"/>
		<attribute key="attack" value="65"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="redstar"/>
		<attribute key="range" value="5"/>
		[B]<attribute key="breakChance" value="30"/>[/B]
		<attribute key="ammoAction" value="moveback"/>
	</item>

should be

Code:
<item id="7368" article="an" name="assassin star" plural="assassin stars">
		<attribute key="weight" value="200"/>
		<attribute key="attack" value="65"/>
		<attribute key="weaponType" value="distance"/>
		<attribute key="shootType" value="redstar"/>
		<attribute key="range" value="5"/>
		[B]<attribute key="breakChance" value="0"/>[/B]
		<attribute key="ammoAction" value="moveback"/>
	</item>
 
Back
Top