Advertisement
secondcoming

Untitled

Sep 15th, 2016
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.57 KB | None | 0 0
  1.     class GetYourCash
  2.     {
  3.         targetType = 2;
  4.         target = "Land_Atm_01_F";
  5.        
  6.         class Actions
  7.         {
  8.             class AccessAcount : ExileAbstractAction
  9.             {
  10.                 title = "Access your account";
  11.                 condition = "true";
  12.                 action = "true spawn ExileClient_gui_lockerDialog_show";
  13.             };
  14.         };
  15.     }; 
  16.  
  17.     class GetYourCash2
  18.     {
  19.         targetType = 2;
  20.         target = "Land_Atm_02_F";
  21.        
  22.         class Actions
  23.         {
  24.             class AccessAcount : ExileAbstractAction
  25.             {
  26.                 title = "Access your account";
  27.                 condition = "true";
  28.                 action = "true spawn ExileClient_gui_lockerDialog_show";
  29.             };
  30.         };
  31.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement