| CODE |
| [scripts] mobj chexguy; mobj ship; int skipping = 0; script 17 { runcommand("gr_fogcolor 000000\n"); runcommand("gr_fogdensity 100000\n"); runcommand("viewsize 12\n"); setpicvisible(widescreen, 1); chexguy = spawn(PLAYER, -1224, 656, 90, 24); setcamera(18, (0), (64), (0)); wait(200); if(skipping == 1) { goto(skip1); } setcamera(75, (315), (72), (0)); (Part of script removed to keep post length down) startscript(200); wait(300); if(skipping == 1) { goto(skip1); } setcamera(77, (90), (64), (0)); startscript(201); wait(100); skip1: ship = spawn(TALLTECHPILLAR, -192, -512, 0, 448); if(skipping == 1) { goto(skip2); } (Part of script removed to keep post length down) setcamera(18, (0), (56), (0)); wait(300); if(skipping == 1) { goto(skip2); } timedtip(200, "Oh no..."); wait(300); skip2: silentteleport(19, 28); runcommand("viewsize 10\n"); setpicvisible(widescreen, 0); clearcamera(); startscript(201); wait(300); timedtip(300, "I guess I'm not going to get any gas here."); } script 29 { skipping = 1; } |