;Artificial Intelligence Script
;Conjured Check List o=Open p=Pocket
desc = Check List
;Triggers
:scancodekeypressed=24:hudshow=checklist1
:scancodekeypressed=25:hudunshow=checklist1
:state=0:hudreset,hudx=50,hudy=40,hudimage=gamecore\huds\conjured\checklist.jpg,hudname=checklist1,hudhide=1,hudmake=display
;End of Script
hudimage=gamecore\huds\conjured\checklist.jpg
...is the path and name of the file for your display.
The path does not show where you actually put your image though because it leaves off languagebank\english
The full path is ...
languagebank\english\gamecore\huds\conjured\checklist.jpg
You don't need the
languagebank\english in the script path so leave it out, but that is where the image is at.
That is, if you are using the english version. If not, then look for your language's path in languagebank.
Note too that I used a
conjured subfolder in the huds folder.
checklist.jpg is what I named the image file.
As for...
hudname=checklist1
That is where you name the hud for the
hudshow and
hudunshow actions.
hudx=50 ...sets the hud's x location to 50% of screen (middle)
hudy=40 ...sets the hud's y location to 40% of screen (little above middle)
Change these to suit your needs but keep your whole image on the screen.
Going off screen may cause problems.
Hope this helps