IsPlayerHitByVehicle: Difference between revisions
Jump to navigation
Jump to search
(→Code) |
(→Client) |
||
Line 22: | Line 22: | ||
==Client== | ==Client== | ||
<syntaxhighlight lang="lua"> | |||
function isPlayerHitByVehicle (attacker) | function isPlayerHitByVehicle (attacker) | ||
if not attacker then | if not attacker then | ||
Line 31: | Line 32: | ||
end | end | ||
addEventHandler("onClientPlayerDamage", getLocalPlayer(), isPlayerHitByVehicle) | addEventHandler("onClientPlayerDamage", getLocalPlayer(), isPlayerHitByVehicle) | ||
</syntaxhighlight> | |||
==Server== | ==Server== |
Revision as of 19:37, 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
Client
function isPlayerHitByVehicle (attacker) if not attacker then return end if getElementType(attacker) == 'vehicle' then cancelEvent() end end addEventHandler("onClientPlayerDamage", getLocalPlayer(), isPlayerHitByVehicle)
Server
function isPlayerHitByVehicle (attacker) if not attacker then return end if getElementType(attacker) == 'vehicle' then cancelEvent() end end addEventHandler("onPlayerDamage", root, isPlayerHitByVehicle)
Author
Lisek