Guest User

Untitled

a guest
Dec 10th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. -----------------------------------------------------------------
  2. #include <YSI\y_svar>
  3. enum e_VehicleStats
  4. {
  5. VehicleID, // Vehicle Model ID
  6. VehicleGroup, // Group the vehicle belongs to
  7. VehicleOwner, // Only Owner can drive this car
  8. VehicleKeys, // Who else has keys to the vehicle
  9. VehicleStatus, // On, Off, Alarm.
  10. VehicleHealth, // Vehicle Health
  11. VehiclePlate, // License Plate
  12. VehicleColor, // Vehicle Color 1
  13. VehicleColor2, // Vehicle Color 2
  14. VehicleTrunk, // Trunk open = 1 or closed = 0
  15. VehicleHood, // Hood open = 1 or closed = 0
  16. VehicleWheel, // Wheels on the vehicle (If allowed)
  17. VehicleNos, // Does it have NOS? 1 = yes, 0 = no
  18. VehicleMod1, // The rest will be used.
  19. VehicleMod2, // Mod 2
  20. VehicleMod3, // Mod 3
  21. VehicleMod4, // Mod 4
  22. VehicleMod5, // Mod 5
  23. VehicleMod6 // Mod 6
  24. };
  25.  
  26. #define VEHICLES_MAX 800 // I didn't want to do this... Damn Pawn!!!
  27.  
  28. [ new S_Vins[VEHICLES_MAX][e_VehicleStats]; = warning 203: symbol is never used: "S_Vins" ] - [ svar S_Vins[VEHICLES_MAX][e_VehicleStats]; = error 001: expected token: ";", but found "(" ]
  29.  
  30. -----------------------------------------------------------------
Add Comment
Please, Sign In to add comment