GetProjectileType: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Added OOP syntax) |
||
(5 intermediate revisions by 5 users not shown) | |||
Line 7: | Line 7: | ||
int getProjectileType ( projectile theProjectile ) | int getProjectileType ( projectile theProjectile ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[projectile]]:getType|type}} | |||
==Required Arguments== | ===Required Arguments=== | ||
*'''theProjectile:''' The [[ | *'''theProjectile:''' The [[Element/Projectile|projectile]] element which type you want to retrieve. | ||
==Returns== | ==Returns== | ||
Line 17: | Line 18: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function projectileCreation() | |||
local theType = getProjectileType(source) | |||
outputChatBox("A projectile was created! It's type: "..theType) | |||
end | |||
addEventHandler("onClientProjectileCreation", getRootElement(), projectileCreation) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See also== | ==See also== | ||
{{Client projectile functions}} | {{Client projectile functions}} | ||
[[it:getProjectileType]] |
Latest revision as of 17:42, 26 November 2014
This function returns the type of the specified projectile.
Syntax
int getProjectileType ( projectile theProjectile )
OOP Syntax Help! I don't understand this!
- Method: projectile:getType(...)
- Variable: .type
Required Arguments
- theProjectile: The projectile element which type you want to retrieve.
Returns
Returns an integer over the type of the projectile or false if invalid arguments were passed.
ID | Name/Description |
---|---|
16 | Grenade |
17 | Tear Gas Grenade |
18 | Molotov |
19 | Rocket (simple) |
20 | Rocket (heat seeking) |
21 | Air Bomb |
39 | Satchel Charge |
58 | Hydra flare |
Example
function projectileCreation() local theType = getProjectileType(source) outputChatBox("A projectile was created! It's type: "..theType) end addEventHandler("onClientProjectileCreation", getRootElement(), projectileCreation)