- added 'kill baddies' cheat - does the same thing as 'kill monsters' only it ignores friendly monsters
This commit is contained in:
parent
62a4eb6b6d
commit
5918167fb3
5 changed files with 16 additions and 5 deletions
|
|
@ -1966,6 +1966,15 @@ CCMD (kill)
|
|||
Net_WriteByte (DEM_GENERICCHEAT);
|
||||
Net_WriteByte (CHT_MASSACRE);
|
||||
}
|
||||
else if (!stricmp (argv[1], "baddies"))
|
||||
{
|
||||
// Kill all the unfriendly monsters
|
||||
if (CheckCheatmode ())
|
||||
return;
|
||||
|
||||
Net_WriteByte (DEM_GENERICCHEAT);
|
||||
Net_WriteByte (CHT_MASSACRE2);
|
||||
}
|
||||
else
|
||||
{
|
||||
Net_WriteByte (DEM_KILLCLASSCHEAT);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue