Advertisement
Guest User

impound.hpp

a guest
Feb 12th, 2017
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. class RetrieveCar: Life_RscButtonMenu {
  2. idc = -1;
  3. text = "$STR_Global_Retrieve";
  4. onButtonClick = "[] call life_fnc_unimpound;";
  5. x = 0.1 + (6.25 / 40) + (1 / 250 / (safezoneW / safezoneH));
  6. y = 0.9 - (1 / 25);
  7. w = (6.25 / 40);
  8. h = (1 / 25);
  9. };
  10.  
  11. class SellCar: Life_RscButtonMenu {
  12. idc = -1;
  13. text = "$STR_Global_Sell";
  14. onButtonClick = "[] call life_fnc_sellGarage; closeDialog 0;";
  15. x = 0.26 + (6.25 / 40) + (1 / 250 / (safezoneW / safezoneH));
  16. y = 0.9 - (1 / 25);
  17. w = (6.25 / 40);
  18. h = (1 / 25);
  19. };
  20.  
  21. class InsureCar : Life_RscButtonMenu {
  22. idc = 97480;
  23. text = "Insure" ;
  24. onButtonClick = "[] call life_fnc_insureCar;";
  25. x = 0.43 + (6.25 / 40) + (1 / 250 / (safezoneW / safezoneH));
  26. y = 0 . 9 - ( 1 / 25 );
  27. w = (6.25 / 40);
  28. h = (1 / 25);
  29. };
  30. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement