IsPlayerHitByVehicle

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

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