Hello,
some has the code for fix and wash car loop?
some has the code for fix and wash car loop?
This account is currently banned
Ban reason: Multi
Ban reason: Multi
(11-08-2018 - 02:16 PM)DJXbox Wrote: Hello,
some has the code for fix and wash car loop?
//vars
int red;
int green;
int blue;
static int Color[] = { red, green, blue };
//loop this
red = GET_RANDOM_INT_IN_RANGE(0, 255);
green = GET_RANDOM_INT_IN_RANGE(0, 255);
blue = GET_RANDOM_INT_IN_RANGE(0, 255);
menuCol.r = Color[0];
menuCol.g = Color[1];
menuCol.b = Color[2];
void FixVeh() {
int CurrentVeh = PED::GET_VEHICLE_PED_IS_IN(PLAYER::PLAYER_PED())
VEHICLE::SET_VEHICLE_DEFORMATION_FIXED(CurrentVeh)
VEHICLE::SET_VEHICLE_FIXED(CurrentVeh)
VEHICLE::SET_VEHICLE_DIRT_LEVEL(CurrentVeh, 0);
VEHICLE::SET_VEHICLE_ENGINE_HEALTH(CurrentVeh, 1000.0f);
}