OnVehicleDamage: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 18: Line 18:
function displayVehicleLoss(loss)
function displayVehicleLoss(loss)
     local thePlayer = getVehicleOccupant(source)
     local thePlayer = getVehicleOccupant(source)
     if(thePlayer) then
     if(thePlayer) then -- Check there is a player in the vehicle
         outputChatBox("Your vehicle just lost " .. tonumber(loss) .. " health.", thePlayer)
         outputChatBox("Your vehicle just lost " .. tonumber(loss) .. " health.", thePlayer) -- Display the message
     end
     end
end
end

Revision as of 06:18, 11 May 2008

This event is triggered when a vehicle encounters damage.

Parameters

float loss
  • loss: A float representing the amount of health the vehicle lost.

Source

The source of this event is the vehicle that got damaged.

Example

This example displays a message with the amount of health lost when a vehicle gets damaged.

function displayVehicleLoss(loss)
    local thePlayer = getVehicleOccupant(source)
    if(thePlayer) then -- Check there is a player in the vehicle
        outputChatBox("Your vehicle just lost " .. tonumber(loss) .. " health.", thePlayer) -- Display the message
    end
end

addEventHandler("onVehicleDamage", getRootElement(), displayVehicleLoss)

See Also

Vehicle events


Event functions