I didn't notice that typo
It should have read ...
:state=2,plrwithinzone=0:hudunshow=markhud,state=1
Quote: "The scripts in FPSC default to the folder that he initially thought it did. The "Files" folder..."
Yeah and the drive letter and so on, but I didn't think we need to go into the full path explination.
My way does work but you were right about the typo.
hudunshow works like the hudfadeout only it does it instantly instead of fading.
the problem was that he omitted the UN part, and the path.
I was right about the languagebank\english part, just try it.
We all already know it goes to the C:\Program Files\The Game Creators\FPS Creator\Files and then whatever else.
I was just saying that you don't need to specify the languagebank\english part of the path, which is true.
Now, that I examine the script closer there is another error all missed...
:End of Script
That should be a semi colon not a colon, like so...
;End of Script
Here is the modified code that will work if you have you image in the folder that you specified in your path above.
( C:\Program Files\The Game Creators\FPS Creator\Files\languagebank\english\gamecore\text\markhud.tga )
;Artificial Intelligence Script
;Header
desc = markhud HUD
;Triggers
:state=0:hudreset,hudx=50,hudy=90,hudimagefine=gamecore\text\markhud.tga,hudname=markhud,hudhide=1,hudmake=display,state=1
:state=1,plrwithinzone=1:hudshow=markhud,state=2
:state=2,plrwithinzone=0:hudunshow=markhud,state=1
;End of Script