Here is a script from
Page 75 of
The Offcial Community Guide To FPSC, which is located in your FPSC
Docs folder...
Show objectives on screen
By Silent Thunder and Conjured Entertainment
This script displays the objectives (an image – “objectives.tga” which you must create) when you hold the TAB key and disappears when you let off of it.
;Objectives on Screen Script
; Script by: Silent Thunder
; Edited by Conjured Entertainment
desc = Display Objectives via TAB key
;Triggers
:state=0:hudreset,hudx=50,hudy=90,hudimagefine=gamecore/huds/objectives.tga,hudname=objectives,hudhide=1,hudmake=display,state=1
:state=1,scancodekeypressed=15:state=2
:state=1:hudunshow=objectives
:state=2:hudshow=objectives,state=1
;End of Script
Change the scancodekeypressed to the proper value for your 'M' key for your keyboard. (different countries have different scancode assignments)
For the US keyboards it should be the value of 50.
You also want to change the HUD's path and name to reflect your image.
You may also want to change the hudy=90 to hudy=50 to center the image, so your script might be...
Quote: "
;Objectives on Screen Script
; Script by: Silent Thunder
; Edited by Conjured Entertainment
desc = Display a LevelMap via the M key
;Triggers
:state=0:hudreset,hudx=50,hudy=50,hudimagefine=gamecore/huds/levelmap1.jpg,hudname=levelmap1,hudhide=1,hudmake=display,state=1
:state=1,scancodekeypressed=50:state=2
:state=1:hudunshow=levelmap1
:state=2:hudshow=levelmap1,state=1
;End of Script
"
I put in bold the items that were modified for your case.
Feel free to modify it more.