I've admitted defeat. After fooling with this for a week I cannot get anything to show and have humbly come here to the pros for assistance.
I've read through the manual and gone over my scripts again and again. All of my huds and icons are in the right places. rpg.ini is pointing to the right place. I get nothing when I press I, F1, etc... The game launches but no icon shows at the bottom of the screen and none of the extended features are available.
initlevel.fpi:
;Artificial Intelligence Script
;Header
desc = Initlevel #1 and scan for keys pressed
;Triggers
:state=0:rpg_addhealthunits=0,rpg_displayhealthunits
:state=0:hudreset,hudx=95,hudy=92,hudimage=languagebank\english\gamecore\huds\health.dds,hudmake=display
:state=0:hudreset,hudx=94,hudy=95,hudsizex=16,hudsizey=16,hudimage=gamecore\huds\numeric1.dds,hudtype=7,hudmake=numeric,state=2
:state=0:state=2
;keyboard
;THIS IS THE COMMAND LINE TO DISPLAY INVENTORY
:state=2,scancodekeypressed=23:rpg_selectcatinv,rpg_entitytimerstart,state=3
;
:state=2,scancodekeypressed=47:rpg_dispvar,rpg_entitytimerstart,state=3
;function keys
:state=2,scancodekeypressed=59:rpg_displaydoc=help.txt,rpg_entitytimerstart,state=3
:state=2,scancodekeypressed=62:rpg_displayquests,rpg_entitytimerstart,state=3
:state=2,scancodekeypressed=63:rpg_showallclues,rpg_entitytimerstart,state=3
:state=2,scancodekeypressed=66:rpg_showcluecategories,rpg_entitytimerstart,state=3
:state=2,scancodekeypressed=68:rpg_displayweaponsinventory,rpg_entitytimerstart,state=3
;reset delay
:state=3,entitytimergreater=150:state=2
;End of Script
rpg_setup.fpi
;RPG Setup Script
;Header
desc = RPG Setup
;Triggers
;define initial setup control first
:rpg_initsetup:rpg_syncrate=1,rpg_blobshadow=0,rpg_showblood=1,rpg_playerfootfall=1,rpg_muteplayerjumpsound
;define Variables - optional
;
:rpg_create_catmaxnumber:rpg_catmaxnumber=1
:rpg_start_catlist:rpg_usebackgroundcathud=0,rpg_usecatnumbers=0
:rpg_addcategory:rpg_cattype=1,rpg_catname=Inventory,rpg_catdesc=Inventory,rpg_caticonx=120,rpg_caticony=715,rpg_caticonloc=rpg_mod\huds\myrpg\invbackground1.tga,rpg_caticonscale=75
:rpg_end_catlist:none
;
:rpg_invtitletextstyle:rpg_invtitlecategory=1,rpg_invtitleusefirstline=0,rpg_invtitle=BackPack,rpg_invtitlefontname=Verdana,rpg_invtitlefontsize=36,rpg_invtitleusergb=1,rpg_invtitlergb_red=0,rpg_invtitlergb_green=100,rpg_invtitlergb_blue=0,rpg_invtitley=75
:rpg_create_invmaxnumber:rpg_invmaxnumber=1
:rpg_start_invlist:none
:rpg_newcategory,rpg_useinvbackgroundhud=1:rpg_numberitemsincategory=1,rpg_invbackgroundhudloc=rpg_mod\huds\myrpg\invbackground.tga,rpg_invbackgroundhudx=160,rpg_invbackgroundhudy=15
:rpg_addinvitem:rpg_invcategory=1,rpg_invname=key1,rpg_invdesc=Key 1,rpg_invtype=1,rpg_inviconloc=rpg_mod\huds\myrpg\key_1.tga,rpg_inviconx=420,rpg_invicony=260
:rpg_end_invlist:none
;
;
;End of Script