A question. Would you have a script that uses entrotatex=x
entrotatey=x
entrotatez=x
that works for 119 this one rotates on the center axis I need the wall to go up and down or Just up or just down,
;Artificial Intelligence Script by funny
;desc = wall swivelling (secret passage) secret passage'T' and 'Y' to activate
;Triggers
:state=0:hudreset,hudx=50,hudy=90,hudimagefine=RPG_Mod\Huds\secretpassage.tga,hudname=setwall,hudhide=1,hudmake=display,state=1
:state=1:plrdistwithin=50:hudshow=setwall,hudfadeout=setwall
:state=1,plrdistwithin=50,scancodekeypressed=20:state=3,rotatey=5
:state=1,plrdistwithin=50,scancodekeypressed=21:state=3,rotatey=-5
;:state=10:state=20
:state=3,plrusingaction=0:state=0
;End of Script
a script that uses
pickobject that works?
;Artificial Intelligence Script
;by TheStoryteller01 2010
;Header
desc=
;This script only works with FPSC 1.16.18, because FPGCRAWTEXT is used AND if using a mod that supports the PICKOBJECT condition.
;Made for non-weapon items that can be picked up.
;To start the script at any time, the player has to move the cursor over the item and press <Enter>.
;While the script is running the player cannot move or use mouselook but still shoot.Pressing <Del> at any time ends the script.
;To skip the second line of text (the "flavour text") delete all "state=4" lines and rename "state=4" in the 5th line to "state=6"
;Triggers
:state=0:state=1
:state=1,pickobject=1,plrdistwithin=50,plrusingaction=1:timerstart,plrdisable=100000,state=2,
:state=2:fpgcrawtextsize=24,fpgcrawtextfont=verdana,fpgcrawtextr=150,fpgcrawtextg=150,fpgcrawtextb=150,fpgcrawtextx=50,fpgcrawtexty=60
:state=2:fpgcrawtext=I found an assault rifle.
:state=2,timergreater=500,plrusingaction=1:timerstart,state=4
:state=2,scancodekeypressed=14:plrdisable=0,state=0
:state=4:fpgcrawtextsize=24,fpgcrawtextfont=verdana,fpgcrawtextr=150,fpgcrawtextg=150,fpgcrawtextb=150,fpgcrawtextx=50,fpgcrawtexty=60
:state=4:fpgcrawtext=A very versatile weapon.
:state=4,timergreater=500,plrusingaction=1:timerstart,state=6
:state=4,scancodekeypressed=14:plrdisable=0,state=0
:state=6:fpgcrawtextsize=24,fpgcrawtextfont=verdana,fpgcrawtextr=150,fpgcrawtextg=150,fpgcrawtextb=150,fpgcrawtextx=50,fpgcrawtexty=60
:state=6:fpgcrawtext=Press <Enter> to take or <Del> to leave it.
:state=6,timergreater=500,plrusingaction=1:playertake,coloff,plrsound=gamecore\guns\modernday\mossberg\putaway.wav,state=9
:state=6,scancodekeypressed=14:plrdisable=0,state=0
:state=9:playertake,coloff,plrdisable=0
;End of Script