Advertisement
Guest User

Untitled

a guest
Apr 1st, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.72 KB | None | 0 0
  1. #define MAX_WEEKEND_CAR_NAME_LENGTH     25
  2.  
  3. enum weekendCars_Data
  4. {
  5.     wc_model,
  6.     wc_name[ MAX_WEEKEND_CAR_NAME_LENGTH ],
  7.     wc_color1,
  8.     wc_color2,
  9.     Float:wc_X,
  10.     Float:wc_Y,
  11.     Float:wc_Z,
  12.     Float:wc_RZ,
  13.     wc_vehid = -1, /// Just a default value. Don't change this.
  14.     bool:wc_locked = false, /// Whether the car is locked or no. It's unlocked in default, don't change this.
  15.     Text3D:wc_3dlabel = -1, /// This is for attaching the "locked car" label into the car. It's -1 by default, don't change this.
  16. };
  17.  
  18. //// Here the list of the weekend cars.
  19. new wcInfo[ ][ weekendCars_Data ] = {
  20.  
  21. { 410, "The hero", -1, -1, 5.5, 5.5, 5.5, 5.5 } ,
  22. { 420, "My best car", -1, -1, 5.5, 12.5, 51.2, 2.5 }
  23.  
  24. };
  25.  
  26. wcInfo[ 0 ][ wc_model ] = 13;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement