IT/getProjectileCreator: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{IT/MainP}} | {{IT/MainP}} | ||
__NOTOC__ | __NOTOC__ | ||
{{IT/Funzioni client}} | {{IT/Funzioni client}} | ||
Line 17: | Line 16: | ||
==Esempio== | ==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== | ==Vedere anche== | ||
{{IT/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)