IsPlayerHitByVehicle

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

isPlayerHitByVehicle

Syntax

bool isPlayerHitByVehicle(attacker)

Required Arguments

  • attacker : The element that attacks .

Function Source

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

Author

Lisek In Discord Lisek#5811