entWatch4: Push it all to GIT, fuck local storage.

Had to rename the entWatch.inc cause compiler refused to use the right
one otherwise. :table:
This commit is contained in:
zaCade
2017-11-21 02:42:57 +01:00
parent 6491c3d2b6
commit b06ee55b63
8 changed files with 68 additions and 7 deletions
+1 -1
View File
@@ -12,7 +12,7 @@
#include <sourcemod> #include <sourcemod>
#include <sdkhooks> #include <sdkhooks>
#include <sdktools> #include <sdktools>
#include <entWatch> #include <entWatch4>
/* BOOLS */ /* BOOLS */
bool g_bLate; bool g_bLate;
+31
View File
@@ -0,0 +1,31 @@
//====================================================================================================
//
// Name: [entWatch] Beacons
// Author: zaCade & Prometheum
// Description: Handle the beacons of [entWatch]
//
//====================================================================================================
#include <smlib>
#pragma newdecls required
#include <sourcemod>
#include <entWatch_core>
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Plugin myinfo =
{
name = "[entWatch] Beacons",
author = "zaCade & Prometheum",
description = "Handle the beacons of [entWatch]",
version = "4.0.0"
};
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnPluginStart()
{
}
+1 -1
View File
@@ -10,7 +10,7 @@
#pragma newdecls required #pragma newdecls required
#include <sourcemod> #include <sourcemod>
#include <entWatch> #include <entWatch4>
#include <entWatch_core> #include <entWatch_core>
//---------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------
-1
View File
@@ -10,7 +10,6 @@
#pragma newdecls required #pragma newdecls required
#include <sourcemod> #include <sourcemod>
#include <entWatch>
#include <entWatch_core> #include <entWatch_core>
#include <entWatch_restrictions> #include <entWatch_restrictions>
+2 -2
View File
@@ -5,13 +5,13 @@
// Description: Handle the chat messages of [entWatch] // Description: Handle the chat messages of [entWatch]
// //
//==================================================================================================== //====================================================================================================
#include <morecolors>
#include <smlib> #include <smlib>
#include <multicolors>
#pragma newdecls required #pragma newdecls required
#include <sourcemod> #include <sourcemod>
#include <entWatch> #include <entWatch4>
#include <entWatch_core> #include <entWatch_core>
#define MESSAGEFORMAT "\x07%s[entWatch] \x07%s%s \x07%s(\x07%s%s\x07%s) %t \x07%s%s" #define MESSAGEFORMAT "\x07%s[entWatch] \x07%s%s \x07%s(\x07%s%s\x07%s) %t \x07%s%s"
@@ -5,14 +5,14 @@
// Description: Handle the restrictions of [entWatch] // Description: Handle the restrictions of [entWatch]
// //
//==================================================================================================== //====================================================================================================
#include <morecolors>
#include <smlib> #include <smlib>
#include <multicolors>
#pragma newdecls required #pragma newdecls required
#include <sourcemod> #include <sourcemod>
#include <clientprefs> #include <clientprefs>
#include <entWatch> #include <entWatch4>
#include <entWatch_core> #include <entWatch_core>
/* FORWARDS */ /* FORWARDS */
+31
View File
@@ -0,0 +1,31 @@
//====================================================================================================
//
// Name: [entWatch] Tools
// Author: zaCade & Prometheum
// Description: Handle the tools of [entWatch]
//
//====================================================================================================
#include <smlib>
#pragma newdecls required
#include <sourcemod>
#include <entWatch_core>
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Plugin myinfo =
{
name = "[entWatch] Tools",
author = "zaCade & Prometheum",
description = "Handle the tools of [entWatch]",
version = "4.0.0"
};
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnPluginStart()
{
}