Jump to content

Colored Headlights 1.0.0

   (7 reviews)

1 Screenshot

About This File

RHnzQVP.jpg

This script adds the colored xenon headlights feature from Arena War DLC.

 

Installing

Put coloredhlights into your server's client_packages directory, then add require('coloredhlights'); to client_packages/index.js.

 

Using

Set the headlightColor shared variable of a vehicle to the headlight color ID you want. Command example:

// /hcolor 10 should make your vehicle's headlights pink
mp.events.addCommand("hcolor", (player, _, colorId) => {
    if (player.vehicle) {
        player.vehicle.data.headlightColor = Number(colorId);
    } else {
        player.outputChatBox("You're not in a vehicle!");
    }
});

 

Headlight Colors

Since Rockstar didn't make headlight colors RGB, you can only use a set of numbers as color IDs.

0 = White
1 = Blue
2 = Light Blue
3 = Green
4 = Light Green
5 = Light Yellow
6 = Yellow
7 = Orange
8 = Red
9 = Light Pink
10 = Pink
11 = Purple
12 = Light Purple

Color IDs higher than 12 will force xenon headlights to use their default color.

 

Notes

  • Since this script toggles the xenon headlights mod (toggleMod 22), it may not work with your car customization script.
  • Color IDs lower than 0 and color ID 255 will disable the feature (revert headlights back to normal from xenon) until you set a valid color again.
  • Like 12

User Feedback

Recommended Comments

There are no comments to display.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...