qing Posted May 24, 2018 Share Posted May 24, 2018 hello, just a quick question: there is a command " /color [ColorID] " I tried " /color RRGGBB " -nothing I tried " /color #FF0000 " (hex form) AND " /color FF0000 " (without # ) I really need to know how to use it in the correct way, if anyone knows I would appreciate your help! Link to comment
0 MTA Team ccw Posted May 25, 2018 MTA Team Share Posted May 25, 2018 /color is not a built-in MTA command Client commands: https://wiki.multitheftauto.com/wiki/Client_Commands 1 Link to comment
0 MrKAREEM Posted May 25, 2018 Share Posted May 25, 2018 Do you want make thing As That ? addCommandHandler("red", function ( ) local theVehicle = getPedOccupiedVehicle ( localPlayer ) -- Get If The LocalPlayer In Vehicle Or Not if theVehicle then -- If He Was Then setVehicleColor( theVehicle, 255, 0, 0 ) -- Set The Red Color In "RBG" outputChatBox("The Car Color Has Changed into Red !!",0,255,0,true) else -- If Not Then outputChatBox("You Must Be In Car Firstly !!",0,255,0,true) end end ) Link to comment
Question
qing
hello,
just a quick question:
there is a command " /color [ColorID] "
I tried " /color RRGGBB " -nothing
I tried " /color #FF0000 " (hex form) AND " /color FF0000 " (without # )
I really need to know how to use it in the correct way, if anyone knows I would appreciate your help!
Link to comment
2 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now