Skip to content

Commit b6f71a9

Browse files
MoritzLoewensteinsplewis
authored andcommittedJan 25, 2019
Added AUG to CT Rifle Choices, new T Rifle Menu (AK47/SG556) (#178)
1 parent 1982e18 commit b6f71a9

File tree

2 files changed

+52
-17
lines changed

2 files changed

+52
-17
lines changed
 

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
*.zip
22
*.smx
3-
builds
3+
builds

‎scripting/retakes_standardallocator.sp

+51-16
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99

1010
#define MENU_TIME_LENGTH 15
1111

12-
bool g_SilencedM4[MAXPLAYERS+1];
12+
char g_CTRifleChoice[MAXPLAYERS+1][WEAPON_STRING_LENGTH];
13+
char g_TRifleChoice[MAXPLAYERS+1][WEAPON_STRING_LENGTH];
1314
bool g_AwpChoice[MAXPLAYERS+1];
14-
Handle g_hM4ChoiceCookie = INVALID_HANDLE;
15+
Handle g_hCTRifleChoiceCookie = INVALID_HANDLE;
16+
Handle g_hTRifleChoiceCookie = INVALID_HANDLE;
1517
Handle g_hAwpChoiceCookie = INVALID_HANDLE;
1618

1719
public Plugin myinfo = {
@@ -23,12 +25,14 @@ public Plugin myinfo = {
2325
};
2426

2527
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);
2730
g_hAwpChoiceCookie = RegClientCookie("retakes_awpchoice", "", CookieAccess_Private);
2831
}
2932

3033
public void OnClientConnected(int client) {
31-
g_SilencedM4[client] = false;
34+
g_CTRifleChoice[client] = "m4a1";
35+
g_TRifleChoice[client] = "ak47";
3236
g_AwpChoice[client] = false;
3337
}
3438

@@ -46,8 +50,12 @@ public void Retakes_OnWeaponsAllocated(ArrayList tPlayers, ArrayList ctPlayers,
4650
public void OnClientCookiesCached(int client) {
4751
if (IsFakeClient(client))
4852
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;
5159
g_AwpChoice[client] = GetCookieBool(client, g_hAwpChoiceCookie);
5260
}
5361

@@ -82,6 +90,8 @@ public void WeaponAllocator(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bo
8290
if (giveTAwp && g_AwpChoice[client]) {
8391
primary = "weapon_awp";
8492
giveTAwp = false;
93+
} else if(StrEqual(g_TRifleChoice[client], "sg556", true)) {
94+
primary = "weapon_sg556";
8595
} else {
8696
primary = "weapon_ak47";
8797
}
@@ -102,10 +112,12 @@ public void WeaponAllocator(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bo
102112
if (giveCTAwp && g_AwpChoice[client]) {
103113
primary = "weapon_awp";
104114
giveCTAwp = false;
105-
} else if (g_SilencedM4[client]) {
115+
} else if (StrEqual(g_CTRifleChoice[client], "m4a1_silencer", true)) {
106116
primary = "weapon_m4a1_silencer";
107-
} else {
117+
} else if (StrEqual(g_CTRifleChoice[client], "m4a1", true)) {
108118
primary = "weapon_m4a1";
119+
} else {
120+
primary = "weapon_aug";
109121
}
110122

111123
secondary = "weapon_hkp2000";
@@ -120,19 +132,42 @@ public void WeaponAllocator(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bo
120132
}
121133

122134
public void GiveWeaponsMenu(int client) {
123-
Handle menu = CreateMenu(MenuHandler_M4);
135+
Handle menu = CreateMenu(MenuHandler_CTRifle);
124136
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");
127161
DisplayMenu(menu, client, MENU_TIME_LENGTH);
128162
}
129163

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) {
131165
if (action == MenuAction_Select) {
132166
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);
136171
GiveAwpMenu(client);
137172
} else if (action == MenuAction_End) {
138173
CloseHandle(menu);
@@ -156,4 +191,4 @@ public int MenuHandler_AWP(Handle menu, MenuAction action, int param1, int param
156191
} else if (action == MenuAction_End) {
157192
CloseHandle(menu);
158193
}
159-
}
194+
}

1 commit comments

Comments
 (1)

Chizi1337 commented on Oct 5, 2019

@Chizi1337

what do you mean with *zip and *smx? i´m new to the cs server scene so a bit of help is appreciated, ty

Please sign in to comment.