IsVehicleRespawnable

From Multi Theft Auto: Wiki
Revision as of 10:01, 9 June 2024 by Tracer (talk | contribs) (Added OOP variable and setter)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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