Compare commits
40
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cc5d87578f | ||
|
|
123a5c6f66 | ||
|
|
9e20e01ee4 | ||
|
|
c275bcdb96 | ||
|
|
0036fe29cd | ||
|
|
6e6655f577 | ||
|
|
66220ba56a | ||
|
|
d0e54cafe7 | ||
|
|
20bdc2b435 | ||
|
|
ad2650b0aa | ||
|
|
4ac8430608 | ||
|
|
c6405bfb63 | ||
|
|
cdbaac15a1 | ||
|
|
d2cf4e3364 | ||
|
|
bce587edca | ||
|
|
f55a11b8cf | ||
|
|
71f73ddc3a | ||
|
|
693c0cf41b | ||
|
|
ce77a86808 | ||
|
|
a8242fd7e3 | ||
|
|
cfe8757570 | ||
|
|
896d949a82 | ||
|
|
391807c8ce | ||
|
|
39539757cf | ||
|
|
479b1e8225 | ||
|
|
956259b336 | ||
|
|
e6b7b79127 | ||
|
|
a1f6c94f1e | ||
|
|
5f312fb76e | ||
|
|
b231caae50 | ||
|
|
5596e65f6d | ||
|
|
fc7f7efc4b | ||
|
|
8a73628451 | ||
|
|
1928cb7e33 | ||
|
|
67b7df2a4e | ||
|
|
fd5033120a | ||
|
|
080ee88b17 | ||
|
|
7951515ff3 | ||
|
|
d1568472c6 | ||
|
|
227e2e1b0c |
@@ -5,3 +5,4 @@ b3ffa8a4511c4eadaf533fc790aa6b14f7f0c6ea sourcemod-1.1.2
|
|||||||
3a73bbf60f34befa9b66be03fa5974b394bb3411 sourcemod-1.2.0
|
3a73bbf60f34befa9b66be03fa5974b394bb3411 sourcemod-1.2.0
|
||||||
ddd707c3454c382db5db9d28148cd19227f44759 sourcemod-1.4.0
|
ddd707c3454c382db5db9d28148cd19227f44759 sourcemod-1.4.0
|
||||||
f74e1dea2ef2c5a12b5238badc0e877106804191 sourcemod-1.4.1
|
f74e1dea2ef2c5a12b5238badc0e877106804191 sourcemod-1.4.1
|
||||||
|
0026e1394254c392244c7b140e3075974ab5a6db sourcemod-1.4.2
|
||||||
|
|||||||
@@ -2,6 +2,37 @@ SourceMod Changelog
|
|||||||
|
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
|
SourceMod 1.4.3 [2012-06-09]
|
||||||
|
|
||||||
|
URL: http://wiki.alliedmods.net/SourceMod_1.4.3_Release_Notes
|
||||||
|
|
||||||
|
User Changes:
|
||||||
|
|
||||||
|
- Updated support for latest OrangeBox engine changes (CS:S, DoD:S, TF2, HL2DM, GMod).
|
||||||
|
- Made clientprefs attempt to reconnect to the database on map change (bug 4745).
|
||||||
|
- Log functions now respect sv_logecho (bug 5135).
|
||||||
|
- Fixed client console vote output (bug 5290, bug 5205) (FlaminSarge).
|
||||||
|
- Fixed error when reloading dependant plugins using aliased natives (bug 5302).
|
||||||
|
- Fixed intermittent crash when looking for an invalid signature (bug 5301).
|
||||||
|
- Fixed possible crash when reloading a plugin with an invalid binary (bug 5288).
|
||||||
|
- Exposed extensions list to clients (bug 5221) (VoiDeD).
|
||||||
|
- Fixed intermittent crashes in clientprefs (bug 4660).
|
||||||
|
- Fixed crash when passing an invalid entity reference to ReferenceToEntity (bug 5330).
|
||||||
|
- Fixed cstrike extension crash on shutdown (bug 5328).
|
||||||
|
- Lowered threading API think time to 20ms, making threaded MySQL queries complete faster (bug 4733).
|
||||||
|
|
||||||
|
Developer Changes:
|
||||||
|
|
||||||
|
- Fixed client serials not being unique on Windows (bug 5285).
|
||||||
|
- Fixed broken SourceTV detection on L4D1 (bug 5216).
|
||||||
|
- Fixed Float negation operator (bug 5292).
|
||||||
|
- Updated TF2 condition defines (bug 5259) (FlaminSarge).
|
||||||
|
- Adding missing SetMenuNoVoteButton native declaration (bug 4522) (GoD-Tony).
|
||||||
|
- Fixed erroneous const-qualification of name param of GetAdminUsername (bug 5267).
|
||||||
|
- Added GetGameTickCount native (bug 5209) (GoD-Tony).
|
||||||
|
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
SourceMod 1.4.2 [2011-04-13]
|
SourceMod 1.4.2 [2011-04-13]
|
||||||
|
|
||||||
URL: http://wiki.alliedmods.net/SourceMod_1.4.2_Release_Notes
|
URL: http://wiki.alliedmods.net/SourceMod_1.4.2_Release_Notes
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
#include "sourcemm_api.h"
|
#include "sourcemm_api.h"
|
||||||
#include "sm_srvcmds.h"
|
#include "sm_srvcmds.h"
|
||||||
#include "sm_stringutil.h"
|
#include "sm_stringutil.h"
|
||||||
|
#include "PlayerManager.h"
|
||||||
|
|
||||||
CExtensionManager g_Extensions;
|
CExtensionManager g_Extensions;
|
||||||
IdentityType_t g_ExtType;
|
IdentityType_t g_ExtType;
|
||||||
@@ -1284,6 +1285,94 @@ void CExtensionManager::OnRootConsoleCommand(const char *cmdname, const CCommand
|
|||||||
g_RootMenu.DrawGenericOption("unload", "Unload an extension");
|
g_RootMenu.DrawGenericOption("unload", "Unload an extension");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CExtensionManager::ListExtensionsToClient(CPlayer *player, const CCommand &args)
|
||||||
|
{
|
||||||
|
char buffer[256];
|
||||||
|
int numExtensions = m_Libs.size();
|
||||||
|
edict_t *edict = player->GetEdict();
|
||||||
|
unsigned int id = 0;
|
||||||
|
unsigned int start = 0;
|
||||||
|
|
||||||
|
if (!numExtensions)
|
||||||
|
{
|
||||||
|
ClientConsolePrint(edict, "[SM] No extensions found.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (args.ArgC() > 2)
|
||||||
|
{
|
||||||
|
start = atoi(args.Arg(2));
|
||||||
|
}
|
||||||
|
|
||||||
|
CExtension *ext;
|
||||||
|
SourceHook::List<CExtension *>::iterator iter;
|
||||||
|
|
||||||
|
for (iter = m_Libs.begin();
|
||||||
|
iter != m_Libs.end();
|
||||||
|
iter++)
|
||||||
|
{
|
||||||
|
ext = (*iter);
|
||||||
|
|
||||||
|
char error[255];
|
||||||
|
if (!ext->IsRunning(error, sizeof(error)))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
id++;
|
||||||
|
if (id < start)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (id - start > 10)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
IExtensionInterface *api = ext->GetAPI();
|
||||||
|
|
||||||
|
const char *name = api->GetExtensionName();
|
||||||
|
const char *version = api->GetExtensionVerString();
|
||||||
|
const char *author = api->GetExtensionAuthor();
|
||||||
|
const char *description = api->GetExtensionDescription();
|
||||||
|
|
||||||
|
size_t len = UTIL_Format(buffer, sizeof(buffer), " \"%s\"", name);
|
||||||
|
|
||||||
|
if (version != NULL && IS_STR_FILLED(version))
|
||||||
|
{
|
||||||
|
len += UTIL_Format(&buffer[len], sizeof(buffer)-len, " (%s)", version);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (author != NULL && IS_STR_FILLED(author))
|
||||||
|
{
|
||||||
|
len += UTIL_Format(&buffer[len], sizeof(buffer)-len, " by %s", author);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (description != NULL && IS_STR_FILLED(description))
|
||||||
|
{
|
||||||
|
len += UTIL_Format(&buffer[len], sizeof(buffer)-len, ": %s", description);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ClientConsolePrint(edict, "%s", buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
while (iter != m_Libs.end())
|
||||||
|
{
|
||||||
|
char error[255];
|
||||||
|
if ((*iter)->IsRunning(error, sizeof(error)))
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (iter != m_Libs.end())
|
||||||
|
{
|
||||||
|
ClientConsolePrint(edict, "To see more, type \"sm exts %d\"", id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
CExtension *CExtensionManager::GetExtensionFromIdent(IdentityToken_t *ptr)
|
CExtension *CExtensionManager::GetExtensionFromIdent(IdentityToken_t *ptr)
|
||||||
{
|
{
|
||||||
if (ptr->type == g_ExtType)
|
if (ptr->type == g_ExtType)
|
||||||
|
|||||||
@@ -45,6 +45,8 @@
|
|||||||
#include "PluginSys.h"
|
#include "PluginSys.h"
|
||||||
#include "NativeOwner.h"
|
#include "NativeOwner.h"
|
||||||
|
|
||||||
|
class CPlayer;
|
||||||
|
|
||||||
using namespace SourceMod;
|
using namespace SourceMod;
|
||||||
using namespace SourceHook;
|
using namespace SourceHook;
|
||||||
|
|
||||||
@@ -175,6 +177,8 @@ public:
|
|||||||
bool LibraryExists(const char *library);
|
bool LibraryExists(const char *library);
|
||||||
void CallOnCoreMapStart(edict_t *pEdictList, int edictCount, int clientMax);
|
void CallOnCoreMapStart(edict_t *pEdictList, int edictCount, int clientMax);
|
||||||
void AddRawDependency(IExtension *ext, IdentityToken_t *other, void *iface);
|
void AddRawDependency(IExtension *ext, IdentityToken_t *other, void *iface);
|
||||||
|
public:
|
||||||
|
void ListExtensionsToClient(CPlayer *player, const CCommand &args);
|
||||||
public:
|
public:
|
||||||
CExtension *GetExtensionFromIdent(IdentityToken_t *ptr);
|
CExtension *GetExtensionFromIdent(IdentityToken_t *ptr);
|
||||||
void Shutdown();
|
void Shutdown();
|
||||||
|
|||||||
+10
-5
@@ -51,12 +51,12 @@ typedef ICommandLine *(*FakeGetCommandLine)();
|
|||||||
#define TIER0_NAME "libtier0.dylib"
|
#define TIER0_NAME "libtier0.dylib"
|
||||||
#define VSTDLIB_NAME "libvstdlib.dylib"
|
#define VSTDLIB_NAME "libvstdlib.dylib"
|
||||||
#elif defined __linux__
|
#elif defined __linux__
|
||||||
#if SOURCE_ENGINE == SE_EPISODEONE || SOURCE_ENGINE == ORANGEBOX || SOURCE_ENGINE == SE_LEFT4DEAD
|
#if SOURCE_ENGINE == SE_ORANGEBOXVALVE || SOURCE_ENGINE == SE_LEFT4DEAD || SOURCE_ENGINE == SE_LEFT4DEAD2
|
||||||
#define TIER0_NAME "tier0_i486.so"
|
|
||||||
#define VSTDLIB_NAME "vstdlib_i486.so"
|
|
||||||
#else
|
|
||||||
#define TIER0_NAME "libtier0.so"
|
#define TIER0_NAME "libtier0.so"
|
||||||
#define VSTDLIB_NAME "libvstdlib.so"
|
#define VSTDLIB_NAME "libvstdlib.so"
|
||||||
|
#else
|
||||||
|
#define TIER0_NAME "tier0_i486.so"
|
||||||
|
#define VSTDLIB_NAME "vstdlib_i486.so"
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -832,6 +832,11 @@ cell_t CHalfLife2::EntityToReference(CBaseEntity *pEntity)
|
|||||||
|
|
||||||
CBaseEntity *CHalfLife2::ReferenceToEntity(cell_t entRef)
|
CBaseEntity *CHalfLife2::ReferenceToEntity(cell_t entRef)
|
||||||
{
|
{
|
||||||
|
if ((unsigned)entRef == INVALID_EHANDLE_INDEX)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
CEntInfo *pInfo = NULL;
|
CEntInfo *pInfo = NULL;
|
||||||
|
|
||||||
if (entRef & (1<<31))
|
if (entRef & (1<<31))
|
||||||
@@ -841,7 +846,7 @@ CBaseEntity *CHalfLife2::ReferenceToEntity(cell_t entRef)
|
|||||||
CBaseHandle hndl(hndlValue);
|
CBaseHandle hndl(hndlValue);
|
||||||
|
|
||||||
pInfo = LookupEntity(hndl.GetEntryIndex());
|
pInfo = LookupEntity(hndl.GetEntryIndex());
|
||||||
if (pInfo->m_SerialNumber != hndl.GetSerialNumber())
|
if (!pInfo || pInfo->m_SerialNumber != hndl.GetSerialNumber())
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-1
@@ -265,6 +265,8 @@ void Logger::LogToOpenFileEx(FILE *fp, const char *msg, va_list ap)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static ConVar *sv_logecho = icvar->FindVar("sv_logecho");
|
||||||
|
|
||||||
char buffer[3072];
|
char buffer[3072];
|
||||||
UTIL_FormatArgs(buffer, sizeof(buffer), msg, ap);
|
UTIL_FormatArgs(buffer, sizeof(buffer), msg, ap);
|
||||||
|
|
||||||
@@ -275,7 +277,11 @@ void Logger::LogToOpenFileEx(FILE *fp, const char *msg, va_list ap)
|
|||||||
strftime(date, sizeof(date), "%m/%d/%Y - %H:%M:%S", curtime);
|
strftime(date, sizeof(date), "%m/%d/%Y - %H:%M:%S", curtime);
|
||||||
|
|
||||||
fprintf(fp, "L %s: %s\n", date, buffer);
|
fprintf(fp, "L %s: %s\n", date, buffer);
|
||||||
g_SMAPI->ConPrintf("L %s: %s\n", date, buffer);
|
|
||||||
|
if (!sv_logecho || sv_logecho->GetBool())
|
||||||
|
{
|
||||||
|
g_SMAPI->ConPrintf("L %s: %s\n", date, buffer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Logger::LogToFileOnlyEx(FILE *fp, const char *msg, va_list ap)
|
void Logger::LogToFileOnlyEx(FILE *fp, const char *msg, va_list ap)
|
||||||
|
|||||||
+2
-2
@@ -518,7 +518,7 @@ void VoteMenuHandler::OnMenuSelect(IBaseMenu *menu, int client, unsigned int ite
|
|||||||
m_Votes[item]++;
|
m_Votes[item]++;
|
||||||
m_NumVotes++;
|
m_NumVotes++;
|
||||||
|
|
||||||
if (sm_vote_chat.GetBool() || sm_vote_console.GetBool())
|
if (sm_vote_chat.GetBool() || sm_vote_console.GetBool() || sm_vote_client_console.GetBool())
|
||||||
{
|
{
|
||||||
static char buffer[1024];
|
static char buffer[1024];
|
||||||
ItemDrawInfo dr;
|
ItemDrawInfo dr;
|
||||||
@@ -560,7 +560,7 @@ void VoteMenuHandler::OnMenuSelect(IBaseMenu *menu, int client, unsigned int ite
|
|||||||
|
|
||||||
if (sm_vote_client_console.GetBool())
|
if (sm_vote_client_console.GetBool())
|
||||||
{
|
{
|
||||||
engine->ClientPrintf(pPlayer->GetEdict(), buffer);
|
ClientConsolePrint(pPlayer->GetEdict(), buffer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -745,6 +745,11 @@ void PlayerManager::OnClientCommand(edict_t *pEntity)
|
|||||||
g_PluginSys.ListPluginsToClient(pPlayer, args);
|
g_PluginSys.ListPluginsToClient(pPlayer, args);
|
||||||
RETURN_META(MRES_SUPERCEDE);
|
RETURN_META(MRES_SUPERCEDE);
|
||||||
}
|
}
|
||||||
|
else if (args.ArgC() > 1 && strcmp(args.Arg(1), "exts") == 0)
|
||||||
|
{
|
||||||
|
g_Extensions.ListExtensionsToClient(pPlayer, args);
|
||||||
|
RETURN_META(MRES_SUPERCEDE);
|
||||||
|
}
|
||||||
else if (args.ArgC() > 1 && strcmp(args.Arg(1), "credits") == 0)
|
else if (args.ArgC() > 1 && strcmp(args.Arg(1), "credits") == 0)
|
||||||
{
|
{
|
||||||
ClientConsolePrint(pEntity,
|
ClientConsolePrint(pEntity,
|
||||||
@@ -854,6 +859,20 @@ void PlayerManager::OnClientSettingsChanged(edict_t *pEntity)
|
|||||||
const char *new_name = info ? info->GetName() : engine->GetClientConVarValue(client, "name");
|
const char *new_name = info ? info->GetName() : engine->GetClientConVarValue(client, "name");
|
||||||
const char *old_name = pPlayer->m_Name.c_str();
|
const char *old_name = pPlayer->m_Name.c_str();
|
||||||
|
|
||||||
|
#if SOURCE_ENGINE >= SE_LEFT4DEAD
|
||||||
|
const char *networkid_force;
|
||||||
|
if ((networkid_force = engine->GetClientConVarValue(client, "networkid_force")) && networkid_force[0] != '\0')
|
||||||
|
{
|
||||||
|
unsigned long long *steamId = (unsigned long long *)engine->GetClientSteamID(pEntity);
|
||||||
|
unsigned int accountId = steamId ? (*steamId & 0xFFFFFFFF) : 0;
|
||||||
|
g_Logger.LogMessage("\"%s<%d><STEAM_1:%d:%d><>\" has bad networkid (id \"%s\") (ip \"%s\")",
|
||||||
|
new_name, pPlayer->GetUserId(), accountId & 1, accountId >> 1, networkid_force, pPlayer->GetIPAddress());
|
||||||
|
|
||||||
|
pPlayer->Kick("NetworkID spoofing detected.");
|
||||||
|
RETURN_META(MRES_IGNORED);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (strcmp(old_name, new_name) != 0)
|
if (strcmp(old_name, new_name) != 0)
|
||||||
{
|
{
|
||||||
AdminId id = g_Admins.FindAdminByIdentity("name", new_name);
|
AdminId id = g_Admins.FindAdminByIdentity("name", new_name);
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ union serial_t
|
|||||||
uint32_t value;
|
uint32_t value;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
uint8_t index;
|
uint32_t index : 8;
|
||||||
uint32_t serial : 24;
|
uint32_t serial : 24;
|
||||||
} bits;
|
} bits;
|
||||||
};
|
};
|
||||||
|
|||||||
+15
-7
@@ -1005,11 +1005,14 @@ LoadRes CPluginManager::_LoadPlugin(CPlugin **_plugin, const char *path, bool de
|
|||||||
pPlugin->m_pRuntime = g_pSourcePawn2->LoadPlugin(co, fullpath, &err);
|
pPlugin->m_pRuntime = g_pSourcePawn2->LoadPlugin(co, fullpath, &err);
|
||||||
if (pPlugin->m_pRuntime == NULL)
|
if (pPlugin->m_pRuntime == NULL)
|
||||||
{
|
{
|
||||||
UTIL_Format(error,
|
if (error)
|
||||||
maxlength,
|
{
|
||||||
"Unable to load plugin (error %d: %s)",
|
UTIL_Format(error,
|
||||||
err,
|
maxlength,
|
||||||
g_pSourcePawn2->GetErrorString(err));
|
"Unable to load plugin (error %d: %s)",
|
||||||
|
err,
|
||||||
|
g_pSourcePawn2->GetErrorString(err));
|
||||||
|
}
|
||||||
pPlugin->m_status = Plugin_BadLoad;
|
pPlugin->m_status = Plugin_BadLoad;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -1020,7 +1023,10 @@ LoadRes CPluginManager::_LoadPlugin(CPlugin **_plugin, const char *path, bool de
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
UTIL_Format(error, maxlength, "%s", pPlugin->m_errormsg);
|
if (error)
|
||||||
|
{
|
||||||
|
UTIL_Format(error, maxlength, "%s", pPlugin->m_errormsg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1504,7 +1510,9 @@ void CPluginManager::TryRefreshDependencies(CPlugin *pPlugin)
|
|||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (native->status == SP_NATIVE_UNBOUND && !(native->flags & SP_NTVFLAG_OPTIONAL))
|
if (native->status == SP_NATIVE_UNBOUND
|
||||||
|
&& native->name[0] != '@'
|
||||||
|
&& !(native->flags & SP_NTVFLAG_OPTIONAL))
|
||||||
{
|
{
|
||||||
pPlugin->SetErrorState(Plugin_Error, "Native not found: %s", native->name);
|
pPlugin->SetErrorState(Plugin_Error, "Native not found: %s", native->name);
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ void *MemoryUtils::FindPattern(const void *libPtr, const char *pattern, size_t l
|
|||||||
}
|
}
|
||||||
|
|
||||||
ptr = reinterpret_cast<char *>(lib.baseAddress);
|
ptr = reinterpret_cast<char *>(lib.baseAddress);
|
||||||
end = ptr + lib.memorySize;
|
end = ptr + lib.memorySize - 1;
|
||||||
|
|
||||||
while (ptr < end)
|
while (ptr < end)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ IGameHelpers *gamehelpers;
|
|||||||
|
|
||||||
static void AddCorePhraseFile(const char *filename)
|
static void AddCorePhraseFile(const char *filename)
|
||||||
{
|
{
|
||||||
g_pCorePhrases->AddPhraseFile("antiflood.phrases");
|
g_pCorePhrases->AddPhraseFile(filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
static IGameConfig *GetCoreGameConfig()
|
static IGameConfig *GetCoreGameConfig()
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
#include "BaseWorker.h"
|
#include "BaseWorker.h"
|
||||||
|
|
||||||
#define DEFAULT_THINK_TIME_MS 50
|
#define DEFAULT_THINK_TIME_MS 20
|
||||||
|
|
||||||
class ThreadWorker : public BaseWorker, public IThread
|
class ThreadWorker : public BaseWorker, public IThread
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -87,6 +87,11 @@ static cell_t GetGameTime(IPluginContext *pContext, const cell_t *params)
|
|||||||
return sp_ftoc(gpGlobals->curtime);
|
return sp_ftoc(gpGlobals->curtime);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static cell_t GetGameTickCount(IPluginContext *pContext, const cell_t *params)
|
||||||
|
{
|
||||||
|
return gpGlobals->tickcount;
|
||||||
|
}
|
||||||
|
|
||||||
static cell_t CreateFakeClient(IPluginContext *pContext, const cell_t *params)
|
static cell_t CreateFakeClient(IPluginContext *pContext, const cell_t *params)
|
||||||
{
|
{
|
||||||
if (!g_SourceMod.IsMapRunning())
|
if (!g_SourceMod.IsMapRunning())
|
||||||
@@ -520,6 +525,7 @@ REGISTER_NATIVES(halflifeNatives)
|
|||||||
{"GetGameDescription", GetGameDescription},
|
{"GetGameDescription", GetGameDescription},
|
||||||
{"GetGameFolderName", GetGameFolderName},
|
{"GetGameFolderName", GetGameFolderName},
|
||||||
{"GetGameTime", GetGameTime},
|
{"GetGameTime", GetGameTime},
|
||||||
|
{"GetGameTickCount", GetGameTickCount},
|
||||||
{"GetRandomFloat", GetRandomFloat},
|
{"GetRandomFloat", GetRandomFloat},
|
||||||
{"GetRandomInt", GetRandomInt},
|
{"GetRandomInt", GetRandomInt},
|
||||||
{"IsDedicatedServer", IsDedicatedServer},
|
{"IsDedicatedServer", IsDedicatedServer},
|
||||||
|
|||||||
@@ -396,7 +396,7 @@ void CookieManager::OnPluginDestroyed(IPlugin *plugin)
|
|||||||
{
|
{
|
||||||
ItemDrawInfo draw;
|
ItemDrawInfo draw;
|
||||||
const char *info = clientMenu->GetItemInfo(i, &draw);
|
const char *info = clientMenu->GetItemInfo(i, &draw);
|
||||||
AutoMenuData *data = (AutoMenuData *)strtol(info, NULL, 16);
|
AutoMenuData *data = (AutoMenuData *)strtoul(info, NULL, 16);
|
||||||
|
|
||||||
if (data->handler->forward != NULL)
|
if (data->handler->forward != NULL)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -202,6 +202,19 @@ void ClientPrefs::SDK_OnUnload()
|
|||||||
cookieMutex->DestroyThis();
|
cookieMutex->DestroyThis();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ClientPrefs::OnCoreMapStart(edict_t *pEdictList, int edictCount, int clientMax)
|
||||||
|
{
|
||||||
|
if (Database == NULL && !databaseLoading)
|
||||||
|
{
|
||||||
|
g_pSM->LogMessage(myself, "Attempting to reconnect to database...");
|
||||||
|
|
||||||
|
databaseLoading = true;
|
||||||
|
|
||||||
|
TQueryOp *op = new TQueryOp(Query_Connect, 0);
|
||||||
|
dbi->AddToThreadQueue(op, PrioQueue_High);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ClientPrefs::DatabaseConnect()
|
void ClientPrefs::DatabaseConnect()
|
||||||
{
|
{
|
||||||
char error[256];
|
char error[256];
|
||||||
|
|||||||
@@ -87,6 +87,8 @@ public:
|
|||||||
const char *GetExtensionVerString();
|
const char *GetExtensionVerString();
|
||||||
const char *GetExtensionDateString();
|
const char *GetExtensionDateString();
|
||||||
|
|
||||||
|
virtual void OnCoreMapStart(edict_t *pEdictList, int edictCount, int clientMax);
|
||||||
|
|
||||||
void DatabaseConnect();
|
void DatabaseConnect();
|
||||||
|
|
||||||
bool AddQueryToQueue(TQueryOp *query);
|
bool AddQueryToQueue(TQueryOp *query);
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ void ClientMenuHandler::OnMenuSelect(IBaseMenu *menu, int client, unsigned int i
|
|||||||
|
|
||||||
const char *info = menu->GetItemInfo(item, &draw);
|
const char *info = menu->GetItemInfo(item, &draw);
|
||||||
|
|
||||||
AutoMenuData *data = (AutoMenuData *)strtol(info, NULL, 16);
|
AutoMenuData *data = (AutoMenuData *)strtoul(info, NULL, 16);
|
||||||
|
|
||||||
if (data->handler->forward != NULL)
|
if (data->handler->forward != NULL)
|
||||||
{
|
{
|
||||||
@@ -94,7 +94,7 @@ unsigned int ClientMenuHandler::OnMenuDisplayItem(IBaseMenu *menu,
|
|||||||
|
|
||||||
const char *info = menu->GetItemInfo(item, &draw);
|
const char *info = menu->GetItemInfo(item, &draw);
|
||||||
|
|
||||||
AutoMenuData *data = (AutoMenuData *)strtol(info, NULL, 16);
|
AutoMenuData *data = (AutoMenuData *)strtoul(info, NULL, 16);
|
||||||
|
|
||||||
if (data->handler->forward != NULL)
|
if (data->handler->forward != NULL)
|
||||||
{
|
{
|
||||||
@@ -122,7 +122,7 @@ void AutoMenuHandler::OnMenuSelect(SourceMod::IBaseMenu *menu, int client, unsig
|
|||||||
|
|
||||||
const char *info = menu->GetItemInfo(item, &draw);
|
const char *info = menu->GetItemInfo(item, &draw);
|
||||||
|
|
||||||
AutoMenuData *data = (AutoMenuData *)strtol(info, NULL, 16);
|
AutoMenuData *data = (AutoMenuData *)strtoul(info, NULL, 16);
|
||||||
|
|
||||||
switch (data->type)
|
switch (data->type)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -47,4 +47,6 @@ void RegNatives::UnregisterAll()
|
|||||||
{
|
{
|
||||||
(*iter)->Destroy();
|
(*iter)->Destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_List.clear();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -451,6 +451,6 @@ TFClassType ClassnameToType(const char *classname)
|
|||||||
/**
|
/**
|
||||||
* A picture of a blue crab given to me as a gift and stored here for safe keeping
|
* A picture of a blue crab given to me as a gift and stored here for safe keeping
|
||||||
*
|
*
|
||||||
* http://www.democracycellproject.net/blog/archives/Clown%20car.jpg
|
* http://sourcemod.net/Clown%20car.jpg
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -18,9 +18,8 @@
|
|||||||
{
|
{
|
||||||
"game" "dod"
|
"game" "dod"
|
||||||
"game" "tf"
|
"game" "tf"
|
||||||
"game" "cstrike"
|
|
||||||
"game" "garrysmod"
|
|
||||||
"game" "hl2mp"
|
"game" "hl2mp"
|
||||||
|
"game" "cstrike"
|
||||||
}
|
}
|
||||||
|
|
||||||
"Offsets"
|
"Offsets"
|
||||||
@@ -28,7 +27,7 @@
|
|||||||
/* Offset into CBaseTempEntity constructor */
|
/* Offset into CBaseTempEntity constructor */
|
||||||
"s_pTempEntities"
|
"s_pTempEntities"
|
||||||
{
|
{
|
||||||
"windows" "17"
|
"windows" "19"
|
||||||
}
|
}
|
||||||
"GetTEName"
|
"GetTEName"
|
||||||
{
|
{
|
||||||
@@ -55,7 +54,7 @@
|
|||||||
"CBaseTempEntity"
|
"CBaseTempEntity"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x8B\xC1\x8B\x4C\x24\x04\xC7\x00\x2A\x2A\x2A\x2A\x89\x48\x04\x8B\x15\x2A\x2A\x2A\x2A\x89\x50\x08\xA3\x2A\x2A\x2A\x2A\xC2\x04\x00"
|
"windows" "\x55\x8B\xEC\x8B\xC1\x8B\x4D\x2A\xC7\x00\x2A\x2A\x2A\x2A\x89\x48"
|
||||||
}
|
}
|
||||||
"s_pTempEntities"
|
"s_pTempEntities"
|
||||||
{
|
{
|
||||||
@@ -65,7 +64,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* CGlobalEntityList */
|
/* CGlobalEntityList */
|
||||||
"#default"
|
"#default"
|
||||||
{
|
{
|
||||||
@@ -73,8 +72,8 @@
|
|||||||
{
|
{
|
||||||
"game" "dod"
|
"game" "dod"
|
||||||
"game" "tf"
|
"game" "tf"
|
||||||
"game" "cstrike"
|
|
||||||
"game" "hl2mp"
|
"game" "hl2mp"
|
||||||
|
"game" "cstrike"
|
||||||
}
|
}
|
||||||
|
|
||||||
"Signatures"
|
"Signatures"
|
||||||
@@ -83,7 +82,7 @@
|
|||||||
"FindEntityByClassname"
|
"FindEntityByClassname"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x53\x55\x56\x8B\xF1\x8B\x4C\x24\x10\x85\xC9\x57\x74\x19\x8B\x01\x8B\x50\x08\xFF\xD2\x8B\x00\x25\xFF\x0F\x00\x00\x83\xC0\x01\xC1\xE0\x04\x8B\x3C\x30\xEB\x06\x8B\xBE\x2A\x2A\x2A\x2A\x85\xFF\x74\x39\x8B\x5C\x24\x18\x8B\x2D\x2A\x2A\x2A\x2A\xEB\x03"
|
"windows" "\x55\x8B\xEC\x53\x56\x8B\xF1\x8B\x4D\x2A\x85\xC9\x57\x74\x2A\x8B\x01\x8B\x50\x2A\xFF\xD2\x8B\x00\x25\x2A\x2A\x2A\x2A\x83\xC0\x2A\xC1\xE0\x04\x8B\x3C\x30\xEB\x2A\x8B\xBE\x2A\x2A\x2A\x2A\x85\xFF\x74\x2A\x8B\x5D\x2A\x8B\x37\x85\xF6\x75\x2A\x68\x2A\x2A\x2A\x2A\xFF\x15\x2A\x2A\x2A\x2A\x83\xC4\x2A\xEB\x2A\x39"
|
||||||
"linux" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
"linux" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
||||||
"mac" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
"mac" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
||||||
}
|
}
|
||||||
@@ -148,7 +147,7 @@
|
|||||||
* the expected code. A pointer to sv (IServer interface) is used
|
* the expected code. A pointer to sv (IServer interface) is used
|
||||||
* here.
|
* here.
|
||||||
*/
|
*/
|
||||||
"CreateFakeClient_Windows" "\x8B\x44\x24\x2A\x50\xB9\x2A\x2A\x2A\x2A\xE8"
|
"CreateFakeClient_Windows" "\x55\x8B\xEC\x8B\x45\x2A\x50\xB9\x2A\x2A\x2A\x2A\xE8\x2A\x2A\x2A\x2A\x85\xC0"
|
||||||
}
|
}
|
||||||
|
|
||||||
"Offsets"
|
"Offsets"
|
||||||
@@ -156,7 +155,7 @@
|
|||||||
/* Offset into IVEngineServer::CreateFakeClient */
|
/* Offset into IVEngineServer::CreateFakeClient */
|
||||||
"sv"
|
"sv"
|
||||||
{
|
{
|
||||||
"windows" "6"
|
"windows" "8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,15 +193,15 @@
|
|||||||
{
|
{
|
||||||
"game" "dod"
|
"game" "dod"
|
||||||
"game" "tf"
|
"game" "tf"
|
||||||
"game" "cstrike"
|
|
||||||
"game" "hl2mp"
|
"game" "hl2mp"
|
||||||
|
"game" "cstrike"
|
||||||
}
|
}
|
||||||
"Signatures"
|
"Signatures"
|
||||||
{
|
{
|
||||||
"FireOutput"
|
"FireOutput"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x81\xEC\x2A\x2A\x00\x00\x53\x55\x56\x8B\x71\x14\x85\xF6"
|
"windows" "\x55\x8B\xEC\x81\xEC\x2A\x2A\x2A\x2A\x53\x56\x8B\x71\x2A\x85\xF6"
|
||||||
"linux" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
"linux" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
||||||
"mac" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
"mac" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
||||||
}
|
}
|
||||||
@@ -212,6 +211,15 @@
|
|||||||
/* SetUserInfo data */
|
/* SetUserInfo data */
|
||||||
"#default"
|
"#default"
|
||||||
{
|
{
|
||||||
|
"#supported"
|
||||||
|
{
|
||||||
|
"game" "dod"
|
||||||
|
"game" "tf"
|
||||||
|
"game" "garrysmod"
|
||||||
|
"game" "hl2mp"
|
||||||
|
"game" "cstrike"
|
||||||
|
}
|
||||||
|
|
||||||
"Offsets"
|
"Offsets"
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
@@ -222,9 +230,9 @@
|
|||||||
*/
|
*/
|
||||||
"SetUserCvar"
|
"SetUserCvar"
|
||||||
{
|
{
|
||||||
"windows" "17"
|
"windows" "18"
|
||||||
"linux" "57"
|
"linux" "58"
|
||||||
"mac" "57"
|
"mac" "58"
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Offset into CBaseClient - Used by CBaseServer::UpdateUserSettings to determine when changes have been made.
|
* Offset into CBaseClient - Used by CBaseServer::UpdateUserSettings to determine when changes have been made.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
"Games"
|
"Games"
|
||||||
{
|
{
|
||||||
/* Garry's Mod - No symbol names in linux bin */
|
/* Garry's Mod */
|
||||||
"garrysmod"
|
"garrysmod"
|
||||||
{
|
{
|
||||||
"Offsets"
|
"Offsets"
|
||||||
@@ -106,17 +106,61 @@
|
|||||||
"FindEntityByClassname"
|
"FindEntityByClassname"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x53\x55\x56\x8B\xF1\x8B\x4C\x24\x10\x57\x85\xC9\x74\x2A\x8B\x01\x8B\x50\x08\xFF\xD2\x8B\x00\x25\xFF\x0F\x00\x00\x40\xC1\xE0\x04\x8B\x3C\x30\xEB\x06\x8B\xBE\x2A\x2A\x2A\x2A\x85\xFF\x74\x2A\x8B\x5C\x24\x18\x8B\x2D\x2A\x2A\x2A\x2A\x8D\xA4\x24\x00\x00\x00\x00\x8B\x37\x85\xF6\x75\x2A\x68\x2A\x2A\x2A\x2A\xFF\x2A\x83\xC4\x04\xEB\x2A\x39\x2A\x2A\x74\x2A\x53"
|
"windows" "\x53\x55\x56\x8B\xF1\x8B\x2A\x2A\x2A\x85\xC9\x57\x74\x2A\x8B\x01\x8B\x50\x2A\xFF\xD2\x8B\x00\x25\x2A\x2A\x2A\x2A\x83\xC0\x2A\xC1\xE0\x2A\x8B\x3C\x30\xEB\x2A\x8B\x2A\x2A\x2A\x2A\x2A\x85\xFF\x74\x2A\x8B\x2A\x2A\x2A\x8B\x2A\x2A\x2A\x2A\x2A\xEB\x2A\x8D\x2A\x2A\x8B\x37\x85\xF6\x75\x2A\x68\x2A\x2A\x2A\x2A\xFF\x2A\x83\x2A\x2A\xEB\x2A\x39"
|
||||||
"linux" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
"linux" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
||||||
"mac" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
"mac" "@_ZN17CGlobalEntityList21FindEntityByClassnameEP11CBaseEntityPKc"
|
||||||
}
|
}
|
||||||
"FireOutput"
|
"FireOutput"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x81\xEC\x2A\x2A\x2A\x2A\x53\x55\x56\x8B\x71\x2A\x57\x89"
|
"windows" "\x81\xEC\x2A\x2A\x2A\x2A\x53\x55\x56\x8B\x71\x2A\x85\xF6"
|
||||||
"linux" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
"linux" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
||||||
"mac" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
"mac" "@_ZN17CBaseEntityOutput10FireOutputE9variant_tP11CBaseEntityS2_f"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
"#default"
|
||||||
|
{
|
||||||
|
"Offsets"
|
||||||
|
{
|
||||||
|
"s_pTempEntities"
|
||||||
|
{
|
||||||
|
"windows" "17"
|
||||||
|
}
|
||||||
|
"GetTEName"
|
||||||
|
{
|
||||||
|
"windows" "4"
|
||||||
|
"linux" "4"
|
||||||
|
"mac" "4"
|
||||||
|
}
|
||||||
|
"GetTENext"
|
||||||
|
{
|
||||||
|
"windows" "8"
|
||||||
|
"linux" "8"
|
||||||
|
"mac" "8"
|
||||||
|
}
|
||||||
|
"TE_GetServerClass"
|
||||||
|
{
|
||||||
|
"windows" "0"
|
||||||
|
"linux" "0"
|
||||||
|
"mac" "0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
"Signatures"
|
||||||
|
{
|
||||||
|
"CBaseTempEntity"
|
||||||
|
{
|
||||||
|
"library" "server"
|
||||||
|
"windows" "\x8B\xC1\x8B\x4C\x24\x04\xC7\x00\x2A\x2A\x2A\x2A\x89\x48\x04\x8B\x15\x2A\x2A\x2A\x2A\x89\x50\x08\xA3\x2A\x2A\x2A\x2A\xC2\x04\x00"
|
||||||
|
}
|
||||||
|
"s_pTempEntities"
|
||||||
|
{
|
||||||
|
"library" "server"
|
||||||
|
"linux" "@_ZN15CBaseTempEntity15s_pTempEntitiesE"
|
||||||
|
"mac" "@_ZN15CBaseTempEntity15s_pTempEntitiesE"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -76,21 +76,21 @@
|
|||||||
"TerminateRound"
|
"TerminateRound"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x83\xEC\x2A\x53\x8B\x5C\x2A\x2A\x55\x56\x57\x33\xF6\x8B\xE9\x33"
|
"windows" "\x55\x8B\xEC\x83\xEC\x2A\x53\x8B\x2A\x2A\x56\x57\x33\xFF\x83"
|
||||||
"linux" "@_ZN12CCSGameRules14TerminateRoundEfi"
|
"linux" "@_ZN12CCSGameRules14TerminateRoundEfi"
|
||||||
"mac" "@_ZN12CCSGameRules14TerminateRoundEfi"
|
"mac" "@_ZN12CCSGameRules14TerminateRoundEfi"
|
||||||
}
|
}
|
||||||
"GetTranslatedWeaponAlias"
|
"GetTranslatedWeaponAlias"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x56\x57\x8B\x7C\x2A\x2A\x33\xF6\xEB\x2A\x2A\x2A\x00\x00\x00\x00\x8B\x04\x2A\x2A\x2A\x2A\x2A\x57\x50\xE8\x2A\x2A\x2A\x00\x83\xC4\x08\x85\xC0\x74\x2A\x83\x2A\x01\x83\x2A\x2A\x72\x2A\x8B\xC7\x5F\x5E"
|
"windows" "\x55\x8B\xEC\x56\x57\x8B\x2A\x2A\x33\xF6\x8D\x2A\x00\x00\x00\x00\x8B\x04\xF5\x2A\x2A\x2A\x2A\x57\x50\xE8\x2A\x2A\x2A\x2A\x83\xC4\x2A\x85\xC0\x74\x2A\x83\xC6\x01\x83\x2A\x1A"
|
||||||
"linux" "@_Z24GetTranslatedWeaponAliasPKc"
|
"linux" "@_Z24GetTranslatedWeaponAliasPKc"
|
||||||
"mac" "@_Z24GetTranslatedWeaponAliasPKc"
|
"mac" "@_Z24GetTranslatedWeaponAliasPKc"
|
||||||
}
|
}
|
||||||
"GetWeaponInfo"
|
"GetWeaponInfo"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x8B\x4C\x2A\x2A\x85\xC9\x75\x2A\x33\xC0\xC3"
|
"windows" "\x55\x8B\xEC\x8B\x4D\x2A\x85\xC9\x75\x2A\x33\xC0\x5D\xC3\x83\xF9\x2A\x7C\x2A\x69\xC9\x2A\x2A\x00\x00"
|
||||||
"linux" "@_Z13GetWeaponInfo10CSWeaponID"
|
"linux" "@_Z13GetWeaponInfo10CSWeaponID"
|
||||||
"mac" "@_Z13GetWeaponInfo10CSWeaponID"
|
"mac" "@_Z13GetWeaponInfo10CSWeaponID"
|
||||||
}
|
}
|
||||||
|
|||||||
+14
-14
@@ -18,21 +18,21 @@
|
|||||||
"Burn"
|
"Burn"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x51\x56\x8B\xF1\x8B\x8E\x2A\x2A\x00\x00\x8B\x01\x8B\x90\x2A\x2A\x00\x00\xFF\xD2\x84\xC0\x0F\x2A\x2A\x2A\x2A\x2A\x57\x8D\xBE\x2A\x2A\x2A\x2A\x6A"
|
"windows" "\x55\x8B\xEC\x51\x56\x8B\xF1\x8B\x2A\x2A\x2A\x2A\x2A\x8B\x01\x8B\x2A\x2A\x2A\x2A\x2A\xFF\xD2\x84\xC0\x0F\x2A\x2A\x2A\x2A\x2A\x57\x8D"
|
||||||
"linux" "@_ZN15CTFPlayerShared4BurnEP9CTFPlayerP13CTFWeaponBase"
|
"linux" "@_ZN15CTFPlayerShared4BurnEP9CTFPlayerP13CTFWeaponBase"
|
||||||
"mac" "@_ZN15CTFPlayerShared4BurnEP9CTFPlayerP13CTFWeaponBase"
|
"mac" "@_ZN15CTFPlayerShared4BurnEP9CTFPlayerP13CTFWeaponBase"
|
||||||
}
|
}
|
||||||
"RemoveDisguise"
|
"RemoveDisguise"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x51\x56\x8B\xF1\x8B\x8E\x2A\x2A\x2A\x2A\x57\x8B\xBE\x2A\x2A\x2A\x2A\xE8"
|
"windows" "\x55\x8B\xEC\x83\xEC\x2A\x56\x8B\xF1\x8B\x2A\x2A\x2A\x2A\x2A\x57\x8B"
|
||||||
"linux" "@_ZN15CTFPlayerShared14RemoveDisguiseEv"
|
"linux" "@_ZN15CTFPlayerShared14RemoveDisguiseEv"
|
||||||
"mac" "@_ZN15CTFPlayerShared14RemoveDisguiseEv"
|
"mac" "@_ZN15CTFPlayerShared14RemoveDisguiseEv"
|
||||||
}
|
}
|
||||||
"Disguise"
|
"Disguise"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x51\x53\x56\x8B\xF1\x8B\x8E\x2A\x2A\x00\x00\xE8\x2A\x2A\x2A\x2A\x8B\xD8\x8B\x86\x2A\x2A\x00\x00\x8B\x80"
|
"windows" "\x55\x8B\xEC\x51\x53\x56\x8B\xF1\x8B\x2A\x2A\x2A\x2A\x2A\xE8\x2A\x2A\x2A\x2A\x8B\xD8\x8B"
|
||||||
"linux" "@_ZN15CTFPlayerShared8DisguiseEiiP9CTFPlayerb"
|
"linux" "@_ZN15CTFPlayerShared8DisguiseEiiP9CTFPlayerb"
|
||||||
"mac" "@_ZN15CTFPlayerShared8DisguiseEiiP9CTFPlayerb"
|
"mac" "@_ZN15CTFPlayerShared8DisguiseEiiP9CTFPlayerb"
|
||||||
}
|
}
|
||||||
@@ -41,14 +41,14 @@
|
|||||||
"library" "server"
|
"library" "server"
|
||||||
"linux" "@_ZN13CTFWeaponBase26CalcIsAttackCriticalHelperEv"
|
"linux" "@_ZN13CTFWeaponBase26CalcIsAttackCriticalHelperEv"
|
||||||
"mac" "@_ZN13CTFWeaponBase26CalcIsAttackCriticalHelperEv"
|
"mac" "@_ZN13CTFWeaponBase26CalcIsAttackCriticalHelperEv"
|
||||||
"windows" "\x55\x8B\xEC\x83\x2A\x2A\x83\x2A\x2A\x53\x56\x57\x6A\x00\x68\x2A\x2A\x2A\x2A\x68\x2A\x2A\x2A\x2A\x6A"
|
"windows" "\x53\x8B\xDC\x83\xEC\x08\x83\xE4\x2A\x83\xC4\x2A\x55\x8B\x6B\x2A\x89\x6C\x24\x2A\x8B\xEC\x83\xEC\x2A\x56\x57\x6A\x00"
|
||||||
}
|
}
|
||||||
"CalcCriticalMelee"
|
"CalcCriticalMelee"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"linux" "@_ZN18CTFWeaponBaseMelee26CalcIsAttackCriticalHelperEv"
|
"linux" "@_ZN18CTFWeaponBaseMelee26CalcIsAttackCriticalHelperEv"
|
||||||
"mac" "@_ZN18CTFWeaponBaseMelee26CalcIsAttackCriticalHelperEv"
|
"mac" "@_ZN18CTFWeaponBaseMelee26CalcIsAttackCriticalHelperEv"
|
||||||
"windows" "\x51\x53\x56\x8B\xF1\xE8\x2A\x2A\x2A\x2A\x8B\xD8\x85\xDB\x74\x2A\x8B\x03\x8B"
|
"windows" "\x55\x8B\xEC\x51\x53\x56\x8B\xF1\xE8\x2A\x2A\x2A\x2A\x8B\xD8\x85\xDB\x74\x2A\x8B\x03"
|
||||||
}
|
}
|
||||||
"CalcCriticalBow"
|
"CalcCriticalBow"
|
||||||
{
|
{
|
||||||
@@ -60,63 +60,63 @@
|
|||||||
"Regenerate"
|
"Regenerate"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x83\xEC\x08\xF3\x2A\x2A\x2A\x2A\x2A\x2A\x2A\x53\x55\x56\x8B\xF1\x8B"
|
"windows" "\x55\x8B\xEC\x83\xEC\x2A\xF3\x0F\x10\x05\x2A\x2A\x2A\x2A\x53\x56\x8B\xF1\x8B\x86"
|
||||||
"linux" "@_ZN9CTFPlayer10RegenerateEv"
|
"linux" "@_ZN9CTFPlayer10RegenerateEv"
|
||||||
"mac" "@_ZN9CTFPlayer10RegenerateEv"
|
"mac" "@_ZN9CTFPlayer10RegenerateEv"
|
||||||
}
|
}
|
||||||
"AddCondition"
|
"AddCondition"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x2A\x2A\x2A\x2A\x2A\x2A\x2A\x2A\x83\xFF\x2A\x8B\xF1\x7C\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x8D\x6F\x2A\xEB\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x8B\xEF\x8B\x86\x2A\x2A\x2A\x2A\xD9"
|
"windows" "\x55\x8B\xEC\x83\xEC\x2A\x53\x56\x57\x8B\x7D\x2A\x83\xFF\x2A\x8B\xF1\x7C\x2A\x8D\x47\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x89\x45\x2A\xEB\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x89\x7D\x2A\x8B\x8E\x2A\x2A\x2A\x2A\xD9"
|
||||||
"linux" "@_ZN15CTFPlayerShared7AddCondE7ETFCondf"
|
"linux" "@_ZN15CTFPlayerShared7AddCondE7ETFCondf"
|
||||||
"mac" "@_ZN15CTFPlayerShared7AddCondE7ETFCondf"
|
"mac" "@_ZN15CTFPlayerShared7AddCondE7ETFCondf"
|
||||||
}
|
}
|
||||||
"RemoveCondition"
|
"RemoveCondition"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x2A\x2A\x2A\x2A\x2A\x2A\x2A\x2A\x83\xFF\x20\x8B\xF1\x7C\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x8D\x6F\x2A\xEB\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x8B\xEF\x8B\x2A\x2A\x2A\x50\x57\x8D"
|
"windows" "\x55\x8B\xEC\x83\xEC\x2A\x53\x56\x57\x8B\x7D\x2A\x83\xFF\x2A\x8B\xF1\x7C\x2A\x8D\x47\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x89\x45\x2A\xEB\x2A\x8D\x9E\x2A\x2A\x2A\x2A\x89\x7D\x2A\x8B\x4D"
|
||||||
"linux" "@_ZN15CTFPlayerShared10RemoveCondE7ETFCondb"
|
"linux" "@_ZN15CTFPlayerShared10RemoveCondE7ETFCondb"
|
||||||
"mac" "@_ZN15CTFPlayerShared10RemoveCondE7ETFCondb"
|
"mac" "@_ZN15CTFPlayerShared10RemoveCondE7ETFCondb"
|
||||||
}
|
}
|
||||||
"SetPowerplayEnabled"
|
"SetPowerplayEnabled"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x80\x7C\x2A\x2A\x2A\x56\x8B\xF1\x74\x2A\x57\x8D\x44\x24\x2A\x50"
|
"windows" "\x55\x8B\xEC\x80\x7D\x2A\x2A\x56\x8B\xF1\x74\x2A\x57\x8D\x45"
|
||||||
"linux" "@_ZN9CTFPlayer19SetPowerplayEnabledEb"
|
"linux" "@_ZN9CTFPlayer19SetPowerplayEnabledEb"
|
||||||
"mac" "@_ZN9CTFPlayer19SetPowerplayEnabledEb"
|
"mac" "@_ZN9CTFPlayer19SetPowerplayEnabledEb"
|
||||||
}
|
}
|
||||||
"SetInWaitingForPlayers"
|
"SetInWaitingForPlayers"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x56\x8B\xF1\xE8\x2A\x2A\x2A\x2A\x84\xC0\x0F\x85\x2A\x2A\x2A\x2A\xA1"
|
"windows" "\x55\x8B\xEC\x56\x8B\xF1\xE8\x2A\x2A\x2A\x2A\x84\xC0\x0F\x85\x2A\x2A\x2A\x2A\xA1\x2A\x2A\x2A\x2A"
|
||||||
"linux" "@_ZN24CTeamplayRoundBasedRules22SetInWaitingForPlayersEb"
|
"linux" "@_ZN24CTeamplayRoundBasedRules22SetInWaitingForPlayersEb"
|
||||||
"mac" "@_ZN24CTeamplayRoundBasedRules22SetInWaitingForPlayersEb"
|
"mac" "@_ZN24CTeamplayRoundBasedRules22SetInWaitingForPlayersEb"
|
||||||
}
|
}
|
||||||
"StunPlayer"
|
"StunPlayer"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x51\xD9\x2A\x2A\x2A\x2A\x2A\x56\x57\x83\xEC\x2A\xD9\x2A\x2A\x2A\x8B\xF1\xD9\xEE\xD9\x2A\x2A\x2A\xD9\xE8\xD9"
|
"windows" "\x55\x8B\xEC\x51\xD9\x05\x2A\x2A\x2A\x2A\x56\x57\x83\xEC\x14"
|
||||||
"linux" "@_ZN15CTFPlayerShared10StunPlayerEffiP9CTFPlayer"
|
"linux" "@_ZN15CTFPlayerShared10StunPlayerEffiP9CTFPlayer"
|
||||||
"mac" "@_ZN15CTFPlayerShared10StunPlayerEffiP9CTFPlayer"
|
"mac" "@_ZN15CTFPlayerShared10StunPlayerEffiP9CTFPlayer"
|
||||||
}
|
}
|
||||||
"IsHolidayActive"
|
"IsHolidayActive"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x80\x2A\x2A\x2A\x2A\x2A\x00\x75\x2A\xE8\x2A\x2A\x2A\x2A\x8B\x54\x2A\x2A\x8B"
|
"windows" "\x55\x8B\xEC\x80\x3D\x2A\x2A\x2A\x2A\x2A\x75\x2A\xE8"
|
||||||
"linux" "@_Z20UTIL_IsHolidayActivei"
|
"linux" "@_Z20UTIL_IsHolidayActivei"
|
||||||
"mac" "@_Z20UTIL_IsHolidayActivei"
|
"mac" "@_Z20UTIL_IsHolidayActivei"
|
||||||
}
|
}
|
||||||
"MakeBleed"
|
"MakeBleed"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x51\x56\x8B\xF1\x8B\x8E\x2A\x2A\x2A\x2A\x8B\x01\x8B\x90\x2A\x2A\x2A\x2A\xFF\xD2\x84\xC0\x0F\x2A\x2A\x2A\x2A\x2A\x6A\x19\x8D"
|
"windows" "\x55\x8B\xEC\x51\x56\x8B\xF1\x8B\x2A\x2A\x2A\x2A\x2A\x8B\x01\x8B\x2A\x2A\x2A\x2A\x2A\xFF\xD2\x84\xC0\x0F\x2A\x2A\x2A\x2A\x2A\x6A\x19"
|
||||||
"linux" "@_ZN15CTFPlayerShared9MakeBleedEP9CTFPlayerP13CTFWeaponBasef"
|
"linux" "@_ZN15CTFPlayerShared9MakeBleedEP9CTFPlayerP13CTFWeaponBasef"
|
||||||
"mac" "@_ZN15CTFPlayerShared9MakeBleedEP9CTFPlayerP13CTFWeaponBasef"
|
"mac" "@_ZN15CTFPlayerShared9MakeBleedEP9CTFPlayerP13CTFWeaponBasef"
|
||||||
}
|
}
|
||||||
"IsPlayerInDuel"
|
"IsPlayerInDuel"
|
||||||
{
|
{
|
||||||
"library" "server"
|
"library" "server"
|
||||||
"windows" "\x83\xEC\x08\x2A\x2A\x2A\x2A\x33\xC0\x89\x04\x24\x89\x44\x24\x04\x8D\x04\x24\x50\x2A\x2A\x2A\x2A\x2A\x84\xC0\x2A\x2A\x83\xC4\x08\xC3"
|
"windows" "\x55\x8B\xEC\x83\xEC\x2A\x8B\x4D\x2A\x33\xC0\x89\x45\x2A\x89\x45"
|
||||||
"linux" "@_Z21DuelMiniGame_IsInDuelP9CTFPlayer"
|
"linux" "@_Z21DuelMiniGame_IsInDuelP9CTFPlayer"
|
||||||
"mac" "@_Z21DuelMiniGame_IsInDuelP9CTFPlayer"
|
"mac" "@_Z21DuelMiniGame_IsInDuelP9CTFPlayer"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -347,7 +347,7 @@ native AdminId:CreateAdmin(const String:name[]="");
|
|||||||
* @param maxlength Maximum size of string buffer.
|
* @param maxlength Maximum size of string buffer.
|
||||||
* @return Number of bytes written.
|
* @return Number of bytes written.
|
||||||
*/
|
*/
|
||||||
native GetAdminUsername(AdminId:id, const String:name[], maxlength);
|
native GetAdminUsername(AdminId:id, String:name[], maxlength);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Binds an admin to an identity for fast lookup later on. The bind must be unique.
|
* Binds an admin to an identity for fast lookup later on. The bind must be unique.
|
||||||
|
|||||||
@@ -263,7 +263,7 @@ stock Float:operator--(Float:oper)
|
|||||||
|
|
||||||
stock Float:operator-(Float:oper)
|
stock Float:operator-(Float:oper)
|
||||||
{
|
{
|
||||||
return oper^Float:((-1)^((-1)/2)); /* IEEE values are sign/magnitude */
|
return oper^Float:cellmin; /* IEEE values are sign/magnitude */
|
||||||
}
|
}
|
||||||
|
|
||||||
stock Float:operator*(Float:oper1, oper2)
|
stock Float:operator*(Float:oper1, oper2)
|
||||||
|
|||||||
@@ -127,6 +127,13 @@ native Float:GetEngineTime();
|
|||||||
*/
|
*/
|
||||||
native Float:GetGameTime();
|
native Float:GetGameTime();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the game's internal tick count.
|
||||||
|
*
|
||||||
|
* @return Game tick count.
|
||||||
|
*/
|
||||||
|
native GetGameTickCount();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the game description from the mod.
|
* Returns the game description from the mod.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -404,6 +404,16 @@ native bool:GetMenuExitBackButton(Handle:menu);
|
|||||||
*/
|
*/
|
||||||
native SetMenuExitBackButton(Handle:menu, bool:button);
|
native SetMenuExitBackButton(Handle:menu, bool:button);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets whether or not the menu has a "no vote" button in slot 1.
|
||||||
|
* By default, menus do not have a no vote button.
|
||||||
|
*
|
||||||
|
* @param menu Menu Handle.
|
||||||
|
* @param button True to enable the button, false to remove it.
|
||||||
|
* @return True if allowed; false on failure.
|
||||||
|
* @error Invalid Handle.
|
||||||
|
*/
|
||||||
|
native bool:SetMenuNoVoteButton(Handle:menu, bool:button);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cancels a menu from displaying on all clients. While the
|
* Cancels a menu from displaying on all clients. While the
|
||||||
|
|||||||
@@ -115,7 +115,10 @@ enum TFCond
|
|||||||
TFCond_CritOnWin,
|
TFCond_CritOnWin,
|
||||||
TFCond_CritOnFlagCapture,
|
TFCond_CritOnFlagCapture,
|
||||||
TFCond_CritOnKill,
|
TFCond_CritOnKill,
|
||||||
TFCond_RestrictToMelee
|
TFCond_RestrictToMelee,
|
||||||
|
|
||||||
|
TFCond_CritMmmph = 44,
|
||||||
|
TFCond_DefenseBuffMmmph,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum TFHoliday
|
enum TFHoliday
|
||||||
|
|||||||
@@ -37,6 +37,6 @@
|
|||||||
|
|
||||||
#define SOURCEMOD_V_MAJOR 1 /**< SourceMod Major version */
|
#define SOURCEMOD_V_MAJOR 1 /**< SourceMod Major version */
|
||||||
#define SOURCEMOD_V_MINOR 4 /**< SourceMod Minor version */
|
#define SOURCEMOD_V_MINOR 4 /**< SourceMod Minor version */
|
||||||
#define SOURCEMOD_V_RELEASE 2 /**< SourceMod Release version */
|
#define SOURCEMOD_V_RELEASE 3 /**< SourceMod Release version */
|
||||||
|
|
||||||
#define SOURCEMOD_VERSION "1.4.2" /**< SourceMod version string (major.minor.release.build) */
|
#define SOURCEMOD_VERSION "1.4.3" /**< SourceMod version string (major.minor.release.build) */
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
1.4.2
|
1.4.3
|
||||||
|
|||||||
Reference in New Issue
Block a user