IT/getProjectileCreator: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 9: | Line 9: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==Argomenti richiesti== | ||
*'''theProjectile:''' L'elemento [[IT/Elemento/ | *'''theProjectile:''' L'elemento [[IT/Elemento/Proiettile| proiettile]] del creatore che si vuole recuperare. | ||
== | ==Valori restituiti== | ||
Restituisce l'elemento che ha creato il proiettile in caso di successo, altrimenti restituisce ''false'' . | |||
== | ==Esempio== | ||
<section name="Client" class="client" show="true"> | |||
This example will output a message in the chatbox saying who created | |||
the projectile. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
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) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | |||
== | ==Vedere anche== | ||
{{Client projectile functions}} | {{IT/Client projectile functions}} | ||
Latest revision as of 18:54, 18 January 2014
« Torna alla Pagina principale italiana ▇▇▇.
Questa funzione restituisce il creatore di uno specifico proiettile.
Sintassi
element getProjectileCreator ( projectile theProjectile )
Argomenti richiesti
- theProjectile: L'elemento proiettile del creatore che si vuole recuperare.
Valori restituiti
Restituisce l'elemento che ha creato il proiettile in caso di successo, altrimenti restituisce false .
Esempio
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)