SetVehicleLocked: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Server client function}}
This function can be used to set a vehicle to be locked or unlocked.  Locking a vehicle restricts access to all doors of a vehicle.
This function can be used to set the vehicle's doors to be locked or unlocked.  Locking a vehicle restricts access to the vehicle.
{{warning|This function only prevents the player from opening the vehicle doors. It means that a player can still access a locked vehicle if there's an opened door. Also, vehicles that doesn't have doors can still be accessed aswell.}}


==Syntax==  
==Syntax==  
Line 7: Line 8:
bool setVehicleLocked ( vehicle theVehicle, bool locked )             
bool setVehicleLocked ( vehicle theVehicle, bool locked )             
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[vehicle]]:setLocked|locked|isVehicleLocked}}


===Required Arguments===  
===Required Arguments===  
Line 33: Line 35:
     bindKey ( source, "l", "down", lockcar )                  -- bind the 'l' key to the 'lockcar' function
     bindKey ( source, "l", "down", lockcar )                  -- bind the 'l' key to the 'lockcar' function
end
end
addEventHandler ( "onPlayerSpawn", getRootElement(), bindLockOnSpawn )    -- add an event handler for onPlayerSpawn
addEventHandler ( "onPlayerSpawn", root, bindLockOnSpawn )    -- add an event handler for onPlayerSpawn
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>

Latest revision as of 08:31, 4 November 2020

This function can be used to set the vehicle's doors to be locked or unlocked. Locking a vehicle restricts access to the vehicle.

[[|link=|]] Warning: This function only prevents the player from opening the vehicle doors. It means that a player can still access a locked vehicle if there's an opened door. Also, vehicles that doesn't have doors can still be accessed aswell.

Syntax

bool setVehicleLocked ( vehicle theVehicle, bool locked )            

OOP Syntax Help! I don't understand this!

Method: vehicle:setLocked(...)
Variable: .locked
Counterpart: isVehicleLocked


Required Arguments

  • theVehicle: The vehicle which you wish to change the lock status of
  • locked: Boolean for the status you wish to set. Set true to lock, false to unlock

Returns

Returns true if the operation was successful, false otherwise.

Example

Click to collapse [-]
Server

This example allows a player to lock his vehicle when he is inside it.

function lockcar ( thePlayer )
    playervehicle = getPlayerOccupiedVehicle ( thePlayer )   -- define 'playervehicle' as the vehicle the player is in
    if ( playervehicle ) then                                -- if a player is in a vehicle
        if isVehicleLocked ( playervehicle ) then            -- and if the vehicle is already locked
            setVehicleLocked ( playervehicle, false )        -- unlock it
        else                                                 -- otherwise (if it isn't locked) 
            setVehicleLocked ( playervehicle, true )         -- lock it
        end
    end
end

function bindLockOnSpawn ( theSpawnpoint )                     -- when a player spawns
    bindKey ( source, "l", "down", lockcar )                   -- bind the 'l' key to the 'lockcar' function
end
addEventHandler ( "onPlayerSpawn", root, bindLockOnSpawn )     -- add an event handler for onPlayerSpawn

See Also