IT/getProjectileForce: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{IT/MainP}} __NOTOC__ {{IT/Funzioni client}} Questa funzione restituisce la forza del proiettile specificato. ==Sintassi== <syntaxhighlight lang="lua"> float getProjectileForce ( projectile t...")
 
No edit summary
 
(5 intermediate revisions by 4 users not shown)
Line 13: Line 13:


==Valori restituiti==
==Valori restituiti==
Restituisce un [[IT/Float]] in caso di successo, altrimenti restituisce ''false''.
Restituisce un [[IT/Float|float]] in caso di successo, altrimenti restituisce ''false''.


==Example==
==Esempio==
'''Example 1:''' This example would outputs the force of the projectile on 1-100 scale. This function just works with projectiles which you throw so just grenades, satchel charge etc
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- TODO
 
addEventHandler("onClientProjectileCreation", getRootElement(),
--The source of this event is the projectile that was created.
function ()
    local getForce = getProjectileForce(source)
    outputChatBox(getForce*100) -- outputs the force of the projectile on 1-100 scale
end
)
</syntaxhighlight>
</syntaxhighlight>


==See also==
==Vedere anche==
{{IT/Client projectile functions}}
{{IT/Client projectile functions}}
[[Category:Needs_Example]]
[[en:getProjectileForce]]

Latest revision as of 18:55, 18 January 2014

« Torna alla Pagina principale italiana .


Questa funzione restituisce la forza del proiettile specificato.

Sintassi

float getProjectileForce ( projectile theProjectile )

Required Arguments

  • theProjectile: L'elemento proiettile la quale forza si vuole recuperare.

Valori restituiti

Restituisce un float in caso di successo, altrimenti restituisce false.

Esempio

Example 1: This example would outputs the force of the projectile on 1-100 scale. This function just works with projectiles which you throw so just grenades, satchel charge etc


addEventHandler("onClientProjectileCreation", getRootElement(),
--The source of this event is the projectile that was created.
function ()
    local getForce = getProjectileForce(source)
    outputChatBox(getForce*100) -- outputs the force of the projectile on 1-100 scale
end
)

Vedere anche