mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-11 03:25:15 +00:00
ftt: Add autopunish mode & directly vomit player
This commit is contained in:
parent
17c20dff83
commit
69c8e37509
2 changed files with 3 additions and 3 deletions
Binary file not shown.
|
@ -94,7 +94,7 @@ enum L4D2Infected
|
||||||
L4D2Infected_Witch = 7,
|
L4D2Infected_Witch = 7,
|
||||||
L4D2Infected_Tank = 8
|
L4D2Infected_Tank = 8
|
||||||
};
|
};
|
||||||
int g_iTrollUsers[MAXPLAYERS+1], g_iAttackerTarget[MAXPLAYERS+1], autoPunished = -1, autoPunishMode;
|
int g_iTrollUsers[MAXPLAYERS+1], g_iAttackerTarget[MAXPLAYERS+1], autoPunished = -1, autoPunishMode, lastButtonUser;
|
||||||
bool g_bPendingItemGive[MAXPLAYERS+1];
|
bool g_bPendingItemGive[MAXPLAYERS+1];
|
||||||
|
|
||||||
|
|
||||||
|
@ -117,7 +117,7 @@ void ApplyModeToClient(int client, int victim, trollMode mode, TrollModifier mod
|
||||||
case Troll_SlowDrain: {}
|
case Troll_SlowDrain: {}
|
||||||
case Troll_TempHealthQuickDrain: {}
|
case Troll_TempHealthQuickDrain: {}
|
||||||
case Troll_VomitPlayer: {
|
case Troll_VomitPlayer: {
|
||||||
ClientCommand(client, "sm_vomitplayer #%d", GetClientUserId(victim));
|
L4D_CTerrorPlayer_OnVomitedUpon(victim, victim);
|
||||||
}
|
}
|
||||||
|
|
||||||
case Troll_Reset: {
|
case Troll_Reset: {
|
||||||
|
@ -219,7 +219,7 @@ void ApplyModeToClient(int client, int victim, trollMode mode, TrollModifier mod
|
||||||
PrintToServer("Troll Mode #%d not implemented (%s)", mode, TROLL_MODES_NAMES[mode]);
|
PrintToServer("Troll Mode #%d not implemented (%s)", mode, TROLL_MODES_NAMES[mode]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(HasTrollMode(client, mode)) {
|
if(HasTrollMode(victim, mode)) {
|
||||||
ShowActivity(client, "deactivated troll \"%s\" on %N. ", TROLL_MODES_NAMES[mode], victim);
|
ShowActivity(client, "deactivated troll \"%s\" on %N. ", TROLL_MODES_NAMES[mode], victim);
|
||||||
}else{
|
}else{
|
||||||
ShowActivity(client, "activated troll \"%s\" on %N. ", TROLL_MODES_NAMES[mode], victim);
|
ShowActivity(client, "activated troll \"%s\" on %N. ", TROLL_MODES_NAMES[mode], victim);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue