home *** CD-ROM | disk | FTP | other *** search
- symbols
- message startup
- message entered
- message crossed
-
- sector sector1 linkid=1
- sector sector2 linkid=2
- sector sector5 linkid=5
- sector sector6 linkid=6
- sector sector7 linkid=7
-
- end
-
- # ========================================================================================
-
- code
- startup:
- ca1=0;
- ca2=0;
- ca5=0;
- ca6=0;
- ca7=0;
- return;
-
- entered:
- // if ( (getsenderid()==1)&&(ca1==0) ) {
- // print("playing line 1");
- // ca1=1;
- // if (getdifficulty()==0) dwPlayCammySpeech(16001, "T1ca001.wav", 15, 2);
- // }
- if ( (getsenderid()==2)&&(ca2==0) ) {
- print("playing line 2");
- ca2=1;
- if (getdifficulty()!=2) dwPlayCammySpeech(16002, "T1ca002.wav", 15, 2);
- else dwPlayCammySpeech(16012, "T1ca012.wav", 15, 2);
- }
- if ( (getsenderid()==5)&&(ca5==0) ) {
- print("playing line 5");
- ca5=1;
- dwPlayCammySpeech(16005, "T1ca005.wav", 15, 2);
- }
- if ( (getsenderid()==6)&&(ca6==0) ) {
- print("playing line 6");
- ca6=1;
- dwPlayCammySpeech(16006, "T1ca006.wav", 15, 2);
- }
- if ( (getsenderid()==7)&&(ca7==0) ) {
- print("playing line 7");
- ca7=1;
- dwPlayCammySpeech(16007, "T1ca007.wav", 15, 2);
- }
- return;
-
-
- end
-
-