Advertisement
TheAce106

Arma 3 lawyer shop

Sep 21st, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. /*
  2.     File: fn_clothing_careers.sqf
  3.     Author: Bryan "Tonic" Boardwine
  4.    
  5.     Description:
  6.     Master configuration file for Altis Diving Shop.
  7. */
  8. private["_filter"];
  9. _filter = [_this,0,0,[0]] call BIS_fnc_param;
  10. //Classname, Custom Display name (use nil for Cfg->DisplayName, price
  11.  
  12. //Shop Title Name
  13. ctrlSetText[3103,"Career Uniforms"];
  14.  
  15. switch (_filter) do
  16. {
  17.     //Uniforms
  18.     case 0:
  19.     {
  20.     if (license_civ_lawyer)  then
  21.         {
  22.         _ret set[count _ret,["U_NikosAgedBody","Lawyer",250]];
  23.         }; 
  24.     if (license_civ_press)  then
  25.         {
  26.         _ret set[count _ret,["U_C_Journalist","Press",750];
  27.         };
  28.     };
  29. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement