home *** CD-ROM | disk | FTP | other *** search
- symbols
- message startup
- message entered
- message crossed
-
- sector sector1 linkid=1
- sector sector4 linkid=4
- sector sector8 linkid=8
-
-
-
- end
-
- # ========================================================================================
-
- code
- startup:
- ca1=0;
- ca4=0;
- ca8=0;
- return;
-
- entered:
- if ( (getsenderid()==1)&&(ca1==0) ) {
- print("playing line 1");
- ca1=1;
- if (getdifficulty()==0) dwPlayCammySpeech(16001, "t4ca001.wav", 30, 3);
- else if (getdifficulty()==2) dwPlayCammySpeech(16003, "t4ca003.wav", 30, 3);
- }
- if ( (getsenderid()==4)&&(ca4==0) ) {
- print("playing line4");
- ca4=1;
- dwPlayCammySpeech(16004, "t4ca004.wav", 20, 3);
- }
- if ( (getsenderid()==8)&&(ca8==0) ) {
- ca8=1;
- if (getdifficulty()==2) dwPlayCammySpeech(16009, "t4ca009.wav", 15, 3);
- }
-
- return;
-
-
- end
-
-