home *** CD-ROM | disk | FTP | other *** search
- # Droids Cog Script
- #
- # D0_skyway.cog
- #
- # Goals for catapult
- #
- #
- #
- #
- #
- # [MT]
- #
- #
- # (C) 1997 LucasLearningLimited. All Rights Reserved
-
-
-
- symbols
- message startup
- message shutdown
-
- message entered
- message user4
- sector controlroom
-
- end
-
- ## Code Section
- code
-
- startup:
- player=getlocalplayerthing();
- if (dwCheckDroidCaps(16)!=0) SetInv(player, 3, 1);
- if (dwCheckDroidCaps(8)!=0) SetInv(player, 4, 1);
- return;
-
- entered:
- print("goal 1");
- SetInv(player, 1, 1);
- return;
-
- user4:
- print("goal 2");
- SetInv(player, 2, 1);
- return;
-
-
-
-
-
- end
-
-
-
-
-