onPlayerDied
Name
baseevents:onPlayerDied
Parameters
int killerType, array deathCoords
- killerType: The pedType of the ped that killed this player. (View the screenshot below for available pedTypes)
- deathCoords: An array containing the x, y, z coordinates of where the player died.
Ped types
Examples
JavaScript Example:
on('baseevents:onPlayerDied', (killerType, deathCoords) => {
const [x, y, z] = deathCoords;
console.log('died at:', { x, y, z });
});
Last modified October 7, 2024: Fixed a few links and typos (4efa70d)