HUD
Functions

Vehicle: set Turn Light Right

Turns on vehicles right turn singnal (blinkers)

Used in: VCMod Main addon.

Shared Entity Vehicle:VC_setTurnLightRight(Boolean on)

Arguments

1. Boolean on; To turn on, default is off.
If not specified, the command will be set to 'off'.

Example

concommand.Add("vehicle_rightblinkeron", function()
	local ent = player.GetAll()[1]:GetEyeTraceNoCursor().Entity
	if IsValid(ent) then
		ent:VC_setTurnLightRight(true)
		print("Turning vehicles right blinker on.")
	else
		print("Invalid entity.")
	end
end)
Page modified:
...2018-11-02 09:24:42