Hello.
I have downloaded a script that lets you respawn with the gear that you had when you died.Unfortunately, when i try to type this: player execVM "Save_gear_when_respawned.sqf into the INI line in editor, a text pops out saying:Type Script,expected nothing.I have putted an .sqf file into my MPmissions folder containing this:
#start
@ (! alive player)
_weapons = weapons player
_magazines = magazines player;
@ (alive player)
removeallweapons player;
{player addMagazine _x} foreach _magazines;
{player addWeapon _x} foreach _weapons;
goto "start"
Someone help