GetProjectileCreator: Difference between revisions
Jump to navigation
Jump to search
m (Cleaned up example) |
m (headlines fix) |
||
Line 8: | Line 8: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Required Arguments== | ===Required Arguments=== | ||
*'''theProjectile:''' The [[projectiles| projectile]] element which creator you want to retrieve. | *'''theProjectile:''' The [[projectiles| projectile]] element which creator you want to retrieve. | ||
Revision as of 05:07, 29 July 2014
This function returns the creator of the specified projectile.
Syntax
element getProjectileCreator ( projectile theProjectile )
Required Arguments
- theProjectile: The projectile element which creator you want to retrieve.
Returns
Returns the element which created the projectile if successful, false otherwise.
Example
Click to collapse [-]
ClientThis example will output a message in the chatbox saying who created the projectile.
addEventHandler("onClientProjectileCreation", root, function(projectile) local creator = getProjectileCreator(projectile) if (getElementType(creator) == "player") then local pName = getPlayerName(creator) local projectileID = getProjectileType(projectile) outputChatBox(pName.." created a projectile! (ID: "..projectileID..")", 255, 200, 0, false) end end)