19-12-2010, 01:21 AM
(Questo messaggio è stato modificato l'ultima volta il: 30-10-2012, 03:15 PM da Tax78.)
Script da inserire in main del triggerzone, script sempre attivo, non necessita passaggio player.:
Usare i tasti + e - del tastierino numerico
NB: per motivi che non dipendono da me, in tutte le righe che contengono l'azione "etimerstart" la scritta e spezzata, riattaccarla in fase di copiatura
By Tax
Codice:
;Artificial Intelligence Script
;Header By Tax
desc = Alzare abbassare il volume
;Triggers
;tastierino numerico: tasti - (74) e + (78)
;volume 100
:state=0:state=1,musicvolume=100,etimerstart
:state=1,etimergreater=500,scancodekeypressed=74:state=2,musicvolume=80,etimerstart
;volume 80
:state=2,etimergreater=500,scancodekeypressed=74:state=3,musicvolume=60,etimerstart
:state=2,etimergreater=500,scancodekeypressed=78:state=1,musicvolume=100,etimerstart
;volume 60
:state=3,etimergreater=500,scancodekeypressed=74:state=4,musicvolume=40,etimerstart
:state=3,etimergreater=500,scancodekeypressed=78:state=2,musicvolume=80,etimerstart
;volume 40
:state=4,etimergreater=500,scancodekeypressed=74:state=5,musicvolume=20,etimerstart
:state=4,etimergreater=500,scancodekeypressed=78:state=3,musicvolume=60,etimerstart
;volume 20
:state=5,etimergreater=500,scancodekeypressed=74:state=6,musicvolume=0,etimerstart
:state=5,etimergreater=500,scancodekeypressed=78:state=4,musicvolume=40,etimerstart
;volume 0
:state=6,etimergreater=500,scancodekeypressed=78:state=5,musicvolume=20,etimerstart
;End of Script
NB: per motivi che non dipendono da me, in tutte le righe che contengono l'azione "etimerstart" la scritta e spezzata, riattaccarla in fase di copiatura
By Tax