IsPlayerHitByVehicle

From Multi Theft Auto: Wiki
Revision as of 19:27, 9 June 2020 by Lisu (talk | contribs) (→‎Code)
Jump to navigation Jump to search

isPlayerHitByVehicle

Syntax

bool isPlayerHitByVehicle(attacker)

Required Arguments

  • attacker : The player you want to another player .

Shared



This function cancels event when a player is hit by a vehicle.

Code

Click to collapse [-]
Function shared
function isPlayerHitByVehicle (attacker)
	if not attacker then
		return
	end
	if getElementType(attacker) == 'vehicle' then
		cancelEvent()
	end
end

Author

Lisek)