SetProjectileSpeed - PO3 SKSEFunctions
Revision as of 11:01, 20 April 2024 by CreedAngelus (talk | contribs) (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' PO3_SKSEFunctions Sets the speed of the projectile set in the first parameter. (This f...")
SKSE Member of: PO3_SKSEFunctions
Sets the speed of the projectile set in the first parameter. (This function requires PowerOfThree's Papyrus Extender)
Syntax
Function SetProjectileSpeed(Projectile akProjectile, float afSpeed) global native
Parameters
- akProjectile : The projectile whose speed is to be changed.
- afSpeed: The new value to assign the projectile.
Return Value
None
Examples
; Make an iron arrow move extremely slowly, and a daedric arrow nearly hitscan.
projectile property ArrowDaedricProjectile auto
projectile property ArrowIronProjectile auto
PO3_SKSEFunctions.SetProjectileSpeed(ArrowIronProjectile, 1)
PO3_SKSEFunctions.SetProjectileSpeed(ArrowDaedricProjectile, 9999999)