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

Solved Assassin star hit chance

Status
Not open for further replies.

Helga

GZH
Joined
Feb 19, 2009
Messages
622
Reaction score
1
Location
Sweden
Hello!

Hit chance on assassin star is really low on my server, but I can't anything to change it?

This is in the items.xml:
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="4"/>
    <attribute key="breakChance" value="33"/>
    <attribute key="ammoAction" value="moveback"/>
</item>

Checked up weapons.xml, but the only thing there is:
Code:
<distance id="7368" level="80" event="function" value="default"/>

So, is there anyway I can change the hit chance? ;> Source editing? Adding a code-line in items.xml?

Any help would be appreciated, thanks.
 
Last edited:
Hi

change in items.xml to:

<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="4"/>
<attribute key="breakChance" value="20"/>
<attribute key="hitChance" value="90"/>
<attribute key="ammoAction" value="moveback"/>
</item>

And weapons.xml:

<distance id="7368" level="80" event="function" hitchance="90" value="default"/>

on my ot work :)

hope it helps you :peace:
 
Code:
<attribute key="breakChance" value="33"/>

to

Code:
<attribute key="breakChance" value="5"/>

equals 5% of breakchance.

and as above:

to

Code:
<distance id="7368" level="80" event="function" hitchance="90" value="default"/>

equals 90% of hitchance.
 
Status
Not open for further replies.
Back
Top