Advertisement
Guest User

Untitled

a guest
May 26th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. _this addAction [format["<t color='#00ffff'>Achat: %1</t> <t color='#AAF200'>(%2$)</t>",["license_civ_rebel"] call life_fnc_varToStr,[(["rebel"] call life_fnc_licensePrice)] call life_fnc_numberText],{
  2. if (playerSide == civilian && local player) then {
  3. _price = 1200000;
  4. if (life_atmcash < _price) exitWith {hint "Tu manque de tunes mec !";};
  5. life_atmcash = life_atmcash - _price;
  6. license_civ_citoyen = false;
  7. license_civ_rebel = true;
  8. sleep 1;
  9. hint "Achat de la license rebel.\nTa license citoyen est retiré cela est normal !";
  10. }else{
  11. hint "Error !";
  12. };
  13. },"",0,false,false,"","!license_civ_rebel"];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement