IsPlayerHitByVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 19: Line 19:
end
end
end
end
</syntaxhighlight>
==Server==
<syntaxhighlight lang="lua">
function isPlayerHitByVehicle (attacker)
if not attacker then
return
end
if getElementType(attacker) == 'vehicle' then
cancelEvent()
end
end
addEventHandler("onPlayerDamage", root, isPlayerHitByVehicle)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 08:20, 10 June 2020

isPlayerHitByVehicle

Syntax

bool isPlayerHitByVehicle(attacker)

Required Arguments

  • attacker : The element that attacks .

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