home *** CD-ROM | disk | FTP | other *** search
- symbols
- message startup
- message pulse
- message timer
- sector Lsector
- end
-
- ## Code Section
- code
- startup:
- flamenum=rand();
- settimer(flamenum);
- setsectorlight(Lsector, 1.0, flamenum);
- x=0;
- return;
-
- timer:
- JonBlossom=rand()/2.6;
- if (x==0) {
- setsectorlight(Lsector, 0.2, JonBlossom);
- x=1;
- }
- if (x==1) {
- setsectorlight(Lsector, 1.0, JonBlossom);
- x=0;
- }
- settimer(JonBlossom);
- return;
-
-
- end
-
-
-
-
-
-
-
-
-
-
-