Jump to content
  • 0

Dayz Epoch set player position in map ?


weltoncamargo

Question

6 answers to this question

Recommended Posts

  • 0

:blink:

i'm a bit confused with this.

 

So you are able to right click on the map, but nothing happend on it?

 

if you would like to just make a marker on your position then simply add something like this into your fn_selfaction:

	if(_vehicle == player) then {
		if (s_player_testing < 0) then {
			s_player_testing = player addAction ["Mark Position","pathTo\marker.sqf","",2,false,true,"",""];
		};
	} else {
		player removeAction s_player_testing;
		s_player_testing = -1;
	};

and just simply use a script something like this:

_unit = _this select 0;
_markername = "yourPosition";
_getPos = getPos _unit;
_position = [_getPos select 0, _getPos select 1];
 
deleteMarker _markername;
 
_marker  = createMarkerLocal [_markername,_position];
_marker setMarkerTypeLocal "DestroyedVehicle";
_marker setMarkerTextLocal "You are here.";
systemchat "Your Position marked on the map";
sleep 60;

deleteMarker _markername;
Link to comment
Share on other sites

  • 0
one possible explanation confused the your read, various links posted !!!
is possible the scripts are encountered in some there
i posted these links for you have a base and look if something is related with what I think
 
excuseme for my expression and my writing
I do not quite understand English
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...