OFPEC Forum
Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting Multiplayer => Topic started by: JPSelter on 18 Aug 2005, 23:57:33
-
When I create a simple mission for a multiplayer session I miss the player symbol on the map? How can I make it visible? Second question: How can I set a yellow objective-box to my own player? I thought I could do this by simply adding a simple waypoint to myself. But this doesnÂ't work.
-
being able to see your icon on an mp session is down to the server settings
and the ability to see your waypoint (yellow box) is down to the waypoint settings in your mission
to create a similar system within a mission to mark the position of your unit
create a "dot" or "marker" marker and name it "U"
then have this simple script run from the init.sqs
eg
[] exec "playermarker.sqs"
;;Playermarker.sqs
?!(local Player):exit
#START
~2
"U" setmarkerpos (getpos Player)
goto "START"
a marker will simply be setpossed to the players position on each client every 2 seconds
markers are local to each client, which means that you only need 1 marker and your version of that marker will be setpossed to your position on your machine and nobody else will see your position
-
and the ability to see your waypoint (yellow box) is down to the waypoint settings in your mission
what kind of settings? what do I need to add to my own waypoints to make them visible as a yellow box?
-
i believe its the "always show" option
if that doesnt work, then it maybe down to server settings.
Using wp's for players is not a normal system in my mp coop experience.
Displaying a marker at certain positions and then in the briefing explaining what must be done there, is the normal method
-
Hmmmm not what I wanted. I see the waypoints on the map now. I just want a yellow box to see where my next objective is so I can run towards it. I am the server here on my LAN, so where can I find those server settings? At "multiplayer->new" I canÂ't see any options.
-
Weird :D I was on holidays for 10 days until today and during this time this server was down :D Well, my question is still open ;)
-
Hmm... unless I misunderstood your question it looks like you can solve this without editing.
To make your player visible on the map during game play: Play in Cadet mode (toggle on/off with "Extended map info" found under Options-Dificulty).
To make "yellow" waypoints visible in game: Play in Cadet mode (They will be automatically visible).
Neither of these functions exists in Veteran mode. If you are the server in a LAN-game, set your dificulty to Cadet before starting game play.
The "Always Show" option in waypoints has no effect on what you see in game. It will display your waypoints on the map if you enable it.