Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Empties (remove all the quotations obv):
- "InstantiateOnFire" - Anything as a child of this will be instantiated when the gun it's on gets fired. Can be used to create custom muzzle flashes or other creative things.
- "NoMuzzleFlash" - Disables muzzles flashes on the gun.
- "SilencedMuzzleFlash" - Makes the gun have a much small muzzle flash.
- "ForceMuzzleFlash" - Enables the muzzle flash on silenced guns.
- "BulletCasingScale" - Changes the size of ejected bullets. Child of this should be the scale (eg. "2.5, 4, 2.5").
- "OnGrabbed" - Put this as a child of a grip point, then nest the following empties in order.
- "PATH=" - The local path of the transform containing the component you want to access (eg. "PATH=InsertTarget"). Use "/" to go down the hierarchy, leave it blank to access the root object.
- "COMPONENT=" - The full name of the component including the namespace (eg. "COMPONENT=StressLevelZero.Interaction.MagazineSocket").
- "FUNCTION=" - Put the name of a function on the chosen component to call it (eg. "FUNCTION="EjectMagazine").
- "BOOL=" - The name of the bool you want to change on the component (eg. "BOOL=isSilenced").
- "NUMBER=" - The name of a float/int you want to change (eg. "NUMBER=muzzleVelocity").
- "VALUE=" - (Optional) Use this to specify the new value of a bool (eg. "VALUE=True"). If you don't include this, the bool will just invert itself.
Advertisement
Add Comment
Please, Sign In to add comment