IsVehicleRespawnable: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Added OOP variable and setter)
m (Added OOP variable and setter)
 
(No difference)

Latest revision as of 10:01, 9 June 2024

BETA: NEW FEATURE (BUILD: 1.6.0 r22505)
This function check if the vehicle is respawnable.

Syntax

bool isVehicleRespawnable ( vehicle theVehicle )

OOP Syntax Help! I don't understand this!

Method: vehicle:isRespawnable(...)
Variable: .respawnable
Counterpart: toggleVehicleRespawn


Required Arguments

  • theVehicle: The vehicle which you'd like to get respawn state of.

Returns

Returns three true if the vehicle is respawnable, false otherwise.

Example

This example toggles all vehicles respawnability

Click to collapse [-]
Server
addCommandHandler("toggleRespawn",function(player)
    for _,vehicle in ipairs(getElementsByType('vehicle')) do
        toggleVehicleRespawn(vehicle, not isVehicleRespawnable(vehicle))
    end

    outputChatBox('Vehicles respawn state has been changed!', player)
end)

See Also

Shared