IsPlayerHitByVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 20: Line 20:
end
end
</syntaxhighlight>
</syntaxhighlight>
</section>


== Author ==
== Author ==


Lisek
Lisek

Revision as of 19:31, 9 June 2020

isPlayerHitByVehicle

Syntax

bool isPlayerHitByVehicle(attacker)

Required Arguments

  • attacker : The element that attacks .

Code

function isPlayerHitByVehicle (attacker)
	if not attacker then
		return
	end
	if getElementType(attacker) == 'vehicle' then
		cancelEvent()
	end
end

Author

Lisek