6
|
1 /*--------------------------------------------------------------------------
|
|
2 NETREK II -- Paradise
|
|
3
|
|
4 Permission to use, copy, modify, and distribute this software and its
|
|
5 documentation, or any derivative works thereof, for any NON-COMMERCIAL
|
|
6 purpose and without fee is hereby granted, provided that this copyright
|
|
7 notice appear in all copies. No representations are made about the
|
|
8 suitability of this software for any purpose. This software is provided
|
|
9 "as is" without express or implied warranty.
|
|
10
|
|
11 Xtrek Copyright 1986 Chris Guthrie
|
|
12 Netrek (Xtrek II) Copyright 1989 Kevin P. Smith
|
|
13 Scott Silvey
|
|
14 Paradise II (Netrek II) Copyright 1993 Larry Denys
|
|
15 Kurt Olsen
|
|
16 Brandon Gillespie
|
|
17 --------------------------------------------------------------------------*/
|
|
18
|
|
19
|
|
20
|
|
21
|
|
22
|
|
23 /*----------------------------FUNCTION PROTOTYPES-------------------------*/
|
|
24 void fractbomb(); /* do fractional bombing */
|
|
25 void loserstats(); /* inc a killed player's losses */
|
|
26 void killerstats(); /* inc killers kills */
|
|
27 void checkmaxkills(); /* adjust player's maxkills if need be */
|
|
28 void blowup(); /* inflict damage on nearby players */
|
|
29 void beam(); /* beam up and down for players */
|
|
30 void udcloak(); /* inc/dec the cloakphases for players */
|
|
31 void udplayers(); /* update the players */
|
|
32 /*-----------------------------------------------------------------------*/
|
|
33
|
|
34
|
|
35
|
|
36
|
|
37
|
|
38
|
|
39 /*----------END OF FILE--------*/
|