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

Slingshot

Mera Mero

Guess Who?
Joined
Dec 27, 2014
Messages
417
Reaction score
86
Hello otlanders , I just wnats to know where can i find slingshot script ? because i need to remove it to remake it to new weapon ,i couldn't find it on WEAPONS folder
TFS 0.3.6
 
Code:
    <item id="5907" article="a" name="slingshot">
        <attribute key="weaponType" value="distance" />
        <attribute key="weight" value="1200" />
        <attribute key="ammoType" value="smallstone" />
        <attribute key="range" value="5" />
    </item>

    <item id="1294" article="a" name="small stone">
        <attribute key="weight" value="360" />
        <attribute key="attack" value="5" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="smallstone" />
        <attribute key="shootType" value="smallstone" />
        <attribute key="slotType" value="ammo" />
        <attribute key="maxHitChance" value="90" />
    </item>

This works for me. Should work for you too.

@edit

Also you should add to small stones:
Code:
<attribute key="ammoAction" value="removecount" />
 
Last edited:
Code:
    <item id="5907" article="a" name="slingshot">
        <attribute key="weaponType" value="distance" />
        <attribute key="weight" value="1200" />
        <attribute key="ammoType" value="smallstone" />
        <attribute key="range" value="5" />
    </item>

    <item id="1294" article="a" name="small stone">
        <attribute key="weight" value="360" />
        <attribute key="attack" value="5" />
        <attribute key="weaponType" value="ammunition" />
        <attribute key="ammoType" value="smallstone" />
        <attribute key="shootType" value="smallstone" />
        <attribute key="slotType" value="ammo" />
        <attribute key="maxHitChance" value="90" />
    </item>

This works for me. Should work for you too.

@edit

Also you should add to small stones:
Code:
<attribute key="ammoAction" value="removecount" />

this is what i ment but couldnt acces my pc atm xD
 
Back
Top