So here is the script im trying to use. What it does is it displays an image, freezes the player, and is
Supposed to play a sound. It does not do any of those things.
;Reading a note
; Script by: Silent Thunder
; Edited by ExuCorporations
desc = Read A Note
;Triggers
:state=0:hudreset,hudx=50,hudy=50,hudimagefine=gamecore/huds/Note.png,hudname=objectives,hudhide=1,hudmake=display,state=1
:state=1,sound=audiobank\misc\Amnesia_Attempt\pick_note1.wav,state=2
:state=2,plrdistwithin=60:state=3
:state=3,scancodekeypressed=33:hudshow=objectives,plrfreeze=30000,etimerstart,state=4
:state=4,etimergreater=10000,scancodekeypressed=0:state=5
:state=5:hudunshow=objectives,plrfreeze=0,state=2
;End of Script
Here is the original script i had to display an image and freeze the play but not play a sound:
;Reading a note
; Script by: Silent Thunder
; Edited by ExuCorporations
desc = Read A Note
;Triggers
:state=0:hudreset,hudx=50,hudy=50,hudimagefine=gamecore/huds/Note.png,hudname=objectives,hudhide=1,hudmake=display,state=1
:state=1,plrdistwithin=60:state=2
:state=2,scancodekeypressed=33:hudshow=objectives,plrfreeze=30000,etimerstart,state=3
:state=3,etimergreater=10000,scancodekeypressed=0:state=4
:state=4:hudunshow=objectives,plrfreeze=0,state=1
;End of Script
What did i do wrong? It looks like it should work, i don't know what is wrong with it.. Can anyone help? Thanks!