• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved how to remove infinite arrows and bolts?

chupaescadatri

Banned User
Joined
Jul 5, 2014
Messages
338
Reaction score
49
are infinite even I put TRUE in config.lua
runes are right but munitions are endless

removeWeaponAmmunition = true
 
tfs

<item id="2547" article="a" name="power bolt" plural="power bolts">
<attribute key="weight" value="80"/>
<attribute key="attack" value="50"/>
<attribute key="weaponType" value="ammunition"/>
<attribute key="ammoType" value="bolt"/>
<attribute key="shootType" value="powerbolt"/>
</item>
 
Code:
    <item id="2547" article="" name="power bolt" plural="power bolts">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="40" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="shootType" value="powerbolt" />
        <attribute key="ammoAction" value="removecount" />
    </item>
 
Code:
    <item id="2547" article="" name="power bolt" plural="power bolts">
        <attribute key="weight" value="80" />
        <attribute key="slotType" value="ammo" />
        <attribute key="attack" value="40" />
        <attribute key="maxHitChance" value="90" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="bolt" />
        <attribute key="shootType" value="powerbolt" />
        <attribute key="ammoAction" value="removecount" />
    </item>
wow Thanks !!!
 

Similar threads

Back
Top