mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-05 22:33:20 +00:00
L4D2Tools: Disable MOTD & fix disconnect err
This commit is contained in:
parent
c6a1628569
commit
704d0d02f6
2 changed files with 10 additions and 2 deletions
Binary file not shown.
|
@ -19,6 +19,7 @@ static int iFinaleStartTime, botDropMeleeWeapon[MAXPLAYERS+1];
|
||||||
static float OUT_OF_BOUNDS[3] = {0.0, -1000.0, 0.0};
|
static float OUT_OF_BOUNDS[3] = {0.0, -1000.0, 0.0};
|
||||||
|
|
||||||
//TODO: Drop melee on death AND clear on respawn by defib.
|
//TODO: Drop melee on death AND clear on respawn by defib.
|
||||||
|
//TODO: Auto increase abm_minplayers based on highest player count
|
||||||
|
|
||||||
public Plugin myinfo = {
|
public Plugin myinfo = {
|
||||||
name = "L4D2 Misc Tools",
|
name = "L4D2 Misc Tools",
|
||||||
|
@ -72,6 +73,8 @@ public void OnPluginStart() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HookUserMessage(GetUserMessageId("VGUIMenu"), VGUIMenu, true);
|
||||||
|
|
||||||
RegAdminCmd("sm_model", Command_SetClientModel, ADMFLAG_ROOT);
|
RegAdminCmd("sm_model", Command_SetClientModel, ADMFLAG_ROOT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,7 +101,7 @@ public Action Command_SetClientModel(int client, int args) {
|
||||||
char modelPath[64];
|
char modelPath[64];
|
||||||
int modelID = GetSurvivorId(arg2);
|
int modelID = GetSurvivorId(arg2);
|
||||||
if(modelID == -1) {
|
if(modelID == -1) {
|
||||||
ReplyToCommand(client, "Could not find a valid survivor.");
|
ReplyToCommand(client, "Invalid survivor type entered. Case-sensitive, full name required.");
|
||||||
return Plugin_Handled;
|
return Plugin_Handled;
|
||||||
}
|
}
|
||||||
GetSurvivorModel(modelID, modelPath, sizeof(modelPath));
|
GetSurvivorModel(modelID, modelPath, sizeof(modelPath));
|
||||||
|
@ -174,9 +177,14 @@ public Action Event_BotPlayerSwap(Event event, const char[] name, bool dontBroad
|
||||||
SDKUnhook(bot, SDKHook_WeaponDrop, Event_OnWeaponDrop);
|
SDKUnhook(bot, SDKHook_WeaponDrop, Event_OnWeaponDrop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public Action VGUIMenu(UserMsg msg_id, Handle bf, const int[] players, int playersNum, bool reliable, bool init) {
|
||||||
|
char buffer[5];
|
||||||
|
BfReadString(bf, buffer, sizeof(buffer));
|
||||||
|
return StrEqual(buffer, "info") ? Plugin_Handled : Plugin_Continue;
|
||||||
|
}
|
||||||
//TODO: Might have to actually check for the bot they control, or possibly the bot will call this itself.
|
//TODO: Might have to actually check for the bot they control, or possibly the bot will call this itself.
|
||||||
public void OnClientDisconnect(int client) {
|
public void OnClientDisconnect(int client) {
|
||||||
if(botDropMeleeWeapon[client] > -1) {
|
if(IsClientConnected(client) && IsClientInGame(client) && botDropMeleeWeapon[client] > -1) {
|
||||||
float pos[3];
|
float pos[3];
|
||||||
GetClientAbsOrigin(client, pos);
|
GetClientAbsOrigin(client, pos);
|
||||||
TeleportEntity(botDropMeleeWeapon[client], pos, NULL_VECTOR, NULL_VECTOR);
|
TeleportEntity(botDropMeleeWeapon[client], pos, NULL_VECTOR, NULL_VECTOR);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue