Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. // Config by Casey Chapman //
  2. // ©Nerds RPG 2014 All Rights Reserved //
  3.  
  4. #define private 0
  5. #define protected 1
  6. #define public 2
  7.  
  8. class CfgPatches {
  9. class NRPG_Mining_Drill {
  10. units[] = {"NRPG_Mining_Drill"};
  11. weapons[] = {};
  12. requiredVersion = 1.0;
  13. };
  14. class NRPG_Lobster_Cage
  15. units[] = {"NRPG_Lobster_Cage"};
  16. weapons[] = {};
  17. requiredVersion = 1.0;
  18. };
  19. class NRPG_Bank_Money_Pile
  20. units[] = {"NRPG_Bank_Money_Pile"};
  21. weapons[] = {};
  22. requiredVersion = 1.0;
  23. };
  24. };
  25.  
  26. class CfgVehicleClasses {
  27. class NRPG_Items {
  28. displayName = "Nerds RPG Items";
  29. };
  30. };
  31.  
  32. class CfgVehicles {
  33. class All {};
  34.  
  35. class Static : All {};
  36.  
  37. class Building : Static {};
  38.  
  39. class NRPG_Mining : Building {
  40. model = "\NRPG_Items\Mining\NRPG_Mining_Drill";
  41. scope = public;
  42. displayName = "NRPG Mining Drill";
  43. vehicleclass = "NRPG_Items";
  44. };
  45. class NRPG_Lobster_Cage : Building {
  46. model = "\NRG_Items\Fishing\NRPG_Lobster_Cage";
  47. scope = public;
  48. displayName = "NRPG Lobster Cage";
  49. vehicleclass= "NRPG_Items";
  50. };
  51. class NRPG_Bank_Money_Pile : Building {
  52. model = "\NRPG_Items\Bank\NRPG_Bank_Money_Pile";
  53. scope = public;
  54. displayName = "NRPG Bank Money Pile";
  55. vehicleclass= "NRPG_Items";
  56. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement