mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-05 22:33:20 +00:00
FlyYouFools: minor reset logic changes
This commit is contained in:
parent
f31219a4f6
commit
b4e52938df
2 changed files with 2 additions and 6 deletions
Binary file not shown.
|
@ -44,7 +44,6 @@ public void OnPluginStart()
|
||||||
|
|
||||||
public void OnMapStart() {
|
public void OnMapStart() {
|
||||||
resetPlugin();
|
resetPlugin();
|
||||||
FindExistingTank();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Event_RoundStart(Event event, const char[] name, bool dontBroadcast) {
|
public void Event_RoundStart(Event event, const char[] name, bool dontBroadcast) {
|
||||||
|
@ -138,9 +137,7 @@ public Action BotControlTimerV2(Handle timer)
|
||||||
void resetPlugin() {
|
void resetPlugin() {
|
||||||
bEscapeReady = false;
|
bEscapeReady = false;
|
||||||
iAliveTanks = 0;
|
iAliveTanks = 0;
|
||||||
for(int i = 0; i < sizeof(bIsTank); i++) {
|
FindExistingTank();
|
||||||
bIsTank[i] = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -153,8 +150,7 @@ public void FindExistingTank() {
|
||||||
GetClientName(i, name, sizeof(name));
|
GetClientName(i, name, sizeof(name));
|
||||||
if(StrContains(name, "Tank", true) > -1) {
|
if(StrContains(name, "Tank", true) > -1) {
|
||||||
bIsTank[i] = true;
|
bIsTank[i] = true;
|
||||||
PrintToChatAll("Found existing tank: %N (%i)", i, i);
|
PrintToServer("Found existing tank: %N (%i)", i, i);
|
||||||
|
|
||||||
iAliveTanks++;
|
iAliveTanks++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue