IT/createProjectile: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 9: Line 9:


==Argomenti richiesti==
==Argomenti richiesti==
*'''creator:''' L'[[IT/Elemento|elemento]] rappresenta il creatore del proiettile. In caso vuoi che il proiettile sia sincronizzato per tutti, il creatore deve essere [[IT/getLocalPlayer|getLocalPlayer]]().
*'''creator:''' L'[[IT/Elemento|element]] rappresenta il creatore del proiettile. In caso vuoi che il proiettile sia sincronizzato per tutti, il creatore deve essere [[IT/getLocalPlayer|getLocalPlayer]]().
*'''weaponType:''' [[IT/int|int]] rappresenta il proiettile weaponType (caratteristiche). Gli ID validi sono:
*'''weaponType:''' [[IT/int|int]] rappresenta il proiettile weaponType (caratteristiche). Gli ID validi sono:
{{IT/Elemento/Proiettile}}
{{IT/Elemento/Proiettile}}

Revision as of 10:07, 3 August 2011


Questa funzione crea un proiettile del tipo specificato sulle coordinate specificate.

Sintassi

projectile createProjectile ( element creator, int weaponType [, float posX, float posY, float posZ, float force = 1.0, element target = nil, float rotX, float rotY, float rotZ, float velX, float velY, float velZ, int model ] )

Argomenti richiesti

  • creator: L'element rappresenta il creatore del proiettile. In caso vuoi che il proiettile sia sincronizzato per tutti, il creatore deve essere getLocalPlayer().
  • weaponType: int rappresenta il proiettile weaponType (caratteristiche). Gli ID validi sono:

Template:IT/Elemento/Proiettile

Argomenti opzionali

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • posX,posY,posZ: float starting coordinates for the projectile. They are coordinates of creator by default.
  • force: float representing the starting force of the projectile.
  • target: element target used for heat seeking rockets.
  • rotX,rotY,rotZ: float starting rotation for the projectile.
  • velX,velY,velZ: float starting velocity for the projectile.
  • model: Integer representing the projectile's model, uses default model for weaponType if not specified.

Returns

Returns a projectile element if projectile creation was succesfull. Returns false if unable to create a projectile (wrong weapon ID or projectiles limit was reached).

Example

This example makes a rocket minigun (minigun shooting with rockets).

-- This function gets triggered everytime player shoots.
function onClientPlayerWeaponFireFunc(weapon,ammo,ammoInClip,hitX,hitY,hitZ,hitElement)
	if weapon == 38 then -- if source is a local player and he uses minigun...
		if not createProjectile(getLocalPlayer(),19,getElementPosition(getLocalPlayer()),200) then -- then we either create a projectile...
			outputChatBox ( "Rocket minigun overheated! Give it a rest pal!", source ) -- or if projectile limit is reached we output player a chat message
		end
	end
end

-- Don't forget to add the onClientPlayerWeaponFireFunc function as a handler for onClientPlayerWeaponFire.
addEventHandler("onClientPlayerWeaponFire", getLocalPlayer(), onClientPlayerWeaponFireFunc)

See also