• 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 Assassin stars... etc don't breaks!

Edling

Member
Joined
Mar 1, 2009
Messages
246
Reaction score
11
The got damn weapons as assassin stars, spears, royal spears viper star throwing star and enchanted spears don't breaks. I don't know why, look at my example of assassin star it should be correct right?



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" />
	<attribute key="breakChance" value="30" />
    </item>
 
I fixed the action.

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" />
		<attribute key="breakChance" value="25" />
		<attribute key="ammoAction" value="moveback"/>
    </item>
 
Last edited:
Back
Top