The mod is a framework for mod developers to create their own weapon mods for the eslilingue, allowing them to add any item to it, its damage, and whether it is explosive or not.
Other user's assetsAll the assets in this file belong to the author, or are from free-to-use modder's resources
Upload permissionYou are not allowed to upload this file to other sites under any circumstances
Modification permissionYou are not allowed to modify my files, including creating bug fixes or improving on features under any circumstances
Conversion permissionYou are not allowed to convert this file to work on other games under any circumstances
Asset use permissionYou are not allowed to use assets from this file under any circumstances
Asset use permission in mods/files that are being soldYou are not allowed to use assets from this file in any mods/files that are being sold, for money, on Steam Workshop or other platforms
Asset use permission in mods/files that earn donation pointsYou are not allowed to earn Donation Points for your mods if they use my assets
Author notes
You can use the framework, for the resource that was created, to be used as a library to facilitate the development of ammunition for the slingshot.
File credits
This author has not credited anyone else in this file
Donation Points system
Please log in to find out whether this mod is receiving Donation Points
Donations
No donations accepted
The mod is a framework for mod developers to create their own weapon mods for the eslilingue, allowing them to add any item to it, its damage, and whether it is explosive or not.
To create your custom slingshot mod, you must create the necessary files:
{ "validItemIds": [ "(O)392", "(O)288" //Add the items you want to add to the slingshot here, in this example we added the Nautilus Shell -> item code (O)392 and the Mega Bomb -> item code (O)288 ], "ammoDamageValues": { "(O)392": 300, "(O)288": 900 //Add damage to items added in the list above (O)392 receives 300 of damage and (O)288 receives 900 of damage }, "explosiveAmmunitionIds": [ "(O)392", "(O)288" // Add items as explosive item ammunition ], "explosionItemIds": [ "(O)392", "(O)288" // Add items as explosive item sound of explosion ], "validCategories": [ -74 // Add all items in the category to be used in the slingshot ] }
Only these 2 files are needed to use the framework in your mod.