forked from ShakaUVM/CustomTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPROZAC.QC
59 lines (45 loc) · 2.41 KB
/
PROZAC.QC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*=======================================================//
// prozac.QC - CustomTF 3.2.OfN - 15/11/2004 - //
// by Sergio Fumaña Grunwaldt - OfteN [cp] //
=========================================================//
ProZac Message Of The Day (MOTD) and un/related stuff :)
=========================================================*/
#define MSG_OFTEN_CUTFVERSION "Running progs build 272 Û02¯02¯2009Ý\n"
#define MSG_INFO "\nType ¢cmd help¢ to see additional client commands.\n"
#define MSG_CUTFVERSION "ÐÒÏÚÁÃ CustomÔÆ VERSION 02-02-09" //WK Version Number
#define MSG_INTRO "Welcome to ÐÒÏÚÁà CustomÔÆ\na Quake ÔÆ MOD by ShakaUVM\nwww®customtf®com\n\nžžžžžžžžžžžžžžžžžžžžžžžžžžžžŸ\n\n"
#define MSG_INTRO2 "Based on the aussie ver by SB-1\nModified version by Clan Prozac\n\n" // žžžžžžžžžžžžžžžžžžžžžžžžžžŸ\n\n
#define MSG_INTRO3 "Post bug reports and comments on:\nhttp:¯¯customtf®sourceforge®net¯forum¯"
//WK 152 Default, must be > 6.
#define MOTD_FINISHED 152 //WK 1/7/7 420 //242 //Delay in 1/10th seconds for motd to show
void() PrintProzacMOTD =
{
local string st;
st = "žŸ Celebrating *10* years!! žŸ\n\n";
if ((self.#cprint_fx & 3) == 3)
st = colstr(st,#COLSTR_MIX1);
else if (self.#cprint_fx & 2)
st = colstr(st,#COLSTR_RED);
else if (self.#cprint_fx & 1)
st = colstr(st,#COLSTR_MIX2);
CenterPrint4(self,#MSG_INTRO,#MSG_INTRO2,st,#MSG_INTRO3);
self.#cprint_fx = self.#cprint_fx + 1;
};
void() PrintProzacIntro =
{
if (!no_votemap && !no_punish)
sprint(self,#PRINT_HIGH,"\nVoting You can issue a vote by using the ¢VoteMap¢ and ¢Punish¢ aliases.\n");
else
{
if (!no_punish)
sprint(self,#PRINT_HIGH,"\nVoting You can issue a vote by using ¢VoteMap¢ alias.\n");
else if (!no_votemap)
sprint(self,#PRINT_HIGH,"\nVoting You can issue a vote by using ¢Punish¢ alias.\n");
}
//sprint (self, #PRINT_HIGH, #MSG_INFO, "\n",#MSG_OFTEN_CUTFVERSION, "\nžžŸ ", #MSG_CUTFVERSION, " žžžŸ\n Éîæïòíáôéïî èïíåðáçå:\n www®telefragged®com¯shaka\nžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžŸ\n\n");
sprint (self, #PRINT_HIGH, #MSG_INFO, "\n",#MSG_OFTEN_CUTFVERSION, "\nžžŸ ", #MSG_CUTFVERSION, " žžžŸ\n Éîæïòíáôéïî èïíåðáçå:\n http:¯¯www®customtf®org¯forums\nžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžŸ\n\n");
// PZ - Attackers Go Red mode
if (agr) { AGR_introducePlayer(); sprint(self, #PRINT_HIGH, "\n"); }
// for Neo mode
if (neo) { Neo_introducePlayer(); sprint(self, #PRINT_HIGH, "\n"); }
};