sm-zombiereloaded-3/src/zr/sayhooks.inc

110 lines
2.1 KiB
PHP
Raw Normal View History

2008-10-04 22:59:11 +02:00
/**
* ====================
* Zombie:Reloaded
* File: sayhooks.inc
* Author: Greyscale
* ====================
*/
HookChatCmds()
{
RegConsoleCmd("say", SayCommand);
RegConsoleCmd("say_team", SayCommand);
}
public Action:SayCommand(client, argc)
{
new bool:enabled = GetConVarBool(gCvars[CVAR_ENABLE]);
if (!client || !enabled)
{
return Plugin_Continue;
}
decl String:args[192];
GetCmdArgString(args, sizeof(args));
ReplaceString(args, sizeof(args), "\"", "");
if (StrEqual(args, "!zmenu", false))
{
MainMenu(client);
}
if (StrEqual(args, "!zadmin", false))
{
ZRAdminMenu(client);
}
/*else if (StrEqual(args, "!zclass", false))
2008-10-04 22:59:11 +02:00
{
ZClass(client);
}*/
2008-10-04 22:59:11 +02:00
else if (StrEqual(args, "!zmarket", false))
{
// Send market menu.
ZMarketSend(client);
2008-10-04 22:59:11 +02:00
}
else if (StrEqual(args, "!zspawn", false))
{
ZSpawn(client);
}
else if (StrEqual(args, "!tp", false) ||
StrEqual(args, "!ztele", false) ||
StrEqual(args, "!tele", false) ||
StrEqual(args, "!teleport", false))
2008-10-04 22:59:11 +02:00
{
ZTele(client);
2008-10-04 22:59:11 +02:00
}
else if (StrEqual(args, "!teleabort", false))
{
AbortTeleport(client, false);
}
2008-10-04 22:59:11 +02:00
else if (StrEqual(args, "!zhp", false))
{
// Toggle ZHP.
ZHPToggle(client);
2008-10-04 22:59:11 +02:00
}
else if (StrContains(args, "teleport", false) != -1
|| StrContains(args, "stuck", false) != -1
|| StrContains(args, "help", false) != -1)
{
ZR_PrintToChat(client, "!ztele stuck");
}
2008-10-04 22:59:11 +02:00
return Plugin_Continue;
}
ZSpawn(client)
{
new bool:spawn = GetConVarBool(gCvars[CVAR_ZSPAWN]);
if (!spawn)
{
ZR_PrintToChat(client, "Feature is disabled");
return;
}
new team = GetClientTeam(client);
if (team != CS_TEAM_T && team != CS_TEAM_CT)
{
return;
}
if (IsPlayerAlive(client))
2008-10-04 22:59:11 +02:00
{
return;
}
if (IsPlayerInList(client))
{
2008-10-04 22:59:11 +02:00
return;
}
RespawnSpawnClient(client);
2008-10-04 22:59:11 +02:00
AddPlayerToList(client);
}