9
9
10
10
#define MENU_TIME_LENGTH 15
11
11
12
- bool g_SilencedM4 [MAXPLAYERS +1 ];
12
+ char g_CTRifleChoice [MAXPLAYERS +1 ][WEAPON_STRING_LENGTH ];
13
+ char g_TRifleChoice [MAXPLAYERS +1 ][WEAPON_STRING_LENGTH ];
13
14
bool g_AwpChoice [MAXPLAYERS +1 ];
14
- Handle g_hM4ChoiceCookie = INVALID_HANDLE ;
15
+ Handle g_hCTRifleChoiceCookie = INVALID_HANDLE ;
16
+ Handle g_hTRifleChoiceCookie = INVALID_HANDLE ;
15
17
Handle g_hAwpChoiceCookie = INVALID_HANDLE ;
16
18
17
19
public Plugin myinfo = {
@@ -23,12 +25,14 @@ public Plugin myinfo = {
23
25
};
24
26
25
27
public void OnPluginStart () {
26
- g_hM4ChoiceCookie = RegClientCookie (" retakes_m4choice" , " " , CookieAccess_Private );
28
+ g_hCTRifleChoiceCookie = RegClientCookie (" retakes_ctriflechoice" , " " , CookieAccess_Private );
29
+ g_hTRifleChoiceCookie = RegClientCookie (" retakes_triflechoice" , " " , CookieAccess_Private );
27
30
g_hAwpChoiceCookie = RegClientCookie (" retakes_awpchoice" , " " , CookieAccess_Private );
28
31
}
29
32
30
33
public void OnClientConnected (int client ) {
31
- g_SilencedM4 [client ] = false ;
34
+ g_CTRifleChoice [client ] = " m4a1" ;
35
+ g_TRifleChoice [client ] = " ak47" ;
32
36
g_AwpChoice [client ] = false ;
33
37
}
34
38
@@ -46,8 +50,12 @@ public void Retakes_OnWeaponsAllocated(ArrayList tPlayers, ArrayList ctPlayers,
46
50
public void OnClientCookiesCached (int client ) {
47
51
if (IsFakeClient (client ))
48
52
return ;
49
-
50
- g_SilencedM4 [client ] = GetCookieBool (client , g_hM4ChoiceCookie );
53
+ char ctrifle [WEAPON_STRING_LENGTH ];
54
+ char trifle [WEAPON_STRING_LENGTH ];
55
+ GetClientCookie (client , g_hCTRifleChoiceCookie , ctrifle , sizeof (ctrifle ));
56
+ GetClientCookie (client , g_hTRifleChoiceCookie , trifle , sizeof (trifle ));
57
+ g_CTRifleChoice [client ] = ctrifle ;
58
+ g_TRifleChoice [client ] = trifle ;
51
59
g_AwpChoice [client ] = GetCookieBool (client , g_hAwpChoiceCookie );
52
60
}
53
61
@@ -82,6 +90,8 @@ public void WeaponAllocator(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bo
82
90
if (giveTAwp && g_AwpChoice [client ]) {
83
91
primary = " weapon_awp" ;
84
92
giveTAwp = false ;
93
+ } else if (StrEqual (g_TRifleChoice [client ], " sg556" , true )) {
94
+ primary = " weapon_sg556" ;
85
95
} else {
86
96
primary = " weapon_ak47" ;
87
97
}
@@ -102,10 +112,12 @@ public void WeaponAllocator(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bo
102
112
if (giveCTAwp && g_AwpChoice [client ]) {
103
113
primary = " weapon_awp" ;
104
114
giveCTAwp = false ;
105
- } else if (g_SilencedM4 [client ]) {
115
+ } else if (StrEqual ( g_CTRifleChoice [client ], " m4a1_silencer " , true ) ) {
106
116
primary = " weapon_m4a1_silencer" ;
107
- } else {
117
+ } else if ( StrEqual ( g_CTRifleChoice [ client ], " m4a1 " , true )) {
108
118
primary = " weapon_m4a1" ;
119
+ } else {
120
+ primary = " weapon_aug" ;
109
121
}
110
122
111
123
secondary = " weapon_hkp2000" ;
@@ -120,19 +132,42 @@ public void WeaponAllocator(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bo
120
132
}
121
133
122
134
public void GiveWeaponsMenu (int client ) {
123
- Handle menu = CreateMenu (MenuHandler_M4 );
135
+ Handle menu = CreateMenu (MenuHandler_CTRifle );
124
136
SetMenuTitle (menu , " Select a CT rifle:" );
125
- AddMenuBool (menu , false , " M4A4" );
126
- AddMenuBool (menu , true , " M4A1-S" );
137
+ AddMenuItem (menu , " m4a1" , " M4A4" );
138
+ AddMenuItem (menu , " m4a1_silencer" , " M4A1-S" );
139
+ AddMenuItem (menu , " aug" , " AUG" );
140
+ DisplayMenu (menu , client , MENU_TIME_LENGTH );
141
+ }
142
+
143
+ public int MenuHandler_CTRifle (Handle menu , MenuAction action , int param1 , int param2 ) {
144
+ if (action == MenuAction_Select ) {
145
+ int client = param1 ;
146
+ char choice [WEAPON_STRING_LENGTH ];
147
+ GetMenuItem (menu , param2 , choice , sizeof (choice ));
148
+ g_CTRifleChoice [client ] = choice ;
149
+ SetClientCookie (client , g_hCTRifleChoiceCookie , choice );
150
+ TRifleMenu (client );
151
+ } else if (action == MenuAction_End ) {
152
+ CloseHandle (menu );
153
+ }
154
+ }
155
+
156
+ public void TRifleMenu (int client ) {
157
+ Handle menu = CreateMenu (MenuHandler_TRifle );
158
+ SetMenuTitle (menu , " Select a T rifle:" );
159
+ AddMenuItem (menu , " ak47" , " AK-47" );
160
+ AddMenuItem (menu , " sg556" , " SG-556" );
127
161
DisplayMenu (menu , client , MENU_TIME_LENGTH );
128
162
}
129
163
130
- public int MenuHandler_M4 (Handle menu , MenuAction action , int param1 , int param2 ) {
164
+ public int MenuHandler_TRifle (Handle menu , MenuAction action , int param1 , int param2 ) {
131
165
if (action == MenuAction_Select ) {
132
166
int client = param1 ;
133
- bool useSilenced = GetMenuBool (menu , param2 );
134
- g_SilencedM4 [client ] = useSilenced ;
135
- SetCookieBool (client , g_hM4ChoiceCookie , useSilenced );
167
+ char choice [WEAPON_STRING_LENGTH ];
168
+ GetMenuItem (menu , param2 , choice , sizeof (choice ));
169
+ g_TRifleChoice [client ] = choice ;
170
+ SetClientCookie (client , g_hTRifleChoiceCookie , choice );
136
171
GiveAwpMenu (client );
137
172
} else if (action == MenuAction_End ) {
138
173
CloseHandle (menu );
@@ -156,4 +191,4 @@ public int MenuHandler_AWP(Handle menu, MenuAction action, int param1, int param
156
191
} else if (action == MenuAction_End ) {
157
192
CloseHandle (menu );
158
193
}
159
- }
194
+ }
1 commit comments
Chizi1337 commentedon Oct 5, 2019
what do you mean with *zip and *smx? i´m new to the cs server scene so a bit of help is appreciated, ty