Difference between revisions of "UseWeapon (Function)"
Jump to navigation
Jump to search
imported>Kkuhlmann |
imported>Quetzilla |
||
Line 35: | Line 35: | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:AI Functions]] | [[Category:AI Functions]] | ||
[[Category:Godsend Functions]] |
Revision as of 18:26, 12 December 2008
Description
UseWeapon Has an actor use its weapon. It is called on a Reference and takes a whopping nine parameters, though the last five are optional:
- the weapon
- where to stand
- the target
- how many times to use the weapon
- whether to crouch when reloading [optional, default is true]
- whether to hold fire when blocked [optional, default is true]
- whether to automagically hit the target [for scripted forced kills; optional, default is false]
- whether to prevent all damage [for scripted protracted fake combat; otpional, default is false]
- where the target needs to stand [optional, default/NULL means "anywhere"]
Syntax
[ActorREF.]UseWeapon WeapontoUse WhereToStand WhatToShoot ShotsToFire [CrouchToReload] [HoldFire] [AlwaysHit] [DoNoDamage] [TargetShouldBeHere]
(Despite these parameter names implying ranged weapons, UseWeapon can be used with melee weapons too.)
Examples
BuddyRef.UseWeapon Pistol12 BuddyRef HollyRef 5 0 0 0 0 XMarkerRef047
So Buddy would draw his pistol (or grab one if one was nearby), and from his own current location he would fire at HollyRef five times -- but only while she is near XMarkerRef047.
Notes
See Also
Reference
None provided.