Here is my script:
function startdisplay2_init(e)
end
function startdisplay2_main(e)
if g_Entity[e]['plrinzone']==1 then
LoadImages("Crappy Crap",0)
SetImagePosition(50,50)
ShowImage(0)
FreezePlayer()
Prompt ("Press E to Continue" )
if g_KeyPressE == 1 then
UnFreezePlayer()
HideImage(0)
Destroy(e)
else
end
end
end
-------------------------------------
LoadImages("Crappy Crap",0) does load my 000.png but when I change it to:
LoadImages("Crappy Crap",1)
ShowImage(0) it does not load my 001.png
Any help would be appreciated.
THANKS!!