hey, I tried to rip out the PlayerUID check for packing tent in my custom fn_selfActions.sqf
my custom edited fn_selfActions.sqf:
//Packing my tent if(_isTent and (player distance _cursorTarget < 3)) then { if (s_player_packtent < 0) then { s_player_packtent = player addAction [localize "str_actions_self_07", "\z\addons\dayz_code\actions\tent_pack.sqf",_cursorTarget, 0, false, true, "",""]; }; }; } else { player removeAction s_player_packtent; s_player_packtent = -1; };
this is not working for me. any suggestions?