-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
63 additions
and
731 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
scripting/include/ru/entity.inc → ...pting/include/respawn-unlocker/entity.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
scripting/include/ru/math.inc → scripting/include/respawn-unlocker/math.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
scripting/include/ru/menu.inc → scripting/include/respawn-unlocker/menu.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#if defined _respawn_unlocker_message_included | ||
#endinput | ||
#endif | ||
#define _respawn_unlocker_message_included | ||
|
||
#define COLOR_DEFAULT "\x01" | ||
|
||
#define PREFIX "[Respawn unlocker] " | ||
#define PREFIX_COLORED "Prefix colored" | ||
|
||
#define CONSOLE 0 |
4 changes: 2 additions & 2 deletions
4
scripting/include/ru/storage.inc → ...ting/include/respawn-unlocker/storage.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
scripting/include/ru/visualizer.inc → ...g/include/respawn-unlocker/visualizer.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
void Event_Create() { | ||
HookEvent("dod_round_start", Event_RoundStart); | ||
HookEvent("dod_round_win", Event_RoundWin); | ||
} | ||
|
||
public Action Event_RoundStart(Event event, const char[] name, bool dontBroadcast) { | ||
UseCase_RestoreWalls(); | ||
CrateEditor_Clear(); | ||
|
||
return Plugin_Continue; | ||
} | ||
|
||
public Action Event_RoundWin(Event event, const char[] name, bool dontBroadcast) { | ||
UseCase_DisableWalls(); | ||
UseCase_DisableTriggers(); | ||
UseCase_AddCrates(); | ||
|
||
return Plugin_Continue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters