home *** CD-ROM | disk | FTP | other *** search
- /*
- Help and status messages by DaScott
- */
-
- void() ShowHelp =
-
- {
- sprint(self, "=======\n");
- sprint(self, "DaScott's DM Modifications 1.0\n");
- sprint(self, "das_dm10.zip email: dascott@richnet.com\n");
- sprint(self, "========\n");
- sprint(self, "Alternate Weapon Mode: Impulse 20\n");
- sprint(self, "Throw Backpack: Impulse 21\n");
- sprint(self, "Multiskin: Impulse 200/201 to cycle\n");
- sprint(self, "Observation mode: Impulse 210\n");
- sprint(self, "Server info: Impulse 35\n");
- };
-
- void() ShowSettings =
-
- {
- local string das;
- local float timelimit, fraglimit;
-
- timelimit = cvar("timelimit");
- fraglimit = cvar("fraglimit");
-
- // sprint(self, "Your Server Name here\n"); Advertising space ;>
-
- if (deathmatch)
- {
- das = ftos(deathmatch);
- sprint(self, "Deathmatch: ");
- sprint(self, das);
- }
-
- if (coop)
- sprint(self, "Cooperative ");
-
- if (teamplay)
- {
- das = ftos(teamplay);
- sprint(self, " Teamplay: ");
- sprint(self, das);
- sprint(self, "\n");
- }
-
- if (fraglimit)
- {
- das = ftos(fraglimit);
- sprint(self, " Fraglimit: ");
- sprint(self, das);
- sprint(self, "\n");
- }
-
- if (timelimit)
- {
- das = ftos(timelimit);
- sprint(self, "Timelimit: ");
- sprint(self, das);
- sprint(self, "\n");
- }
-
- if (cvar("noexit"))
- sprint(self, "No Exit!\n");
-
- };
-
- void() ObserverHelp =
-
- {
- sprint(self, "Observer Mode Help: You are\n");
- sprint(self, "NOCLIP, FLYING, GODMODE, INVIS\n");
- sprint(self, "Up/down swim keys change altitude\n");
- sprint(self, "You will remain an observer until change of map");
- sprint(self, "Or you may reconnect\n");
- };
-