Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. disableSerialization;
  2.  
  3. AsReMixhud_Control = true;
  4.  
  5. while {true} do
  6. {
  7.  
  8. 1000 cutRsc ["AsReMixhud","PLAIN"];
  9.  
  10. _wpui = uiNameSpace getVariable "AsReMixhud";
  11. _vitals = _wpui displayCtrl 4900;
  12. _Player = player;
  13.  
  14. Money = _Player getVariable["cashMoney",0];
  15. Bank_Balance = _Player getVariable["bankMoney",0];
  16.  
  17. _vitals ctrlSetStructuredText parseText format
  18. ["
  19. <t size='0.9'> %1 </t><img size='0.9' align='right' image='Scripts\Player_Hud\icons\Money.paa'/><br/>
  20. <t size='0.9'> %2 </t><img size='0.9' align='right' image='Scripts\Player_Hud\icons\Bank.paa'/><br/>
  21. [Money] call BIS_fnc_numberText,
  22. [Bank_Balance] call BIS_fnc_numberText
  23. ];
  24. _vitals ctrlCommit 0;
  25. sleep 1.5;
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement