Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.38 KB | None | 0 0
  1. ["Server_Chopshop_Chop",
  2. {
  3.     private ["_veh","_player"];
  4.     _veh = param [0,objNull];
  5.     _player = param [1,objNull];
  6.  
  7.  
  8.     if (((_veh getVariable "owner") select 0) != (getPlayerUID _player)) then
  9.     {
  10.         [_player,"Player_Cash",((_player getVariable ["player_cash",0]) + 6000)] call Server_Core_ChangeVar;
  11.     };
  12.  
  13.     [_veh] call Server_Chopshop_Storecar;
  14. },true] call Server_Setup_Compile;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement