home *** CD-ROM | disk | FTP | other *** search
- symbols
- message user0
- message timer
-
- sound threewav
- sound twowav
- sound onewav
-
- cog catapultcog
- end
-
- code
- user0:
- jgs=3;
- settimer(1);
- return;
-
-
- timer:
- if (jgs==3) {
- playsoundlocal(threewav, 1.0, 0.0, 4);
- jgs=2;
- settimer(1);
- }
- else if (jgs==2) {
- playsoundlocal(twowav, 1.0, 0.0, 4);
- jgs=1;
- settimer(1);
- }
- else if (jgs==1) {
- playsoundlocal(onewav, 1.0, 0.0, 4);
- settimer(1);
- jgs=0;
- }
- else if (jgs==0) {
- sendmessage(catapultcog, user0);
- }
- return;
-
- end
-
-
-