Merge remote-tracking branch 'old/master'

This commit is contained in:
BotoX 2019-07-24 17:15:18 +02:00
commit 27d9419b9f
191 changed files with 29564 additions and 465 deletions

View File

@ -99,13 +99,17 @@ public Action OnCheatCommand(int client, const char[] command, int argc)
if(client == 0)
return Plugin_Continue;
if(IsClientAuthorized(client) && CheckCommandAccess(client, "", ADMFLAG_CHEATS))
return Plugin_Continue;
if(!argc && (StrEqual(command, "kill") || StrEqual(command, "explode")))
return Plugin_Continue;
if(!IsClientAuthorized(client) || !CheckCommandAccess(client, "", ADMFLAG_CHEATS))
return Plugin_Handled;
if(StrEqual(command, "noclip") && IsPlayerAlive(client))
ShowActivity2(client, "[SM] ", "toggled noclip on himself.");
LogAction(client, -1, "\"%L\" used cheat command: \"%s\"", client, command);
return Plugin_Continue;
}
public Action OnPlayerRunCmd(int client, int &buttons, int &impulse, float vel[3], float angles[3], int &weapon, int &subtype, int &cmdnum, int &tickcount, int &seed, int mouse[2])
@ -116,10 +120,11 @@ public Action OnPlayerRunCmd(int client, int &buttons, int &impulse, float vel[3
if(impulse == 100 || impulse == 201)
return Plugin_Continue;
if(IsClientAuthorized(client) && CheckCommandAccess(client, "", ADMFLAG_CHEATS))
return Plugin_Continue;
if(!IsClientAuthorized(client) || !CheckCommandAccess(client, "", ADMFLAG_CHEATS))
return Plugin_Handled;
LogAction(client, -1, "\"%L\" used cheat command: \"impulse %d\"", client, impulse);
return Plugin_Continue;
}
stock void MakeCheatCommand(const char[] name)

View File

@ -13,7 +13,7 @@
Handle g_FriendsArray[MAXPLAYERS + 1] = {INVALID_HANDLE, ...};
bool g_bLateLoad = false;
#include "SteamAPI.secret" //#define STEAM_API_KEY here
#include <SteamAPI.secret> //#define STEAM_API_KEY here
public Plugin myinfo =
{
@ -33,6 +33,8 @@ public void OnPluginStart()
AddMultiTargetFilter("@random", Filter_Random, "a Random Player", false);
AddMultiTargetFilter("@randomct", Filter_RandomCT, "a Random CT", false);
AddMultiTargetFilter("@randomt", Filter_RandomT, "a Random T", false);
AddMultiTargetFilter("@alivect", Filter_AliveCT, "Alive Humans", false);
AddMultiTargetFilter("@alivet", Filter_AliveT, "Alive Zombies", false);
RegConsoleCmd("sm_admins", Command_Admins, "Currently online admins.");
RegConsoleCmd("sm_friends", Command_Friends, "Currently online friends.");
@ -60,6 +62,8 @@ public void OnPluginEnd()
RemoveMultiTargetFilter("@random", Filter_Random);
RemoveMultiTargetFilter("@randomct", Filter_RandomCT);
RemoveMultiTargetFilter("@randomt", Filter_RandomT);
RemoveMultiTargetFilter("@alivect", Filter_AliveCT);
RemoveMultiTargetFilter("@alivet", Filter_AliveT);
}
public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
@ -136,6 +140,32 @@ public Action Command_Friends(int client, int args)
return Plugin_Handled;
}
public bool Filter_AliveCT(const char[] sPattern, Handle hClients, int client)
{
for(int i = 1; i <= MaxClients; i++)
{
if(IsClientInGame(i) && !IsFakeClient(i) && GetClientTeam(i) == CS_TEAM_CT && IsPlayerAlive(i))
{
PushArrayCell(hClients, i);
}
}
return true;
}
public bool Filter_AliveT(const char[] sPattern, Handle hClients, int client)
{
for(int i = 1; i <= MaxClients; i++)
{
if(IsClientInGame(i) && !IsFakeClient(i) && GetClientTeam(i) == CS_TEAM_T && IsPlayerAlive(i))
{
PushArrayCell(hClients, i);
}
}
return true;
}
public bool Filter_Admin(const char[] sPattern, Handle hClients, int client)
{
for(int i = 1; i <= MaxClients; i++)

View File

@ -9,30 +9,115 @@
#include <clientprefs>
bool g_bHideLennies[MAXPLAYERS + 1] = { false, ... };
bool g_bHideLenniesHooked = false;
Handle g_hCookieHideLennies = null;
char g_cLennies[23][] = {"( ͡° ͜ʖ ͡°)", "͜ʖ", "(° ͜ʖ °)", "( ͝͠°͜ل͝͠°)", "( ͡° ͜ ͡°)", "( ͡°╭͜ʖ╮͡° )", "( ͠° ͜ʖ ͡°)", "( ° ͜ʖ °)", "(╯°□°)╯", "_(ツ)_", "_ツ_", "( ̿°̿ ͜ل͜ ̿°̿ )", "( ͡", "( ͠", "( ͝", "( °", "", "ಠ_ಠ", "͡°", "°͡", "ʖ", "͡", "͜"};
#define NUMBEROFLENNIES 23
char g_cLennies[NUMBEROFLENNIES][] = {"( ͡° ͜ʖ ͡°)", "͜ʖ", "(° ͜ʖ °)", "( ͝͠°͜ل͝͠°)", "( ͡° ͜ ͡°)", "( ͡°╭͜ʖ╮͡° )", "( ͠° ͜ʖ ͡°)", "( ° ͜ʖ °)", "(╯°□°)╯", "_(ツ)_", "_ツ_", "( ̿°̿ ͜ل͜ ̿°̿ )", "( ͡", "( ͠", "( ͝", "( °", "", "ಠ_ಠ", "͡°", "°͡", "ʖ", "͡", "͜"};
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Plugin myinfo =
{
name = "AntiLenny",
author = "Dogan",
description = "Makes it possible to selfmute Lennies",
version = "1.2.0",
version = "1.3.0",
url = ""
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnPluginStart()
{
RegConsoleCmd("sm_hide_lennies", HideLennies, "Toggle blocking Lennies");
RegConsoleCmd("sm_hide_lennies", OnToggleLennies, "Toggle blocking Lennies");
g_hCookieHideLennies = RegClientCookie("lennies_blocked", "are lennies blocked", CookieAccess_Protected);
SetCookieMenuItem(MenuHandler_CookieMenu, 0, "Hide Lennies");
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Action OnToggleLennies(int client, int args)
{
ToggleLennies(client);
return Plugin_Handled;
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void ShowSettingsMenu(int client)
{
Menu menu = new Menu(MenuHandler_MainMenu);
menu.SetTitle("AntiLenny Settings", client);
char sBuffer[128];
Format(sBuffer, sizeof(sBuffer), "Hiding Lennies: %s", g_bHideLennies[client] ? "Enabled" : "Disabled");
menu.AddItem("0", sBuffer);
menu.ExitBackButton = true;
menu.Display(client, MENU_TIME_FOREVER);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void MenuHandler_CookieMenu(int client, CookieMenuAction action, any info, char[] buffer, int maxlen)
{
switch(action)
{
case(CookieMenuAction_DisplayOption):
{
Format(buffer, maxlen, "AntiLenny", client);
}
case(CookieMenuAction_SelectOption):
{
ShowSettingsMenu(client);
}
}
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public int MenuHandler_MainMenu(Menu menu, MenuAction action, int client, int selection)
{
switch(action)
{
case(MenuAction_Select):
{
switch(selection)
{
case(0): ToggleLennies(client);
}
ShowSettingsMenu(client);
}
case(MenuAction_Cancel):
{
ShowCookieMenu(client);
}
case(MenuAction_End):
{
delete menu;
}
}
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Action CCC_OnChatMessage(int client, int author, const char[] message)
{
for(int i = 0; i < 23; i++)
for(int i = 0; i < NUMBEROFLENNIES; i++)
{
if(g_bHideLennies[client] && StrContains(message, g_cLennies[i], false) != -1)
{
@ -42,24 +127,20 @@ public Action CCC_OnChatMessage(int client, int author, const char[] message)
return Plugin_Continue;
}
public Action HideLennies(int client, int args)
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void ToggleLennies(int client)
{
g_bHideLennies[client] = !g_bHideLennies[client];
CheckHideLenniesHooks();
if(g_bHideLennies[client])
{
ReplyToCommand(client, "You blocked Lennies");
SetClientCookie(client, g_hCookieHideLennies, "1");
}
else
{
ReplyToCommand(client, "You unblocked Lennies");
SetClientCookie(client, g_hCookieHideLennies, "");
}
return Plugin_Handled;
SetClientCookie(client, g_hCookieHideLennies, g_bHideLennies[client] ? "1" : "");
CPrintToChat(client, "{cyan}[AntiLenny] {white}%s", g_bHideLennies[client] ? "Lennies are now hidden." : "Lennies are not hidden anymore.");
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnClientCookiesCached(int client)
{
char sBuffer[2];
@ -69,7 +150,6 @@ public void OnClientCookiesCached(int client)
if(sBuffer[0] != '\0')
{
g_bHideLennies[client] = true;
g_bHideLenniesHooked = true;
}
else
{
@ -77,24 +157,10 @@ public void OnClientCookiesCached(int client)
}
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnClientDisconnect(int client)
{
g_bHideLennies[client] = false;
CheckHideLenniesHooks();
}
public void CheckHideLenniesHooks()
{
bool bShouldHook = false;
for(int i = 1; i <= MaxClients; i++)
{
if(g_bHideLennies[i])
{
bShouldHook = true;
break;
}
}
g_bHideLenniesHooked = bShouldHook;
}

View File

@ -84,9 +84,9 @@ public void OnPluginStart()
LogError("Couldn't get GameOver address from game config! GameOver cancel disabled.");
return;
}
CloseHandle(hGameConf);
g_bGameOver = true;
CloseHandle(hGameConf);
}
public Action Command_Extend_Rounds(int client, int argc)

View File

@ -51,7 +51,7 @@ public void OnPluginStart()
RegAdminCmd("sm_modelscale", Command_ModelScale, ADMFLAG_GENERIC, "sm_modelscale <#userid|name> <scale>");
RegAdminCmd("sm_resize", Command_ModelScale, ADMFLAG_GENERIC, "sm_resize <#userid|name> <scale>");
RegAdminCmd("sm_setmodel", Command_SetModel, ADMFLAG_GENERIC, "sm_setmodel <#userid|name> <modelpath>");
RegAdminCmd("sm_setscore", Command_SetScore, ADMFLAG_GENERIC, "sm_setscore <#userid|name> <value>");
RegAdminCmd("sm_setscore", Command_SetScore, ADMFLAG_GENERIC, "sm_setscore <#userid|name> <(optional +/-) value>");
RegAdminCmd("sm_setdeaths", Command_SetDeaths, ADMFLAG_GENERIC, "sm_setdeaths <#userid|name> <value>");
RegAdminCmd("sm_setmvp", Command_SetMvp, ADMFLAG_GENERIC, "sm_setmvp <#userid|name> <value>");
RegAdminCmd("sm_setteamscore", Command_SetTeamScore, ADMFLAG_GENERIC, "sm_setteamscore <team> <value>");
@ -346,10 +346,7 @@ public Action Command_Weapon(int client, int argc)
if(client >= 1)
{
AdminId id = GetUserAdmin(client);
int superadmin = GetAdminFlag(id, Admin_Cheats);
if(!superadmin)
if(!GetAdminFlag(GetUserAdmin(client), Admin_RCON))
{
if(StrEqual(sWeapon, "weapon_c4", false) || StrEqual(sWeapon, "weapon_smokegrenade", false) || StrEqual(sWeapon, "item_defuser", false))
{
@ -921,7 +918,7 @@ public Action Command_SetScore(int client, int argc)
{
if(argc < 2)
{
ReplyToCommand(client, "[SM] Usage: sm_setscore <#userid|name> <value>");
ReplyToCommand(client, "[SM] Usage: sm_setscore <#userid|name> <(optional +/-) value>");
return Plugin_Handled;
}
@ -935,25 +932,53 @@ public Action Command_SetScore(int client, int argc)
GetCmdArg(1, sArgs, sizeof(sArgs));
GetCmdArg(2, sArgs2, sizeof(sArgs2));
int iVal = StringToInt(sArgs2);
if((iTargetCount = ProcessTargetString(sArgs, client, iTargets, MAXPLAYERS, 0, sTargetName, sizeof(sTargetName), bIsML)) <= 0)
{
ReplyToTargetError(client, iTargetCount);
return Plugin_Handled;
}
for(int i = 0; i < iTargetCount; i++)
int iMode = 0;
int iVal;
if(StrContains(sArgs2, "+", true) != -1)
{
SetEntProp(iTargets[i], Prop_Data, "m_iFrags", iVal);
iMode = 1;
iVal = StringToInt(sArgs2[1]);
}
else if(StrContains(sArgs2, "-", true) != -1)
{
iMode = 2;
iVal = StringToInt(sArgs2[1]);
}
else
{
iVal = StringToInt(sArgs2);
}
for(int i = 0; i < iTargetCount; i++)
{
if(iMode == 1)
{
SetEntProp(iTargets[i], Prop_Data, "m_iFrags", GetEntProp(iTargets[i], Prop_Data, "m_iFrags") + iVal);
ShowActivity2(client, "\x01[SM] \x04", "\x01Increased score by \x04%d\x01 on target \x04%s", iVal, sTargetName);
}
else if(iMode == 2)
{
SetEntProp(iTargets[i], Prop_Data, "m_iFrags", GetEntProp(iTargets[i], Prop_Data, "m_iFrags") - iVal);
ShowActivity2(client, "\x01[SM] \x04", "\x01Decreased score by \x04%d\x01 on target \x04%s", iVal, sTargetName);
}
else
{
SetEntProp(iTargets[i], Prop_Data, "m_iFrags", iVal);
ShowActivity2(client, "\x01[SM] \x04", "\x01Set score to \x04%d\x01 on target \x04%s", iVal, sTargetName);
}
}
if(iTargetCount > 1)
LogAction(client, -1, "\"%L\" set score to \"%d\" on target \"%s\"", client, iVal, sTargetName);
LogAction(client, -1, "\"%L\" set score \"%s\" on target \"%s\"", client, sArgs2, sTargetName);
else
LogAction(client, iTargets[0], "\"%L\" set score to \"%d\" on target \"%L\"", client, iVal, iTargets[0]);
LogAction(client, iTargets[0], "\"%L\" set score \"%s\" on target \"%L\"", client, sArgs2, iTargets[0]);
return Plugin_Handled;
}

View File

@ -30,8 +30,8 @@ public void OnPluginStart()
{
LoadTranslations("common.phrases");
RegAdminCmd("sm_forceinput", Command_ForceInput, ADMFLAG_ROOT);
RegAdminCmd("sm_forceinputplayer", Command_ForceInputPlayer, ADMFLAG_ROOT);
RegAdminCmd("sm_forceinput", Command_ForceInput, ADMFLAG_RCON);
RegAdminCmd("sm_forceinputplayer", Command_ForceInputPlayer, ADMFLAG_RCON);
}
//----------------------------------------------------------------------------------------------------

View File

@ -57,15 +57,15 @@ public void OnPluginStart()
g_Regex_RGB = CompileRegex("^(([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\\s+){2}([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])$");
g_Regex_HEX = CompileRegex("^(#?)([A-Fa-f0-9]{6})$");
RegAdminCmd("sm_glowcolors", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_glowcolors <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glowcolours", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_glowcolours <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glowcolor", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_glowcolor <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glowcolour", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_glowcolour <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_colors", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_colors <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_colours", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_colours <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_color", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_color <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_colour", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_colour <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glow", Command_GlowColors, ADMFLAG_CUSTOM5, "Change your players glowcolor. sm_glow <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glowcolors", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_glowcolors <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glowcolours", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_glowcolours <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glowcolor", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_glowcolor <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glowcolour", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_glowcolour <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_colors", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_colors <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_colours", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_colours <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_color", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_color <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_colour", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_colour <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_glow", Command_GlowColors, ADMFLAG_CUSTOM2, "Change your players glowcolor. sm_glow <RRGGBB HEX | 0-255 0-255 0-255 RGB CODE>");
RegAdminCmd("sm_rainbow", Command_Rainbow, ADMFLAG_CUSTOM1, "Enable rainbow glowcolors. sm_rainbow [frequency]");
@ -172,7 +172,7 @@ public void OnClientPostAdminCheck(int client)
void ReadClientCookies(int client)
{
char sCookie[16];
if(CheckCommandAccess(client, "sm_glowcolors", ADMFLAG_CUSTOM5))
if(CheckCommandAccess(client, "sm_glowcolors", ADMFLAG_CUSTOM2))
GetClientCookie(client, g_hClientCookie, sCookie, sizeof(sCookie));
if(StrEqual(sCookie, ""))
@ -187,7 +187,7 @@ void ReadClientCookies(int client)
public void OnClientDisconnect(int client)
{
if(CheckCommandAccess(client, "sm_glowcolors", ADMFLAG_CUSTOM5))
if(CheckCommandAccess(client, "sm_glowcolors", ADMFLAG_CUSTOM2))
{
if(g_aGlowColor[client][0] == 255 &&
g_aGlowColor[client][1] == 255 &&

View File

@ -68,20 +68,9 @@ public void Cvar_FileChanged(ConVar convar, const char[] oldValue, const char[]
}
else
{
LogError("[SM] File not found! (configs/info_messages/%s.txt)", sFilename);
}
for (int i = 1; i <= MaxClients; i++)
{
if (!IsClientInGame(i) || IsFakeClient(i))
continue;
OnClientPutInServer(i);
}
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------

View File

@ -2,6 +2,7 @@
#include <sourcemod>
#include <sdkhooks>
#include <multicolors>
#include <clientprefs>
#pragma newdecls required
@ -12,6 +13,9 @@ ConVar g_Cvar_NoShakeGlobal;
bool g_bNoShake[MAXPLAYERS + 1] = {false, ...};
bool g_bNoShakeGlobal = false;
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Plugin myinfo =
{
name = "NoShake",
@ -21,6 +25,9 @@ public Plugin myinfo =
url = ""
};
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnPluginStart()
{
RegConsoleCmd("sm_shake", Command_Shake, "[NoShake] Disables or enables screen shakes.");
@ -33,25 +40,41 @@ public void OnPluginStart()
g_Cvar_NoShakeGlobal.AddChangeHook(OnConVarChanged);
HookUserMessage(GetUserMessageId("Shake"), MsgHook, true);
SetCookieMenuItem(MenuHandler_CookieMenu, 0, "NoShake");
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnClientCookiesCached(int client)
{
static char sCookieValue[2];
GetClientCookie(client, g_hNoShakeCookie, sCookieValue, sizeof(sCookieValue));
g_bNoShake[client] = StringToInt(sCookieValue) != 0;
char sBuffer[4];
GetClientCookie(client, g_hNoShakeCookie, sBuffer, sizeof(sBuffer));
if (sBuffer[0])
g_bNoShake[client] = true;
else
g_bNoShake[client] = false;
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnConVarChanged(ConVar convar, const char[] oldValue, const char[] newValue)
{
if(StringToInt(newValue) > StringToInt(oldValue))
PrintToChatAll("\x03[NoShake]\x01 Enabled NoShake globally!");
else if(StringToInt(newValue) < StringToInt(oldValue))
PrintToChatAll("\x03[NoShake]\x01 Disabled NoShake globally!");
g_bNoShakeGlobal = convar.BoolValue;
if(g_bNoShakeGlobal)
CPrintToChatAll("{cyan}[NoShake] {white}has been enabled globally.");
else
CPrintToChatAll("{cyan}[NoShake] {white}has been disabled globally.");
g_bNoShakeGlobal = StringToInt(newValue) != 0;
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Action MsgHook(UserMsg msg_id, BfRead msg, const int[] players, int playersNum, bool reliable, bool init)
{
if(playersNum == 1 && (g_bNoShakeGlobal || g_bNoShake[players[0]]))
@ -60,32 +83,91 @@ public Action MsgHook(UserMsg msg_id, BfRead msg, const int[] players, int playe
return Plugin_Continue;
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Action Command_Shake(int client, int args)
{
ToggleShake(client);
return Plugin_Handled;
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void ToggleShake(int client)
{
if(g_bNoShakeGlobal)
return Plugin_Handled;
if(!AreClientCookiesCached(client))
{
ReplyToCommand(client, "\x03[NoShake]\x01 Please wait. Your settings are still loading.");
return Plugin_Handled;
CPrintToChat(client, "{cyan}[NoShake] {white}is currently enabled globally.");
return;
}
if(g_bNoShake[client])
g_bNoShake[client] = !g_bNoShake[client];
SetClientCookie(client, g_hNoShakeCookie, g_bNoShake[client] ? "1" : "");
CPrintToChat(client, "{cyan}[NoShake] {white}%s", g_bNoShake[client] ? "has been enabled." : "has been disabled.");
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void ShowSettingsMenu(int client)
{
g_bNoShake[client] = false;
ReplyToCommand(client, "\x03[NoShake]\x01 has been disabled!");
Menu menu = new Menu(MenuHandler_MainMenu);
menu.SetTitle("NoShake Settings", client);
char sBuffer[128];
Format(sBuffer, sizeof(sBuffer), "NoShake: %s", (g_bNoShake[client] || g_bNoShakeGlobal) ? "Enabled" : "Disabled");
menu.AddItem("0", sBuffer);
menu.ExitBackButton = true;
menu.Display(client, MENU_TIME_FOREVER);
}
else
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void MenuHandler_CookieMenu(int client, CookieMenuAction action, any info, char[] buffer, int maxlen)
{
g_bNoShake[client] = true;
ReplyToCommand(client, "\x03[NoShake]\x01 has been enabled!");
switch(action)
{
case(CookieMenuAction_DisplayOption):
{
Format(buffer, maxlen, "NoShake", client);
}
case(CookieMenuAction_SelectOption):
{
ShowSettingsMenu(client);
}
}
}
static char sCookieValue[2];
IntToString(g_bNoShake[client], sCookieValue, sizeof(sCookieValue));
SetClientCookie(client, g_hNoShakeCookie, sCookieValue);
return Plugin_Handled;
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public int MenuHandler_MainMenu(Menu menu, MenuAction action, int client, int selection)
{
switch(action)
{
case(MenuAction_Select):
{
switch(selection)
{
case(0): ToggleShake(client);
}
ShowSettingsMenu(client);
}
case(MenuAction_Cancel):
{
ShowCookieMenu(client);
}
case(MenuAction_End):
{
delete menu;
}
}
}

View File

@ -91,7 +91,7 @@ public MRESReturn AcceptInput(int pThis, Handle hReturn, Handle hParams)
char szInputName[128];
DHookGetParamString(hParams, 1, szInputName, sizeof(szInputName));
if(!StrEqual(szInputName, "Command", true))
if(!StrEqual(szInputName, "Command", false))
return MRES_Ignored;
int client = 0;

View File

@ -0,0 +1,378 @@
#pragma semicolon 1
#include <sourcemod>
#include <sdktools>
#include <cstrike>
#include <clientprefs>
#include <multicolors>
#define MESSAGE_RADIOTEXT 1
#define MESSAGE_SENDAUDIO 2
bool g_bStopRadioSounds[MAXPLAYERS+1] = { false, ... };
bool g_bStopNadeSounds[MAXPLAYERS+1] = { false, ...};
bool g_bStopRadioSoundsHooked = false;
Handle g_hCookieStopRadio = null;
Handle g_hCookieStopNade = null;
public Plugin myinfo =
{
name = "SelfMuteRadio",
author = "Dogan + zaCade",
description = "Make it possible to self mute the radio (aka ignoread via command)",
version = "1.0.0",
url = ""
};
public void OnPluginStart()
{
UserMsg RadioText = GetUserMessageId("RadioText");
if (RadioText == INVALID_MESSAGE_ID)
SetFailState("This game does not support the \"RadioText\" UserMessage.");
UserMsg SendAudio = GetUserMessageId("SendAudio");
if (SendAudio == INVALID_MESSAGE_ID)
SetFailState("This game does not support the \"SendAudio\" UserMessage.");
RegConsoleCmd("sm_smradio", OnToggleSelfMuteRadio, "Toggle Radio Self Mute");
//RegConsoleCmd("sm_radio", OnToggleSelfMuteRadio, "Toggle Radio Self Mute"); //GFL only
RegConsoleCmd("sm_smradio_nades", OnToggleSelfMuteNade, "Toggle only Radio 'Fire in the hole' Self Mute");
g_hCookieStopRadio = RegClientCookie("radio_blocked", "is the radio blocked", CookieAccess_Protected);
g_hCookieStopNade = RegClientCookie("nades_blocked", "is the 'fire in the hole' radio blocked", CookieAccess_Protected);
SetCookieMenuItem(MenuHandler_CookieMenu, 0, "Radio Self Mute");
HookUserMessage(RadioText, Hook_RadioText, true);
HookUserMessage(SendAudio, Hook_SendAudio, true);
}
public Action Hook_RadioText(UserMsg msg_id, Handle bf, const int[] players, int playersNum, bool reliable, bool init)
{
if(!g_bStopRadioSoundsHooked)
return Plugin_Continue;
int dest = BfReadByte(bf);
int client = BfReadByte(bf);
char sSoundType[128];
BfReadString(bf, sSoundType, sizeof(sSoundType), false);
char sSoundName[128];
BfReadString(bf, sSoundName, sizeof(sSoundName), false);
char sSoundFile[128];
BfReadString(bf, sSoundFile, sizeof(sSoundFile), false);
// Check which clients need to be excluded.
int[] newPlayers = new int[playersNum];
int newPlayersNum = 0;
for(int i = 0; i < playersNum; i++)
{
int player = players[i];
if(IsClientInGame(player) && !g_bStopRadioSounds[player] && !(g_bStopNadeSounds[player] && StrContains(sSoundFile, "hole", false) != -1))
{
newPlayers[newPlayersNum++] = player;
}
}
if (newPlayersNum == playersNum)
{
// No clients where excluded.
return Plugin_Continue;
}
else if (newPlayersNum == 0)
{
// All clients were excluded and there is no need to broadcast.
return Plugin_Handled;
}
DataPack pack = new DataPack();
pack.WriteString(sSoundType);
pack.WriteString(sSoundName);
pack.WriteString(sSoundFile);
pack.WriteCell(dest);
pack.WriteCell(client);
pack.WriteCell(newPlayersNum);
for(int i = 0; i < newPlayersNum; i++)
{
pack.WriteCell(newPlayers[i]);
}
RequestFrame(OnRadioText, pack);
return Plugin_Handled;
}
public void OnRadioText(DataPack pack)
{
pack.Reset();
char sSoundType[128];
pack.ReadString(sSoundType, sizeof(sSoundType));
char sSoundName[128];
pack.ReadString(sSoundName, sizeof(sSoundName));
char sSoundFile[128];
pack.ReadString(sSoundFile, sizeof(sSoundFile));
int dest = pack.ReadCell();
int client = pack.ReadCell();
int newPlayersNum = pack.ReadCell();
int[] players = new int[newPlayersNum];
int playersNum = 0;
for(int i = 0; i < newPlayersNum; i++)
{
int player = pack.ReadCell();
if(IsClientInGame(player))
{
players[playersNum++] = player;
}
}
CloseHandle(pack);
Handle RadioText = StartMessage("RadioText", players, playersNum, USERMSG_RELIABLE | USERMSG_BLOCKHOOKS);
if (RadioText != INVALID_HANDLE)
{
BfWriteByte(RadioText, dest);
BfWriteByte(RadioText, client);
BfWriteString(RadioText, sSoundType);
BfWriteString(RadioText, sSoundName);
BfWriteString(RadioText, sSoundFile);
}
EndMessage();
}
public Action Hook_SendAudio(UserMsg msg_id, Handle bf, const int[] players, int playersNum, bool reliable, bool init)
{
if(!g_bStopRadioSoundsHooked)
return Plugin_Continue;
char sSoundFile[128];
BfReadString(bf, sSoundFile, sizeof(sSoundFile), false);
// Check which clients need to be excluded.
int[] newPlayers = new int[playersNum];
int newPlayersNum = 0;
for(int i = 0; i < playersNum; i++)
{
int player = players[i];
if(IsClientInGame(player) && !g_bStopRadioSounds[player] && !(g_bStopNadeSounds[player] && StrContains(sSoundFile, "hole", false) != -1))
{
newPlayers[newPlayersNum++] = player;
}
}
if (newPlayersNum == playersNum)
{
// No clients where excluded.
return Plugin_Continue;
}
else if (newPlayersNum == 0)
{
// All clients were excluded and there is no need to broadcast.
return Plugin_Handled;
}
DataPack pack = new DataPack();
pack.WriteString(sSoundFile);
pack.WriteCell(newPlayersNum);
for(int i = 0; i < newPlayersNum; i++)
{
pack.WriteCell(newPlayers[i]);
}
RequestFrame(OnSendAudio, pack);
return Plugin_Handled;
}
public void OnSendAudio(DataPack pack)
{
pack.Reset();
char sSoundFile[128];
pack.ReadString(sSoundFile, sizeof(sSoundFile));
int newPlayersNum = pack.ReadCell();
int[] players = new int[newPlayersNum];
int playersNum = 0;
for(int i = 0; i < newPlayersNum; i++)
{
int player = pack.ReadCell();
if(IsClientInGame(player))
{
players[playersNum++] = player;
}
}
CloseHandle(pack);
Handle SendAudio = StartMessage("SendAudio", players, playersNum, USERMSG_RELIABLE | USERMSG_BLOCKHOOKS);
if (SendAudio != INVALID_HANDLE)
{
BfWriteString(SendAudio, sSoundFile);
}
EndMessage();
}
public Action OnToggleSelfMuteRadio(int client, int args)
{
ToggleSelfMuteRadio(client);
return Plugin_Handled;
}
public Action OnToggleSelfMuteNade(int client, int args)
{
ToggleSelfMuteNade(client);
return Plugin_Handled;
}
public Action ToggleSelfMuteRadio(int client)
{
g_bStopRadioSounds[client] = !g_bStopRadioSounds[client];
CheckHooks();
SetClientCookie(client, g_hCookieStopRadio, g_bStopRadioSounds[client] ? "1" : "");
CPrintToChat(client, "{cyan}[SelfMuteRadio] {white}%s", g_bStopRadioSounds[client] ? "You self-muted all Radio Messages and Sounds." : "You self-unmuted all Radio Messages and Sounds.");
}
public Action ToggleSelfMuteNade(int client)
{
g_bStopNadeSounds[client] = !g_bStopNadeSounds[client];
CheckHooks();
SetClientCookie(client, g_hCookieStopNade, g_bStopNadeSounds[client] ? "1" : "");
CPrintToChat(client, "{cyan}[SelfMuteRadio] {white}%s", g_bStopNadeSounds[client] ? "You self-muted 'Fire in the Hole' Radio Messages and Sounds." : "You self-unmuted 'Fire in the Hole' Radio Messages and Sounds.");
}
public void OnClientCookiesCached(int client)
{
char sBuffer[2];
GetClientCookie(client, g_hCookieStopRadio, sBuffer, sizeof(sBuffer));
if(sBuffer[0] != '\0')
{
g_bStopRadioSounds[client] = true;
g_bStopRadioSoundsHooked = true;
}
else
{
g_bStopRadioSounds[client] = false;
}
GetClientCookie(client, g_hCookieStopRadio, sBuffer, sizeof(sBuffer));
if(sBuffer[0] != '\0')
{
g_bStopNadeSounds[client] = true;
g_bStopRadioSoundsHooked = true;
}
else
{
g_bStopNadeSounds[client] = false;
}
}
public void OnClientDisconnect(int client)
{
g_bStopRadioSounds[client] = false;
g_bStopNadeSounds[client] = false;
CheckHooks();
}
public void CheckHooks()
{
bool bShouldHook = false;
for(int i = 1; i <= MaxClients; i++)
{
if(g_bStopRadioSounds[i] || g_bStopNadeSounds[i])
{
bShouldHook = true;
break;
}
}
g_bStopRadioSoundsHooked = bShouldHook;
}
public void ShowSettingsMenu(int client)
{
Menu menu = new Menu(MenuHandler_MainMenu);
menu.SetTitle("SelfMuteRadio Settings", client);
char sBuffer[128];
Format(sBuffer, sizeof(sBuffer), "Self-Muting all Radio: %s", g_bStopRadioSounds[client] ? "Enabled" : "Disabled");
menu.AddItem("0", sBuffer);
Format(sBuffer, sizeof(sBuffer), "Self-Muting Nades Radio only: %s", g_bStopNadeSounds[client] ? "Enabled" : "Disabled");
menu.AddItem("1", sBuffer);
menu.ExitBackButton = true;
menu.Display(client, MENU_TIME_FOREVER);
}
public void MenuHandler_CookieMenu(int client, CookieMenuAction action, any info, char[] buffer, int maxlen)
{
switch(action)
{
case(CookieMenuAction_DisplayOption):
{
Format(buffer, maxlen, "SelfMuteRadio", client);
}
case(CookieMenuAction_SelectOption):
{
ShowSettingsMenu(client);
}
}
}
public int MenuHandler_MainMenu(Menu menu, MenuAction action, int client, int selection)
{
switch(action)
{
case(MenuAction_Select):
{
switch(selection)
{
case(0): ToggleSelfMuteRadio(client);
case(1): ToggleSelfMuteNade(client);
}
ShowSettingsMenu(client);
}
case(MenuAction_Cancel):
{
ShowCookieMenu(client);
}
case(MenuAction_End):
{
delete menu;
}
}
}

View File

@ -89,7 +89,7 @@ public void SendMessage()
for (int client = 1; client <= MAXPLAYERS; client++)
{
if (IsClientConnected(client))
if (IsClientInGame(client) && !IsFakeClient(client))
{
ShowSyncHudText(client, MessageSync, MessageTxt);
}

View File

View File

View File

View File

View File

View File

View File

@ -2,7 +2,6 @@
#include <sourcemod>
#include <sdktools>
#include <connect>
#tryinclude "serverfps.inc"
@ -163,10 +162,7 @@ public Action Command_Status(int client, const char[] command, int args)
}
if(IsClientInGame(player))
if (SteamClientAuthenticated(sPlayerAuth))
FormatEx(sPlayerState, sizeof(sPlayerState), "active");
else
FormatEx(sPlayerState, sizeof(sPlayerState), "nosteam");
else
FormatEx(sPlayerState, sizeof(sPlayerState), "spawning");

View File

@ -6,12 +6,12 @@
#define MIN_PLAYERS 2
Handle g_hWarmupEndFwd;
int g_iWarmup = 0;
int g_iMaxWarmup = 0;
bool g_bWarmup = false;
ConVar g_CVar_sm_warmuptime;
ConVar g_CVar_sm_warmupratio;
ConVar g_CVar_sm_warmupmaxtime;
bool g_bRoundEnded = false;
bool g_bZombieSpawned = false;
@ -26,15 +26,6 @@ public Plugin myinfo =
url = "https://github.com/CSSZombieEscape/sm-plugins/tree/master/TeamManager"
};
public APLRes AskPluginLoad2(Handle hThis, bool bLate, char[] err, int iErrLen)
{
CreateNative("TeamManager_InWarmup", Native_InWarmup);
RegPluginLibrary("TeamManager");
return APLRes_Success;
}
public void OnPluginStart()
{
if (GetEngineVersion() == Engine_CSGO)
@ -46,8 +37,7 @@ public void OnPluginStart()
g_CVar_sm_warmuptime = CreateConVar("sm_warmuptime", "10", "Warmup timer.", 0, true, 0.0, true, 60.0);
g_CVar_sm_warmupratio = CreateConVar("sm_warmupratio", "0.60", "Ratio of connected players that need to be in game to start warmup timer.", 0, true, 0.0, true, 1.0);
g_hWarmupEndFwd = CreateGlobalForward("TeamManager_WarmupEnd", ET_Ignore);
g_CVar_sm_warmupmaxtime = CreateConVar("sm_warmupmaxtime", "45", "Max Warmup timer.", 0, true, 0.0, true, 120.0);
AutoExecConfig(true, "plugin.TeamManager");
}
@ -55,6 +45,7 @@ public void OnPluginStart()
public void OnMapStart()
{
g_iWarmup = 0;
g_iMaxWarmup = 0;
g_bWarmup = false;
g_bRoundEnded = false;
g_bZombieSpawned = false;
@ -68,6 +59,22 @@ public void OnMapStart()
public Action OnWarmupTimer(Handle timer)
{
if(g_iMaxWarmup >= g_CVar_sm_warmupmaxtime.IntValue)
{
g_iMaxWarmup = 0;
g_bWarmup = false;
CS_TerminateRound(3.0, CSRoundEnd_GameStart, false);
return Plugin_Stop;
}
if(g_iWarmup >= g_CVar_sm_warmuptime.IntValue)
{
g_iWarmup = 0;
g_bWarmup = false;
CS_TerminateRound(3.0, CSRoundEnd_GameStart, false);
return Plugin_Stop;
}
if(g_CVar_sm_warmupratio.FloatValue > 0.0)
{
int ClientsConnected = GetClientCount(false);
@ -77,33 +84,19 @@ public Action OnWarmupTimer(Handle timer)
if(ClientsInGame < ClientsNeeded)
{
g_iWarmup = 0;
PrintCenterTextAll("Warmup: Waiting for %d more players to join.", ClientsNeeded - ClientsInGame);
g_iMaxWarmup++;
PrintCenterTextAll("Warmup: Waiting for %d more players to join or %d seconds.", ClientsNeeded - ClientsInGame, g_CVar_sm_warmupmaxtime.IntValue - g_iMaxWarmup);
return Plugin_Continue;
}
}
if(g_iWarmup >= g_CVar_sm_warmuptime.IntValue)
else
{
g_iWarmup = 0;
g_bWarmup = false;
float fDelay = 3.0;
CS_TerminateRound(fDelay, CSRoundEnd_GameStart, false);
CreateTimer(fDelay, Timer_FireForward, _, TIMER_FLAG_NO_MAPCHANGE);
return Plugin_Stop;
}
PrintCenterTextAll("Warmup: %d", g_CVar_sm_warmuptime.IntValue - g_iWarmup);
g_iWarmup++;
PrintCenterTextAll("Warmup: Enough players joined. %d seconds left. ", g_CVar_sm_warmuptime.IntValue - g_iWarmup);
return Plugin_Continue;
}
}
public Action Timer_FireForward(Handle hThis)
{
Call_StartForward(g_hWarmupEndFwd);
Call_Finish();
return Plugin_Handled;
return Plugin_Continue;
}
public void OnClientDisconnect(int client)
@ -227,7 +220,10 @@ public Action ZR_OnClientInfect(int &client, int &attacker, bool &motherInfect,
return Plugin_Continue;
}
public int Native_InWarmup(Handle hPlugin, int numParams)
public Action ZR_OnInfectCountdown()
{
return g_bWarmup;
if(g_bWarmup)
return Plugin_Handled;
return Plugin_Continue;
}

View File

@ -0,0 +1,680 @@
#include <sourcemod>
#include <sdktools>
#include <multicolors>
#pragma semicolon 1
#pragma newdecls required
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Plugin myinfo =
{
name = "ze_dreamin VScript",
author = "Neon",
description = "",
version = "1.0",
url = "https://steamcommunity.com/id/n3ontm"
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnPluginStart()
{
HookEvent("round_start", OnRoundStart);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnMapStart()
{
VerifyMap();
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void VerifyMap()
{
char sCurrentMap[64];
GetCurrentMap(sCurrentMap, sizeof(sCurrentMap));
if (strncmp(sCurrentMap, "ze_dreamin_", 11, false) != 0)
{
char sFilename[256];
GetPluginFilename(INVALID_HANDLE, sFilename, sizeof(sFilename));
ServerCommand("sm plugins unload %s", sFilename);
}
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void OnRoundStart(Event hEvent, const char[] sEvent, bool bDontBroadcast)
{
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("reflect_logic");
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnFalse", st3_hitbox_reflect, false);
iEntity = FindEntityByTargetName("upline_timer");
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnTimer", upline_maker_upline, false);
iEntity = FindEntityByTargetName("explo_timer");
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnTimer", explo_maker_setan, false);
iEntity = FindEntityByTargetName("linelaser_random");
if (iEntity != INVALID_ENT_REFERENCE)
{
HookSingleEntityOutput(iEntity, "OnCase01", linelaser_maker_left, false);
HookSingleEntityOutput(iEntity, "OnCase02", linelaser_maker_right, false);
}
iEntity = FindEntityByTargetName("totem_random");
if (iEntity != INVALID_ENT_REFERENCE)
{
HookSingleEntityOutput(iEntity, "OnCase01", push_maker_setrandom, false);
HookSingleEntityOutput(iEntity, "OnCase02", heal_maker_setrandom, false);
HookSingleEntityOutput(iEntity, "OnCase03", stable_maker_setrandom, false);
HookSingleEntityOutput(iEntity, "OnCase04", rotate_maker_setrandom, false);
}
iEntity = FindEntityByTargetName("spike_timer");
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnTimer", spike_maker_top, false);
iEntity = FindEntityByHammerID(389450);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_389450_display, false);
iEntity = FindEntityByHammerID(385777);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_385777_display, false);
iEntity = FindEntityByHammerID(385886);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_385886_display, false);
iEntity = FindEntityByHammerID(386004);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_386004_display, false);
iEntity = FindEntityByHammerID(381396);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnPressed", func_button_381396_display, false);
iEntity = FindEntityByHammerID(381463);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_381463_display, false);
iEntity = FindEntityByHammerID(381581);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_381581_display, false);
iEntity = FindEntityByHammerID(381648);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_381648_display, false);
iEntity = FindEntityByHammerID(378212);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_378212_display, false);
iEntity = FindEntityByHammerID(375007);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_375007_display, false);
iEntity = FindEntityByHammerID(241061);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnPressed", func_button_241061_display, false);
iEntity = FindEntityByHammerID(213033);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_213033_display, false);
iEntity = FindEntityByHammerID(142829);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_142829_display, false);
iEntity = FindEntityByHammerID(95608);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_95608_display, false);
iEntity = FindEntityByHammerID(95733);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_95733_display, false);
iEntity = FindEntityByHammerID(95823);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_95823_display, false);
iEntity = FindEntityByHammerID(77927);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnPressed", func_button_77927_display, false);
iEntity = FindEntityByHammerID(23408);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_23408_display, false);
iEntity = FindEntityByHammerID(23452);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_23452_display, false);
iEntity = FindEntityByHammerID(23474);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnStartTouch", trigger_once_23474_display, false);
iEntity = FindEntityByHammerID(23551);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnBreak", func_breakable_23551_display, false);
iEntity = FindEntityByHammerID(21950);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnPressed", func_button_21950_display, false);
iEntity = FindEntityByHammerID(22017);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnPressed", func_button_22017_display, false);
iEntity = FindEntityByHammerID(3664);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnBreak", func_breakable_3664_display, false);
iEntity = FindEntityByHammerID(11288);
if (iEntity != INVALID_ENT_REFERENCE)
HookSingleEntityOutput(iEntity, "OnHitMin", math_counter_11288_display, false);
CreateTimer(12.0, Credits, INVALID_HANDLE, TIMER_FLAG_NO_MAPCHANGE);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public Action Credits(Handle timer)
{
CPrintToChatAll("{pink}[VScripts] {white}Map using VScripts ported by Neon™");
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void st3_hitbox_reflect(const char[] output, int caller, int activator, float delay)
{
if (!IsValidClient(activator))
return;
int iHealth = GetClientHealth(activator);
if(iHealth > 10)
{
SetEntityHealth(activator, iHealth - 10);
}
else
{
SetEntityHealth(activator, 1);
}
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void upline_maker_upline(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = GetRandomFloat(-1280.0, 1280.0);
fOrigin[1] = GetRandomFloat(-1280.0, 1280.0);
fOrigin[2] = -2780.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("upline_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, fOrigin, NULL_VECTOR, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void explo_maker_setan(const char[] output, int caller, int activator, float delay)
{
float fAngles[3];
fAngles[0] = 0.0;
fAngles[1] = GetRandomFloat(0.0, 359.0);
fAngles[2] = 0.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("explo_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, NULL_VECTOR, fAngles, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void linelaser_maker_left(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = 0.0;
fOrigin[1] = GetRandomFloat(-640.0, 640.0);
fOrigin[2] = -1780.0;
float fAngles[3];
fAngles[0] = 0.0;
fAngles[1] = 0.0;
fAngles[2] = 0.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("linelaser_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, fOrigin, fAngles, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void linelaser_maker_right(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = 0.0;
fOrigin[1] = GetRandomFloat(-640.0, 640.0);
fOrigin[2] = -1820.0;
float fAngles[3];
fAngles[0] = 0.0;
fAngles[1] = 90.0;
fAngles[2] = 0.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("linelaser_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, fOrigin, fAngles, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void push_maker_setrandom(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = GetRandomFloat(-768.0, 768.0);
fOrigin[1] = GetRandomFloat(-768.0, 768.0);
fOrigin[2] = -2720.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("push_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, fOrigin, NULL_VECTOR, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void heal_maker_setrandom(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = GetRandomFloat(-768.0, 768.0);
fOrigin[1] = GetRandomFloat(-768.0, 768.0);
fOrigin[2] = -2720.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("heal_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, fOrigin, NULL_VECTOR, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void stable_maker_setrandom(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = GetRandomFloat(-768.0, 768.0);
fOrigin[1] = GetRandomFloat(-768.0, 768.0);
fOrigin[2] = -2720.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("stable_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, fOrigin, NULL_VECTOR, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void rotate_maker_setrandom(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = GetRandomFloat(-768.0, 768.0);
fOrigin[1] = GetRandomFloat(-768.0, 768.0);
fOrigin[2] = -2720.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("rotate_maker");
if (iEntity != INVALID_ENT_REFERENCE)
TeleportEntity(iEntity, fOrigin, NULL_VECTOR, NULL_VECTOR);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void spike_maker_top(const char[] output, int caller, int activator, float delay)
{
float fOrigin[3];
fOrigin[0] = GetRandomFloat(12090.0, 14363.0);
fOrigin[1] = GetRandomFloat(1280.0, 3560.0);
fOrigin[2] = 1500.0;
int iEntity = INVALID_ENT_REFERENCE;
iEntity = FindEntityByTargetName("spike_maker");
if (iEntity != INVALID_ENT_REFERENCE)
{
TeleportEntity(iEntity, fOrigin, NULL_VECTOR, NULL_VECTOR);
AcceptEntityInput(iEntity, "ForceSpawn");
}
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_389450_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_385777_display(const char[] output, int caller, int activator, float delay)
{
Display(20);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_385886_display(const char[] output, int caller, int activator, float delay)
{
Display(20);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_386004_display(const char[] output, int caller, int activator, float delay)
{
Display(20);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void func_button_381396_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_381463_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_381581_display(const char[] output, int caller, int activator, float delay)
{
Display(50);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_381648_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_378212_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_375007_display(const char[] output, int caller, int activator, float delay)
{
Display(20);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void func_button_241061_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_213033_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_142829_display(const char[] output, int caller, int activator, float delay)
{
Display(20);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_95608_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_95733_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_95823_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void func_button_77927_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_23408_display(const char[] output, int caller, int activator, float delay)
{
Display(35);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_23452_display(const char[] output, int caller, int activator, float delay)
{
Display(20);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void trigger_once_23474_display(const char[] output, int caller, int activator, float delay)
{
Display(25);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void func_breakable_23551_display(const char[] output, int caller, int activator, float delay)
{
Display(20);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void func_button_21950_display(const char[] output, int caller, int activator, float delay)
{
Display(30);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void func_button_22017_display(const char[] output, int caller, int activator, float delay)
{
Display(10);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void func_breakable_3664_display(const char[] output, int caller, int activator, float delay)
{
Display(45);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void math_counter_11288_display(const char[] output, int caller, int activator, float delay)
{
Display(51);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public void Display(int iTimer)
{
int iRelay = CreateEntityByName("logic_relay");
DispatchKeyFormat(iRelay, "targetname", "vscript_countdown_relay");
DispatchKeyFormat(iRelay, "spawnflags", "0");
DispatchKeyFormat(iRelay, "OnSpawn", "seconds_left,AddOutput,message seconds left,0,-1");
DispatchKeyFormat(iRelay, "OnSpawn", "text_sec,AddOutput,message %d,0,-1", iTimer - 1);
int iBackup = iTimer;
for (int j = 0; j <= iTimer; j++)
{
iBackup--;
DispatchKeyFormat(iRelay, "OnSpawn", "text_sec,AddOutput,message %d,%d,-1", iBackup, j);
DispatchKeyFormat(iRelay, "OnSpawn", "seconds_left,Display,,%d,-1", j);
DispatchKeyFormat(iRelay, "OnSpawn", "text_sec,Display,,%d,-1", j);
}
DispatchKeyFormat(iRelay, "OnSpawn", "seconds_left,AddOutput,message ,%d,-1", iTimer + 1);
DispatchKeyFormat(iRelay, "OnSpawn", "text_sec,AddOutput,message ,%d,-1", iTimer + 1);
DispatchKeyFormat(iRelay, "OnSpawn", "!self,Kill,,%d,-1", iTimer + 2);
SpawnAndActivate(iRelay);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public int FindEntityByTargetName(const char[] sTargetnameToFind)
{
int iEntity = INVALID_ENT_REFERENCE;
while((iEntity = FindEntityByClassname(iEntity, "*")) != INVALID_ENT_REFERENCE)
{
char sTargetname[64];
GetEntPropString(iEntity, Prop_Data, "m_iName", sTargetname, sizeof(sTargetname));
if (strcmp(sTargetnameToFind, sTargetname, false) == 0)
{
return iEntity;
}
}
PrintToChatAll("[VScripts] Error! Could not find entity: %s", sTargetnameToFind);
return INVALID_ENT_REFERENCE;
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
public int FindEntityByHammerID(int iHammerID)
{
int iEntity = INVALID_ENT_REFERENCE;
while((iEntity = FindEntityByClassname(iEntity, "*")) != INVALID_ENT_REFERENCE)
{
if(GetEntProp(iEntity, Prop_Data, "m_iHammerID") == iHammerID)
{
return iEntity;
}
}
PrintToChatAll("[VScripts] Error! Could not find entity: #%d", iHammerID);
return INVALID_ENT_REFERENCE;
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
stock bool DispatchKeyFormat(int entity, const char[] key, const char[] value, any ...)
{
char buffer[1024];
VFormat(buffer, sizeof(buffer), value, 4);
DispatchKeyValue(entity, key, buffer);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
stock void SpawnAndActivate(int entity)
{
DispatchSpawn(entity);
ActivateEntity(entity);
}
//----------------------------------------------------------------------------------------------------
// Purpose:
//----------------------------------------------------------------------------------------------------
stock bool IsValidClient(int client)
{
return (client > 0 && client <= MaxClients && IsClientInGame(client) && IsPlayerAlive(client));
}

View File

@ -15,8 +15,6 @@ int g_RealRoundStartedTime;
int g_MaxWeapons;
int g_MaxWeaponLifetime;
bool g_bEnableCSGOFix;
#define MAX_WEAPONS MAXPLAYERS
int G_WeaponArray[MAX_WEAPONS][2];
@ -32,8 +30,6 @@ public Plugin myinfo =
public void OnPluginStart()
{
g_bEnableCSGOFix = view_as<bool>(GetEngineVersion() == Engine_CSGO);
g_CVar_MaxWeapons = CreateConVar("sm_weaponcleaner_max", "5", "The maximum amount of weapons allowed in the game.", 0, true, 0.0, true, MAX_WEAPONS - 1.0);
g_MaxWeapons = g_CVar_MaxWeapons.IntValue;
g_CVar_MaxWeapons.AddChangeHook(OnConVarChanged);
@ -142,8 +138,13 @@ public void OnEntityDestroyed(int entity)
public void OnWeaponSpawned(int entity)
{
if (g_bEnableCSGOFix)
static bool bEngineVersionIsCSGO;
// This hook calls twice and before entities are initialized on csgo, delay it by a frame.
if (bEngineVersionIsCSGO || GetEngineVersion() == Engine_CSGO)
{
bEngineVersionIsCSGO = true;
SDKUnhook(entity, SDKHook_Spawn, OnWeaponSpawned);
RequestFrame(OnWeaponSpawnedPost, entity);

View File

@ -2592,7 +2592,7 @@ public Action Hook_UserMessage(UserMsg msg_id, Handle bf, const players[], int p
}
}
if (!g_msgAuthor || HasFlag(g_msgAuthor, Admin_Generic))
if (!g_msgAuthor || HasFlag(g_msgAuthor, Admin_Custom1))
{
CFormatColor(g_msgText, sizeof(g_msgText), g_msgAuthor);
}
@ -2761,7 +2761,7 @@ public Action Event_PlayerSay(Handle event, const char[] name, bool dontBroadcas
stock bool CheckForward(int author, const char[] message, CCC_ColorType type)
{
new Action result = Plugin_Continue;
Action result = Plugin_Continue;
Call_StartForward(applicationForward);
Call_PushCell(author);

View File

@ -0,0 +1,12 @@
"colors"
{
"color_tag" "E01B5D"
"color_name" "EDEDED"
"color_steamid" "B2B2B2"
"color_use" "67ADDF"
"color_pickup" "C9EF66"
"color_drop" "E562BA"
"color_disconnect" "F1B567"
"color_death" "F1B567"
"color_warning" "F16767"
}

View File

@ -0,0 +1,12 @@
"colors"
{
"color_tag" "E01B5D"
"color_name" "1A8599"
"color_steamid" "5FBDCE"
"color_use" "FF7C00"
"color_pickup" "FFDF00"
"color_drop" "CB0077"
"color_disconnect" "04859D"
"color_death" "4F10AD"
"color_warning" "4F10AD"
}

View File

@ -0,0 +1,12 @@
"colors"
{
"color_tag" "32FF32"
"color_name" "9AFF9A"
"color_steamid" "D2C898"
"color_use" "9EC34F"
"color_pickup" "9EC34F"
"color_drop" "9EC34F"
"color_disconnect" "9EC34F"
"color_death" "9EC34F"
"color_warning" "9EC34F"
}

View File

@ -0,0 +1,12 @@
"colors"
{
"color_tag" "E01B5D"
"color_name" "EDEDED"
"color_steamid" "B2B2B2"
"color_use" "67ADDF"
"color_pickup" "C9EF66"
"color_drop" "E562BA"
"color_disconnect" "F1B567"
"color_death" "F1B567"
"color_warning" "F16767"
}

View File

@ -0,0 +1,12 @@
"colors"
{
"color_tag" "E01B5D"
"color_name" "E7EB75"
"color_steamid" "8A714A"
"color_use" "4C46EB"
"color_pickup" "46EB54"
"color_drop" "BF3939"
"color_disconnect" "7B4F9E"
"color_death" "732C34"
"color_warning" "732C34"
}

View File

@ -0,0 +1,12 @@
"colors"
{
"color_tag" ""
"color_name" ""
"color_steamid" ""
"color_use" ""
"color_pickup" ""
"color_drop" ""
"color_disconnect" ""
"color_death" ""
"color_warning" ""
}

View File

@ -0,0 +1,22 @@
"entities"
{
"0"
{
"name" ""
"shortname" ""
"color" ""
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "false"
"hud" "false"
"hammerid" "0"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "0"
}
}

View File

@ -0,0 +1,136 @@
"entities"
{
"0"
{
"name" "Earth"
"shortname" "Earth"
"color" "8B4513"
"buttonclass" "func_button"
"filtername" "filter_gravity"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1699278"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"1"
{
"name" "Poison"
"shortname" "Poison"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "filter_electro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1699960"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"2"
{
"name" "Fire"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "filter_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1699377"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"3"
{
"name" "Ice"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "filter_ice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1699054"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"4"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "filter_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1699816"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"5"
{
"name" "Wind"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "filter_wind"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1699673"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"6"
{
"name" "Crystal"
"shortname" "Crystal"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "crystal_pistol"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1677880"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,60 @@
"entities"
{
"0"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "player_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "320227"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Push"
"shortname" "Push"
"color" "22FF88"
"buttonclass" "func_button"
"filtername" "player_push"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "335486"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"2"
{
"name" "Hedge"
"shortname" "Hedge"
"color" "32CD32"
"buttonclass" "func_button"
"filtername" "player_hedge"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "351477"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
}

View File

@ -0,0 +1,99 @@
"entities"
{
"0"
{
"name" "Pusher"
"shortname" "Pusher"
"color" "007ebb"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1699567"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"1"
{
"name" "Minigun"
"shortname" "Minigun"
"color" "15D6D6"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1346602"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Flamethrower"
"shortname" "Flamethrower"
"color" "FF2828"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1335512"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"3"
{
"name" "Bloodsucker"
"shortname" "Bloodsucker"
"color" "C10000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1303227"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "1303224"
}
"4"
{
"name" "Key"
"shortname" "Key"
"color" "C10000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4082828"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,101 @@
"entities"
{
"0"
{
"name" "Gandalf"
"shortname" "Gandalf"
"color" "CCCCCC"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "9421300"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "10"
"trigger" "9421836"
}
"1"
{
"name" "Ent"
"shortname" "Ent"
"color" "00AA00"
"buttonclass" "func_button"
"filtername" "ent_rock"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "8954463"
"mode" "4"
"maxuses" "4"
"cooldown" "20"
"maxamount" "10"
"trigger" "8627309"
}
"2"
{
"name" "Heal staff"
"shortname" "Heal"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "11815272"
"mode" "4"
"maxuses" "1"
"cooldown" "6"
"maxamount" "10"
}
"3"
{
"name" "Spider"
"shortname" "Spider"
"color" "800000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "10778352"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "10"
"trigger" "2620225"
}
"4"
{
"name" "Torch"
"shortname" "Torch"
"color" "FFA500"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "492831"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,342 @@
"entities"
{
"0"
{
"name" "Earth Magic"
"shortname" "Earth"
"color" "FE9A2E"
"buttonclass" "func_button"
"filtername" "player_earth"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "40524"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Heal Magic"
"shortname" "Heal"
"color" "2EFE64"
"buttonclass" "func_button"
"filtername" "player_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "40229"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"2"
{
"name" "Lightning Magic"
"shortname" "Lightning"
"color" "013ADF"
"buttonclass" "func_button"
"filtername" "player_lightning"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "40373"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Gravity Magic"
"shortname" "Gravity"
"color" "F781F3"
"buttonclass" "func_button"
"filtername" "player_gravity"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "39240"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"4"
{
"name" "Tornado Magic"
"shortname" "Tornado"
"color" "EFFBFB"
"buttonclass" "func_button"
"filtername" "player_wind"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "39326"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Water Magic"
"shortname" "Water"
"color" "2E9AFE"
"buttonclass" "func_button"
"filtername" "player_water"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "39928"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"6"
{
"name" "Ultima Magic"
"shortname" "Ultima"
"color" "FF00BF"
"buttonclass" "func_button"
"filtername" "player_ultima"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "40079"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"7"
{
"name" "Zero Magic"
"shortname" "Zero"
"color" "00E43D"
"buttonclass" "func_button"
"filtername" "player_zero"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2224473"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"8"
{
"name" "Trace"
"shortname" "Trace"
"color" "58FA58"
"buttonclass" "func_button"
"filtername" "player_trace"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "224348"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"9"
{
"name" "Ominous thing"
"shortname" "Ominous"
"color" "FE9A2E"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1163512"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"10"
{
"name" "Teleport Crystal"
"shortname" "Tp Crystal"
"color" "2E9AFE"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1117642"
"mode" "0"
"maxuses" "0"
"maxamount" "1"
}
"11"
{
"name" "Crystal"
"shortname" "Crystal"
"color" "2E9AFE"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1708704"
"mode" "5"
"maxuses" "0"
"maxamount" "1"
}
"12"
{
"name" "Kirito"
"shortname" "Kirito"
"color" "BB0000"
"buttonclass" "func_physbox_multiplayer"
"filtername" "target_kirito"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1190131"
"mode" "5"
"maxuses" "0"
"maxamount" "1"
}
"13"
{
"name" "Asuna"
"shortname" "Asuna"
"color" "BB0000"
"buttonclass" "func_physbox_multiplayer"
"filtername" "target_asuna"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2381250"
"mode" "5"
"maxuses" "0"
"maxamount" "1"
}
"14"
{
"name" "Zombie Gravity"
"shortname" "Zm Gravity"
"color" "FE2E9A"
"buttonclass" "func_button"
"filtername" "player_zgravity"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "38951"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"15"
{
"name" "Zombie Ice"
"shortname" "Zm Ice"
"color" "2ECCFA"
"buttonclass" "func_button"
"filtername" "player_zice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "39030"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"16"
{
"name" "Zombie Stealth"
"shortname" "Zm Stealth"
"color" "F7FE2E"
"buttonclass" "func_button"
"filtername" "player_zstealth"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "555550"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"17"
{
"name" "Zombie Shield"
"shortname" "Zm Shield"
"color" "2EFEF7"
"buttonclass" "func_button"
"filtername" "player_zshield"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "640041"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
}

View File

@ -0,0 +1,98 @@
"entities"
{
"1"
{
"name" "Red ball"
"shortname" "Rball"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Filter_Red_ball"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "5127"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Turret1"
"shortname" "Turret"
"color" "111111"
"buttonclass" "func_button"
"filtername" "Filter_turret"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "561787"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Turret2"
"shortname" "Turret"
"color" "111111"
"buttonclass" "func_button"
"filtername" "Filter_turret"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "561736"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Green ball"
"shortname" "Gball"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "Filter_Green_ball"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "5129"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"5"
{
"name" "Flamethrower"
"shortname" "Flamethrower"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Filter_flamethrower"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "562339"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,174 @@
"entities"
{
"0"
{
"name" "Electro"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" "electro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "839"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"1"
{
"name" "Fire"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "872"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"2"
{
"name" "Ice"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "iceitem"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1015"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"3"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "856"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"4"
{
"name" "Ultima"
"shortname" "Ultima"
"color" "6633DD"
"buttonclass" "func_button"
"filtername" "ultima_boss"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "923"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"5"
{
"name" "Wind"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "wind"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3827"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"6"
{
"name" "Gravity"
"shortname" "Gravity"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "gravity"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4706"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"7"
{
"name" "Ammo"
"shortname" "Ammo"
"color" "0040FF"
"buttonclass" "func_button"
"filtername" "ammoitem"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "10508"
"mode" "2"
"maxuses" "0"
"cooldown" "45"
"maxamount" "2"
}
"8"
{
"name" "Speed"
"shortname" "Speed"
"color" "FF8A00"
"buttonclass" "func_button"
"filtername" "speeditem"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26780"
"mode" "2"
"maxuses" "0"
"cooldown" "45"
"maxamount" "1"
}
}

View File

@ -0,0 +1,41 @@
"entities"
{
"0"
{
"name" "Push Gun"
"shortname" "Push"
"color" "04B404"
"buttonclass" "func_rot_button"
"filtername" "bootro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2532529"
"mode" "4"
"maxuses" "2"
"cooldown" "15"
"maxamount" "1"
}
"1"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Filter_Heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "9191195"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,136 @@
"entities"
{
"0"
{
"name" "Ammo Gun"
"shortname" "Ammo"
"color" "FFCC33"
"buttonclass" "func_button"
"filtername" "weapon_ammorefill_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4791896"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"1"
{
"name" "Rift Gun"
"shortname" "Rift"
"color" "9900FF"
"buttonclass" "func_button"
"filtername" "weapon_electro_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4792261"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"2"
{
"name" "Inferno Gun"
"shortname" "Inferno"
"color" "FF3700"
"buttonclass" "func_button"
"filtername" "weapon_flamethrower_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4792537"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Growth Gun"
"shortname" "Growth"
"color" "669900"
"buttonclass" "func_button"
"filtername" "weapon_earth_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4793316"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"4"
{
"name" "Tornado Gun"
"shortname" "Tornado"
"color" "0099CC"
"buttonclass" "func_button"
"filtername" "weapon_push_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4793530"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"5"
{
"name" "Rusher (ZM)"
"shortname" "Rusher"
"color" "9900FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2109055"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"6"
{
"name" "Quadralex (ZM)"
"shortname" "Quadralex"
"color" "E4A1FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2109516"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,136 @@
"entities"
{
"0"
{
"name" "Ammo Gun"
"shortname" "Ammo"
"color" "FFCC33"
"buttonclass" "func_button"
"filtername" "weapon_ammorefill_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4791896"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"1"
{
"name" "Rift Gun"
"shortname" "Rift"
"color" "9900FF"
"buttonclass" "func_button"
"filtername" "weapon_electro_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4792261"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"2"
{
"name" "Inferno Gun"
"shortname" "Inferno"
"color" "FF3700"
"buttonclass" "func_button"
"filtername" "weapon_flamethrower_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4792537"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Growth Gun"
"shortname" "Growth"
"color" "669900"
"buttonclass" "func_button"
"filtername" "weapon_earth_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4793316"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"4"
{
"name" "Tornado Gun"
"shortname" "Tornado"
"color" "0099CC"
"buttonclass" "func_button"
"filtername" "weapon_push_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4793530"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"5"
{
"name" "Rusher (ZM)"
"shortname" "Rusher"
"color" "9900FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2109055"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"6"
{
"name" "Quadralex (ZM)"
"shortname" "Quadralex"
"color" "E4A1FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2109516"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,41 @@
"entities"
{
"0"
{
"name" "Banana Gun"
"shortname" "Banana"
"color" "EEFF00"
"buttonclass" "func_button"
"filtername" "bananaFilter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "600295"
"mode" "1"
"maxuses" ""
"cooldown" ""
"maxamount" "1"
}
"1"
{
"name" "Penis Gun"
"shortname" "Penis"
"color" "FF005D"
"buttonclass" ""
"filtername" ""
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "600240"
"mode" "0"
"maxuses" "0"
"cooldown" ""
"maxamount" "1"
}
}

View File

@ -0,0 +1,136 @@
"entities"
{
"0"
{
"name" "Burning Orb"
"shortname" "Burning Orb"
"color" "EA6309"
"buttonclass" "func_button"
"filtername" "flameuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1015926"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"1"
{
"name" "Glacial Orb"
"shortname" "Glacial Orb"
"color" "6DE3FC"
"buttonclass" "func_button"
"filtername" "iceuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1015959"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"2"
{
"name" "Lightning Orb"
"shortname" "Lightning Orb"
"color" "F9EF77"
"buttonclass" "func_button"
"filtername" "thunderuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1015992"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"3"
{
"name" "Gust Orb"
"shortname" "Gust Orb"
"color" "8AEEC3"
"buttonclass" "func_button"
"filtername" "gustuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1016176"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"4"
{
"name" "Divine Orb"
"shortname" "Divine Orb"
"color" "E0FDFE"
"buttonclass" "func_button"
"filtername" "divineuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1016025"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Abyssal Orb"
"shortname" "Abyssal Orb"
"color" "D10C96"
"buttonclass" "func_button"
"filtername" "abyssuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1016076"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"6"
{
"name" "Celestial Embrace"
"shortname" "Celestial Embrace"
"color" "FDCCFD"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1016062"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,41 @@
"entities"
{
"0"
{
"name" "Pushgun"
"shortname" "Pushgun"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "443964"
"mode" "2"
"maxuses" "0"
"cooldown" "30"
"maxamount" "1"
}
"1"
{
"name" "Napalm Launcher"
"shortname" "Napalm Launcher"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "false"
"hud" "true"
"hammerid" "507423"
"mode" "3"
"maxuses" "32"
"cooldown" "4"
"maxamount" "1"
}
}

View File

@ -0,0 +1,155 @@
"entities"
{
"0"
{
"name" "Blue Spark"
"shortname" "Spark"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" "ct_elec"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1986587"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Icy Vortex"
"shortname" "Ice"
"color" "00BBFF"
"buttonclass" "func_button"
"filtername" "ct_ice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2570216"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"2"
{
"name" "Ammo"
"shortname" "Ammo"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" "ct_ammo"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1986862"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "ct_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1986724"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"4"
{
"name" "Venom Beam"
"shortname" "Poison"
"color" "00FF33"
"buttonclass" "func_button"
"filtername" "ct_poison"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "false"
"hud" "true"
"hammerid" "1986515"
"mode" "2"
"maxuses" "0"
"cooldown" "12"
"maxamount" "1"
}
"5"
{
"name" "Flame Beam"
"shortname" "Fire"
"color" "FF3300"
"buttonclass" "func_button"
"filtername" "ct_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "false"
"hud" "true"
"hammerid" "1986376"
"mode" "2"
"maxuses" "0"
"cooldown" "12"
"maxamount" "1"
}
"6"
{
"name" "Electric Beam"
"shortname" "Beam"
"color" "00FFAA"
"buttonclass" "func_button"
"filtername" "ct_beam"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2445121"
"mode" "1"
"maxuses" "0"
"cooldown" "1"
"maxamount" "1"
}
"7"
{
"name" "Wind Blaster"
"shortname" "Wind"
"color" "FF55FF"
"buttonclass" "func_button"
"filtername" "ct_push"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2704265"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
}

View File

@ -0,0 +1,79 @@
"entities"
{
"0"
{
"name" "Push gun"
"shortname" "Push gun"
"color" "800080"
"buttonclass" "func_rot_button"
"filtername" "bootro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2532529"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"1"
{
"name" "Bomb"
"shortname" "Bomb"
"color" "FF0000"
"buttonclass" "func_rot_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "false"
"hud" "true"
"hammerid" "2468646"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Saw"
"shortname" "Saw"
"color" "0000FF"
"buttonclass" "func_rot_button"
"filtername" "balg1"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "7152583"
"mode" "2"
"maxuses" "0"
"cooldown" "10"
"maxamount" "1"
}
"3"
{
"name" "Ultimate"
"shortname" "Ultimate"
"color" "00FF00"
"buttonclass" "func_rot_button"
"filtername" "bootro2"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6446563"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,41 @@
"entities"
{
"0"
{
"name" "Sponge builder"
"shortname" "Builder"
"color" "D60046"
"buttonclass" "func_button"
"filtername" "zbran_houba_filtr"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "534670"
"mode" "2"
"maxuses" "0"
"cooldown" "52"
"maxamount" "1"
}
"1"
{
"name" "Mouse trap"
"shortname" "Mouse trap"
"color" "FEE000"
"buttonclass" "func_button"
"filtername" "zbran_pasticka_filtr"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "511906"
"mode" "2"
"maxuses" "0"
"cooldown" "42"
"maxamount" "1"
}
}

View File

@ -0,0 +1,22 @@
"entities"
{
"0"
{
"name" "Rocket Launcher"
"shortname" "Rocket"
"color" "2F2F2F"
"buttonclass" "func_button"
"filtername" "none"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "256847"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,22 @@
"entities"
{
"0"
{
"name" "Flamethrower"
"shortname" "Flame"
"color" "DB0000"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "782412"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,22 @@
"entities"
{
"0"
{
"name" "Fire"
"shortname" "Fire"
"color" "DB0000"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1000"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,212 @@
"entities"
{
"0"
{
"name" "Interdimensional Wooden Vortex"
"shortname" "Wood"
"color" "C000C0"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "216850"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Seagull Launcher"
"shortname" "Seagull"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "217604"
"mode" "2"
"maxuses" "0"
"cooldown" "6"
"maxamount" "1"
}
"2"
{
"name" "Pomodoro Seeds"
"shortname" "Pomodoro"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "227120"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Diary of Empty Thoughts"
"shortname" "Diary"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "226233"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"4"
{
"name" "Flaming Hot Penis"
"shortname" "Flame"
"color" "FFC000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "210956"
"mode" "2"
"maxuses" "0"
"cooldown" "45"
"maxamount" "1"
}
"5"
{
"name" "Thick Banana Juice"
"shortname" "Banana"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "215366"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"6"
{
"name" "Stanley Kubrick Soul"
"shortname" "Kubrick"
"color" "FFC0F0"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "216558"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"7"
{
"name" "Kamikaze Bum-Bum"
"shortname" "Kamikaze"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "478149"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"8"
{
"name" "Twinkle Flavoured Butter"
"shortname" "Butter"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "478365"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"9"
{
"name" "Zombie Shrink"
"shortname" "Shrink"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "478383"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"10"
{
"name" "Jelly Bean Ecstacy"
"shortname" "Ecstacy"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "478413"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
}

View File

@ -0,0 +1,98 @@
"entities"
{
"0"
{
"name" "Color Lift"
"shortname" "Lift"
"color" "FF80FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "237001"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Health Mushroom"
"shortname" "Health"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "health_mushroom_player"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "272566"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"2"
{
"name" "Poison Fire Mushroom"
"shortname" "Poison"
"color" "8000FF"
"buttonclass" "func_button"
"filtername" "poison_mushroom"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "280094"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Wind Fire Mushroom"
"shortname" "Wind"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "wind_fire_mushroom"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "286845"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"4"
{
"name" "Power Star"
"shortname" "Power"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" "star"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "330419"
"mode" "2"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,345 @@
"entities"
{
"0"
{
"name" "Belmont"
"shortname" "Belmont"
"color" "FFFFFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "114258"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"1"
{
"name" "Healer"
"shortname" "Healer"
"color" "FFFFFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "115464"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"2"
{
"name" "Alucard"
"shortname" "Alucard"
"color" "FFFFFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "114094"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"3"
{
"name" "NPC Spawner"
"shortname" "NPC Spawner"
"color" "FF0000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "116463"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"4"
{
"name" "VIP"
"shortname" "VIP"
"color" "FFFFFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "116503"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"5"
{
"name" "Storm Beacon"
"shortname" "Storm Beacon"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "112256"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"6"
{
"name" "Holy Knight"
"shortname" "Holy Knight"
"color" "FFFFFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "118372"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"7"
{
"name" "Holy Water"
"shortname" "Holy Water"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "111680"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"8"
{
"name" "Cross"
"shortname" "Cross"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "111794"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"9"
{
"name" "Holy Cross"
"shortname" "Holy Cross"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "112075"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"10"
{
"name" "Sprint"
"shortname" "Sprint"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "118149"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"11"
{
"name" "Holy Five"
"shortname" "Holy Five"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "118132"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"12"
{
"name" "Big Sword"
"shortname" "Big Sword"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "117991"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"13"
{
"name" "Ammo Spawner"
"shortname" "Ammo"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "114678"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"14"
{
"name" "Dagger"
"shortname" "Dagger"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "111928"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"15"
{
"name" "Torch Bag"
"shortname" "Torch Bag"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "113988"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"16"
{
"name" "Torch"
"shortname" "Torch"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "113954"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"17"
{
"name" "Barricade"
"shortname" ""
"color" "0000FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "false"
"hud" "false"
"hammerid" "115761"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "99"
}
}

View File

@ -0,0 +1,42 @@
"entities"
{
"0"
{
"name" "Gravity"
"shortname" "Gravity"
"color" "111111"
"buttonclass" "func_button"
"filtername" "Player_Gravity"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "784344"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"1"
{
"name" "Heal"
"shortname" "Heal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Player_Heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "785654"
"mode" "2"
"maxuses" "0"
"cooldown" "45"
"maxamount" "1"
}
}

View File

@ -0,0 +1,250 @@
"entities"
{
"0"
{
"name" "Icewall"
"shortname" "Icewall"
"color" "5EFFF7"
"buttonclass" "func_button"
"filtername" "icewall"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "361395"
"mode" "2"
"maxuses" "0"
"cooldown" "66"
"maxamount" "1"
}
"1"
{
"name" "Magical Lantern"
"shortname" "Lantern"
"color" "00FFAA"
"buttonclass" "func_button"
"filtername" "lant"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "364139"
"mode" "2"
"maxuses" "0"
"cooldown" "61"
"maxamount" "1"
}
"2"
{
"name" "Mines"
"shortname" "Mines"
"color" "F53D3D"
"buttonclass" "func_button"
"filtername" "zpres"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "365900"
"mode" "3"
"maxuses" "6"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Unlimited Ammo"
"shortname" "Ammo"
"color" "00CC03"
"buttonclass" "func_button"
"filtername" "tree"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "366934"
"mode" "2"
"maxuses" "0"
"cooldown" "51"
"maxamount" "1"
}
"4"
{
"name" "Snowball Launcher"
"shortname" "Snowballs"
"color" "47FFFC"
"buttonclass" "func_button"
"filtername" "snow"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "373567"
"mode" "2"
"maxuses" "0"
"cooldown" "35"
"maxamount" "1"
}
"5"
{
"name" "Napalm Candle"
"shortname" "Candle"
"color" "FF7300"
"buttonclass" "func_button"
"filtername" "we1"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "372103"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"6"
{
"name" "Zombie Heal"
"shortname" "Zombie Heal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "healfil"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "381242"
"mode" "2"
"maxuses" "0"
"cooldown" "56"
"maxamount" "1"
}
"7"
{
"name" "Christmas Ogre"
"shortname" "Ogre"
"color" "B40404"
"buttonclass" ""
"filtername" ""
"hasfiltername" ""
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "386892"
"mode" "0"
"maxuses" "0"
"cooldown" "56"
"maxamount" "1"
}
"8"
{
"name" "Ice Boomerang"
"shortname" "Boomerang"
"color" "0087E8"
"buttonclass" "func_button"
"filtername" "boomer"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "392708"
"mode" "2"
"maxuses" "0"
"cooldown" "35"
"maxamount" "1"
}
"9"
{
"name" "Zombie Fog"
"shortname" "Fog"
"color" "969696"
"buttonclass" "func_button"
"filtername" "fog"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "399172"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"10"
{
"name" "Whirlpool Summoner"
"shortname" "Whirlpool"
"color" "B40404"
"buttonclass" "func_button"
"filtername" "tornado"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1028432"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"11"
{
"name" "Trampoline Placer"
"shortname" "Trampoline"
"color" "B40404"
"buttonclass" "func_button"
"filtername" "tramp"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1062968"
"mode" "2"
"maxuses" "0"
"cooldown" "76"
"maxamount" "1"
}
"12"
{
"name" "Core"
"shortname" "Core"
"color" "CC0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "753917"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,79 @@
"entities"
{
"0"
{
"name" "Red-Cyan"
"shortname" "Red"
"color" "FA6464"
"buttonclass" "func_button"
"filtername" "rcitemuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "521169"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Green-Magenta"
"shortname" "Green"
"color" "64FA64"
"buttonclass" "func_button"
"filtername" "gmitemuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "523179"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"2"
{
"name" "Blue-Yellow"
"shortname" "Blue"
"color" "6464FA"
"buttonclass" "func_button"
"filtername" "byitemuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "524594"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Chromatic Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "healitemuser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "525032"
"mode" "2"
"maxuses" "0"
"cooldown" "120"
"maxamount" "1"
}
}

View File

@ -0,0 +1,22 @@
"entities"
{
"0"
{
"name" "Apple Cannon"
"shortname" "Cannon"
"color" "0040FF"
"buttonclass" "func_button"
"filtername" "tappo_kantaja"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "432248"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,117 @@
"entities"
{
"0"
{
"name" "Frost Wave"
"shortname" "Frost Wave"
"color" "6EE4FF"
"buttonclass" "func_button"
"filtername" "IceOwner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "175887"
"mode" "2"
"maxuses" "0"
"cooldown" "66"
"maxamount" "1"
}
"1"
{
"name" "Aeolus' Spirit"
"shortname" "Aeolus' Spirit"
"color" "7CFF40"
"buttonclass" "func_button"
"filtername" "WindOwner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "179589"
"mode" "2"
"maxuses" "0"
"cooldown" "66"
"maxamount" "1"
}
"2"
{
"name" "Flame of Udun"
"shortname" "Flame of Udun"
"color" "DB4AE8"
"buttonclass" "func_button"
"filtername" "player_flame"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "299591"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Projectile Deflector"
"shortname" "Deflector"
"color" "B40404"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "316089"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Slightly Cursed Hexahedron"
"shortname" "Hexahedron"
"color" "B40404"
"buttonclass" "func_button"
"filtername" "Miniboss"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "784705"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"5"
{
"name" "Boss"
"shortname" "Boss"
"color" "B40404"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "259063"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,307 @@
"entities"
{
"0"
{
"name" "White Dragon Breath"
"shortname" "White Dragon Breath"
"color" "01A9DB"
"buttonclass" "func_button"
"filtername" "WDB_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "9910"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Chaos Storm"
"shortname" "Chaos Storm"
"color" "DF3A01"
"buttonclass" "func_button"
"filtername" "ChSt_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "10008"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Sooling Sunlight"
"shortname" "Sooling Sunlight"
"color" "F7FE2E"
"buttonclass" "func_button"
"filtername" "SS_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "10423"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Wrath of the Gods"
"shortname" "Wrath of the Gods"
"color" "EFFBFB"
"buttonclass" "func_button"
"filtername" "WOTG_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "10509"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Dark Orb"
"shortname" "Dark Orb"
"color" "2A0A29"
"buttonclass" "func_button"
"filtername" "DO_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "10681"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"5"
{
"name" "Hidden Body"
"shortname" "Hidden Body"
"color" "5E610B"
"buttonclass" "func_button"
"filtername" "HiBo_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "10719"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"6"
{
"name" "Estus Flask"
"shortname" "Estus Flask"
"color" "D7DF01"
"buttonclass" "func_button"
"filtername" "EF_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "514824"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"7"
{
"name" "Ash Estus Flask"
"shortname" "Ash Estus Flask"
"color" "01A9DB"
"buttonclass" "func_button"
"filtername" "AEF_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "515837"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"8"
{
"name" "Lightning Spear"
"shortname" "Lightning Spear"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" "LS_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "515333"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"9"
{
"name" "Great Heavy Soul Arrow"
"shortname" "Great Heavy Soul Arrow"
"color" "0080FF"
"buttonclass" "func_button"
"filtername" "GHSA_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "515527"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"10"
{
"name" "Green Blossom"
"shortname" "Green Blossom"
"color" "00FF40"
"buttonclass" "func_button"
"filtername" "Salad_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "666978"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"11"
{
"name" "[ZM] Power Within"
"shortname" "Power Within"
"color" "DF0101"
"buttonclass" "func_button"
"filtername" "PW_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "666608"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"12"
{
"name" "[ZM] Toxic Mist"
"shortname" "Toxic Mist"
"color" "6A0888"
"buttonclass" "func_button"
"filtername" "PM_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "666074"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"13"
{
"name" "Darkstorm"
"shortname" "Darkstorm"
"color" "2A0A29"
"buttonclass" "func_button"
"filtername" "DaSt_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1156847"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"14"
{
"name" "[ZM] Black Flame"
"shortname" "Black Flame"
"color" "CD853F"
"buttonclass" "func_button"
"filtername" "BF_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1561358"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"15"
{
"name" "[ZM] Poison Mist"
"shortname" "Poison Mist"
"color" "80c436"
"buttonclass" "func_button"
"filtername" "ZMPoison_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1702534"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,63 @@
"entities"
{
"0"
{
"name" "Cannon1"
"shortname" "Cannon1"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "cannon1"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "609101"
"mode" "2"
"maxuses" "0"
"cooldown" "3"
"maxamount" "1"
"trigger" "0"
}
"1"
{
"name" "Cannon2"
"shortname" "Cannon2"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "cannon2"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1259831"
"mode" "2"
"maxuses" "0"
"cooldown" "3"
"maxamount" "1"
"trigger" "0"
}
"2"
{
"name" "Cannon3"
"shortname" "Cannon3"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "cannon3"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1261070"
"mode" "2"
"maxuses" "0"
"cooldown" "3"
"maxamount" "1"
"trigger" "0"
}
}

View File

@ -0,0 +1,41 @@
"entities"
{
"0"
{
"name" "Blue LightSaber"
"shortname" "Blue Saber"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1480205"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"1"
{
"name" "Red LightSaber"
"shortname" "Red Saber"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1544598"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
}

View File

@ -0,0 +1,212 @@
"entities"
{
"0"
{
"name" "Soul Cube"
"shortname" "Cub"
"color" "111111"
"buttonclass" "func_button"
"filtername" "cubsboss"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2009"
"mode" "2"
"maxuses" "0"
"cooldown" "12"
"maxamount" "1"
}
"1"
{
"name" "Rocket Launcher"
"shortname" "Rocket"
"color" "228800"
"buttonclass" "func_button"
"filtername" "generatrocket1"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2083"
"mode" "2"
"maxuses" "0"
"cooldown" "6"
"maxamount" "1"
}
"2"
{
"name" "Electro Grenade"
"shortname" "Electro Nade"
"color" "21FFFC"
"buttonclass" "func_button"
"filtername" "nagoi"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3135"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"3"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "nagoibla"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3202"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"4"
{
"name" "Heart of Hell"
"shortname" "Heart"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "nagoibla1"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3309"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Pushgun"
"shortname" "Push"
"color" "22FF88"
"buttonclass" "func_button"
"filtername" "nagoibla11"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3320"
"mode" "2"
"maxuses" "0"
"cooldown" "45"
"maxamount" "1"
}
"6"
{
"name" "Minigun"
"shortname" "Minigun"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" "logas"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3993"
"mode" "4"
"maxuses" "10"
"cooldown" "13"
"maxamount" "1"
}
"7"
{
"name" "BFG"
"shortname" "BFG"
"color" "EE0000"
"buttonclass" "func_button"
"filtername" "nagoi2"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1520691"
"mode" "4"
"maxuses" "7"
"cooldown" "15"
"maxamount" "1"
}
"8"
{
"name" "Zombie spider"
"shortname" "Zspider"
"color" "EE0000"
"buttonclass" "func_button"
"filtername" "kirt1"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1900"
"mode" "2"
"maxuses" "0"
"cooldown" "8"
"maxamount" "1"
}
"9"
{
"name" "Zombie pinky"
"shortname" "Zpinky"
"color" "EE0000"
"buttonclass" "func_button"
"filtername" "kirt2"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1918"
"mode" "2"
"maxuses" "0"
"cooldown" "4"
"maxamount" "1"
}
"10"
{
"name" "Zombie Mspider"
"shortname" "ZMspider"
"color" "EE0000"
"buttonclass" "func_button"
"filtername" "kirt3"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1929"
"mode" "2"
"maxuses" "0"
"cooldown" "7"
"maxamount" "1"
}
}

View File

@ -0,0 +1,117 @@
"entities"
{
"0"
{
"name" "Berserker"
"shortname" "Berserker"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "berserker"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26895"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "BFG"
"shortname" "BFG"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" "bfg_own"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26859"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Megasphere"
"shortname" "Megasphere"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "megasphere"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26879"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Soulsphere"
"shortname" "Soulsphere"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "soulsphere"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26854"
"mode" "4"
"maxuses" "2"
"cooldown" "145"
"maxamount" "1"
}
"4"
{
"name" "Soulsphere"
"shortname" "Soulsphere"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "soulsphere2"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26740"
"mode" "4"
"maxuses" "2"
"cooldown" "145"
"maxamount" "1"
}
"5"
{
"name" "Soulsphere"
"shortname" "Soulsphere"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "soulsphere3"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26767"
"mode" "4"
"maxuses" "2"
"cooldown" "145"
"maxamount" "1"
}
}

View File

@ -0,0 +1,117 @@
"entities"
{
"0"
{
"name" "Berserker"
"shortname" "Berserker"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "berserker"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26895"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "BFG"
"shortname" "BFG"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" "bfg_own"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26859"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Megasphere"
"shortname" "Megasphere"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "megasphere"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26879"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Soulsphere"
"shortname" "Soulsphere"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "soulsphere"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26854"
"mode" "4"
"maxuses" "2"
"cooldown" "145"
"maxamount" "1"
}
"4"
{
"name" "Soulsphere"
"shortname" "Soulsphere"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "soulsphere2"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26740"
"mode" "4"
"maxuses" "2"
"cooldown" "145"
"maxamount" "1"
}
"5"
{
"name" "Soulsphere"
"shortname" "Soulsphere"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "soulsphere3"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26767"
"mode" "4"
"maxuses" "2"
"cooldown" "145"
"maxamount" "1"
}
}

View File

@ -0,0 +1,98 @@
"entities"
{
"0"
{
"name" "Wind"
"shortname" "Wind"
"color" "22FF88"
"buttonclass" "func_button"
"filtername" "Filter_wind"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "872"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Earth"
"shortname" "Earth"
"color" "D2691E"
"buttonclass" "func_button"
"filtername" "Filter_Earth"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1241"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"2"
{
"name" "Holy"
"shortname" "Holy"
"color" "FF0099"
"buttonclass" "func_button"
"filtername" "Filter_Holy"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "12295"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Balrog"
"shortname" "Balrog"
"color" "FF0000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "10959"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"4"
{
"name" "Chocobo"
"shortname" "Chocobo"
"color" "228800"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1062"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
}

View File

@ -0,0 +1,98 @@
"entities"
{
"0"
{
"name" "Wind"
"shortname" "Wind"
"color" "22FF88"
"buttonclass" "func_button"
"filtername" "Filter_wind"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "872"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Earth"
"shortname" "Earth"
"color" "D2691E"
"buttonclass" "func_button"
"filtername" "Filter_Earth"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1241"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"2"
{
"name" "Holy"
"shortname" "Holy"
"color" "FF0099"
"buttonclass" "func_button"
"filtername" "Filter_Holy"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "12295"
"mode" "4"
"maxuses" "1"
"cooldown" "6"
"maxamount" "1"
}
"3"
{
"name" "Balrog"
"shortname" "Balrog"
"color" "111111"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "10959"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
"4"
{
"name" "Chocobo"
"shortname" "Chocobo"
"color" "228800"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1062"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "99"
}
}

View File

@ -0,0 +1,117 @@
"entities"
{
"0"
{
"name" "ZGravity"
"shortname" "ZGravity"
"color" "FF00FF"
"buttonclass" "func_button"
"filtername" "gravity_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "125388"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"1"
{
"name" "ZNuke"
"shortname" "ZNuke"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "nuke_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "125393"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"2"
{
"name" "Snow"
"shortname" "Snow"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "snow_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "124959"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Wind"
"shortname" "Wind"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "wind_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17000"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"4"
{
"name" "Freezer"
"shortname" "Freezer"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" "freezer_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26872"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Recovery"
"shortname" "Recovery"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "recovery_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17090"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
}

View File

@ -0,0 +1,117 @@
"entities"
{
"0"
{
"name" "ZGravity"
"shortname" "ZGravity"
"color" "FF00FF"
"buttonclass" "func_button"
"filtername" "gravity_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "125388"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"1"
{
"name" "ZNuke"
"shortname" "ZNuke"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "nuke_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "125393"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"2"
{
"name" "Snow"
"shortname" "Snow"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "snow_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "124959"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Wind"
"shortname" "Wind"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "wind_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17000"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"4"
{
"name" "Freezer"
"shortname" "Freezer"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" "freezer_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "26872"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Recovery"
"shortname" "Recovery"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "recovery_user"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17090"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
}

View File

@ -0,0 +1,22 @@
"entities"
{
"1"
{
"name" "(de)Bugger."
"shortname" "debugger"
"color" "686868"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "35470"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,194 @@
"entities"
{
"0"
{
"name" "Shadow"
"shortname" "Shadow"
"color" "5D6D7E"
"buttonclass" "func_button"
"filtername" "Item_Shadow_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "177360"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Light"
"shortname" "Light"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Item_Light_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "177504"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"2"
{
"name" "Wind"
"shortname" "Wind"
"color" "76D7C4"
"buttonclass" "func_button"
"filtername" "Item_Wind_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "177789"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Ice"
"shortname" "Ice"
"color" "3498DB"
"buttonclass" "func_button"
"filtername" "Item_Ice_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "177929"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"4"
{
"name" "Thunder"
"shortname" "Thunder"
"color" "85C1E9"
"buttonclass" "func_button"
"filtername" "Item_Thunder_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "178069"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Fire"
"shortname" "Fire"
"color" "F39C12"
"buttonclass" "func_button"
"filtername" "Item_Fire_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "178213"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"6"
{
"name" "ZM Fire"
"shortname" "ZM Fire"
"color" "F39C12"
"buttonclass" "func_button"
"filtername" "Item_ZFire_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "176978"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"7"
{
"name" "ZM Ice"
"shortname" "ZM Ice"
"color" "3498DB"
"buttonclass" "func_button"
"filtername" "Item_ZIce_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2424762"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"8"
{
"name" "ZM Wind"
"shortname" "ZM Wind"
"color" "76D7C4"
"buttonclass" "func_button"
"filtername" "Item_ZWind_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2424770"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"9"
{
"name" "ZM Thunder"
"shortname" "ZM Thunder"
"color" "85C1E9"
"buttonclass" "func_button"
"filtername" "Item_ZThunder_User"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2424840"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
}

View File

@ -0,0 +1,182 @@
"entities"
{
"0"
{
"name" "Wall Spawner"
"shortname" "Wall"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "blockade"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326008"
"mode" "4"
"maxuses" "10"
"cooldown" "2"
"maxamount" "1"
}
"1"
{
"name" "Electro Gun"
"shortname" "Electro"
"color" "BCCD00"
"buttonclass" "func_button"
"filtername" "electric"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326171"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "EyeTech Launcher"
"shortname" "launcher"
"color" "120061"
"buttonclass" "func_button"
"filtername" "launcher"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326586"
"mode" "4"
"maxuses" "10"
"cooldown" "2"
"maxamount" "1"
}
"3"
{
"name" "Heal"
"shortname" "Heal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "325974"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Push Gun"
"shortname" "Push"
"color" "00D8D5"
"buttonclass" "func_button"
"filtername" "push"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326086"
"mode" "2"
"maxuses" "0"
"cooldown" "35"
"maxamount" "1"
}
"5"
{
"name" "Flamethrower"
"shortname" "Flame"
"color" "BB0000"
"buttonclass" "func_button"
"filtername" "flamethrower"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326332"
"mode" "4"
"maxuses" "10"
"cooldown" "10"
"maxamount" "1"
}
"6"
{
"name" "Ammo"
"shortname" "Ammo"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "ammowep"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326492"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"7"
{
"name" "Pipe Bomb"
"shortname" "Pipe Bomb"
"color" "DC143C"
"buttonclass" "func_button"
"filtername" "pipe"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326600"
"mode" "4"
"maxuses" "5"
"cooldown" "2"
"maxamount" "1"
}
"8"
{
"name" "EyeTech Cannon"
"shortname" "Cannon"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "cannon"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "326711"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,193 @@
"entities"
{
"0"
{
"name" "Uber Cannon"
"shortname" "Uber"
"color" "120061"
"buttonclass" "func_button"
"filtername" "uber"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "25307"
"mode" "2"
"maxuses" "0"
"cooldown" "150"
"maxamount" "1"
}
"1"
{
"name" "Heal"
"shortname" "Heal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1889"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Ammo Box"
"shortname" "Ammo"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "kuulid"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4509"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Explosive Mines"
"shortname" "Mines"
"color" "2F2F2F"
"buttonclass" "func_button"
"filtername" "mineboom"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1881"
"mode" "4"
"maxuses" "5"
"cooldown" "2"
"maxamount" "1"
}
"4"
{
"name" "Flamethrower"
"shortname" "Flame"
"color" "BB0000"
"buttonclass" "func_button"
"filtername" "flamethrower"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1952"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"5"
{
"name" "Grenade Spawner"
"shortname" "Grenade"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "nades"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1868"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"6"
{
"name" "Wall Spawner"
"shortname" "Wall"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "blockage"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1923"
"mode" "4"
"maxuses" "10"
"cooldown" "2"
"maxamount" "1"
}
"7"
{
"name" "Push Gun"
"shortname" "Push"
"color" "00D8D5"
"buttonclass" "func_button"
"filtername" "push"
"hasfiltername" "yes"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1893"
"mode" "2"
"maxuses" "0"
"cooldown" "45"
"maxamount" "1"
}
"8"
{
"name" "Hand Cannon"
"shortname" "Cannon"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "kahur"
"hasfiltername" "yes"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4555"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"9"
{
"name" "Banana Gun"
"shortname" "Banana"
"color" "E0E800"
"buttonclass" "func_button"
"filtername" "banana"
"hasfiltername" "yes"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "424414"
"mode" "4"
"maxuses" "15"
"cooldown" "2"
"maxamount" "1"
}
}

View File

@ -0,0 +1,270 @@
"entities"
{
"0"
{
"name" "Gravity Materia"
"shortname" "Gravity"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "Gravity_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323441"
"mode" "0"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Electro Materia"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" "Electro_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323285"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Fire Materia"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Fire_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323126"
"mode" "0"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"3"
{
"name" "Bio Materia"
"shortname" "Bio"
"color" "990033"
"buttonclass" "func_button"
"filtername" "Bio_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323363"
"mode" "0"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"4"
{
"name" "Heal Materia"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Heal_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323052"
"mode" "0"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Earth Materia"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "Earth_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323735"
"mode" "0"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"6"
{
"name" "Wind Materia"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "Wind_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323517"
"mode" "0"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"7"
{
"name" "Ultima Materia"
"shortname" "Ultima"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "Ultima_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323814"
"mode" "0"
"maxuses" "1"
"cooldown" "15"
"maxamount" "1"
}
"8"
{
"name" "Sleep Materia"
"shortname" "Sleep"
"color" "808080"
"buttonclass" "func_button"
"filtername" "Sleep_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "524758"
"mode" "0"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"9"
{
"name" "ZM Ice Materia"
"shortname" "ZM Ice"
"color" "00BFFF"
"buttonclass" "func_button"
"filtername" "Ice_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "1589580"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"10"
{
"name" "ZM Fire Materia"
"shortname" "ZM Fire"
"color" "B22222"
"buttonclass" "func_button"
"filtername" "Fire_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "1576012"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"11"
{
"name" "ZM Poison Materia"
"shortname" "ZM Poison"
"color" "7CFC00"
"buttonclass" "func_button"
"filtername" "Poison_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2102221"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"12"
{
"name" "Phoenix Down"
"shortname" "Phoenix Down"
"color" "00BFFF"
"buttonclass" "func_button"
"filtername" "Potion_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2576537"
"mode" "0"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"13"
{
"name" "ZM Confuse Materia"
"shortname" "ZM Confuse"
"color" "D358F7"
"buttonclass" "func_button"
"filtername" "Confuse_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "3468269"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
}

View File

@ -0,0 +1,302 @@
"entities"
{
"0"
{
"name" "Gravity Materia"
"shortname" "Gravity"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "Gravity_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323441"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"1"
{
"name" "Electro Materia"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" "Electro_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323285"
"mode" "5"
"maxuses" "2"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"2"
{
"name" "Fire Materia"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Fire_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323126"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"3"
{
"name" "Bio Materia"
"shortname" "Bio"
"color" "990033"
"buttonclass" "func_button"
"filtername" "Bio_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323363"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"4"
{
"name" "Heal Materia"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Heal_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323052"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"5"
{
"name" "Earth Materia"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "Earth_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323735"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"6"
{
"name" "Wind Materia"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "Wind_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323517"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"7"
{
"name" "Ultima Materia"
"shortname" "Ultima"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "Ultima_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "323814"
"mode" "4"
"maxuses" "1"
"cooldown" "15"
"maxamount" "1"
"team" "3"
}
"8"
{
"name" "Sleep Materia"
"shortname" "Sleep"
"color" "808080"
"buttonclass" "func_button"
"filtername" "Sleep_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "524758"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"team" "3"
}
"9"
{
"name" "ZM Ice Materia"
"shortname" "ZM Ice"
"color" "00BFFF"
"buttonclass" "func_button"
"filtername" "Ice_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1589580"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
"team" "2"
}
"10"
{
"name" "ZM Fire Materia"
"shortname" "ZM Fire"
"color" "B22222"
"buttonclass" "func_button"
"filtername" "Fire_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1576012"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
"team" "2"
}
"11"
{
"name" "ZM Poison Materia"
"shortname" "ZM Poison"
"color" "7CFC00"
"buttonclass" "func_button"
"filtername" "Poison_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2102221"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
"team" "2"
}
"12"
{
"name" "ZM Confuse Materia"
"shortname" "ZM Confuse"
"color" "9B27D1"
"buttonclass" "func_button"
"filtername" "Confuse_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "3468411"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
"team" "2"
}
"13"
{
"name" "ZM Pampa"
"shortname" "ZM Pampa"
"color" "9B27D1"
"buttonclass" ""
"filtername" "CactusZM_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1446677"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"team" "2"
}
"14"
{
"name" "Phoenix Down"
"shortname" "Phoenix Down"
"color" "00BFFF"
"buttonclass" "func_button"
"filtername" "Potion_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2576537"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,117 @@
"entities"
{
"0"
{
"name" "Fire Materia"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768269"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"1"
{
"name" "Ice Materia"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768134"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"2"
{
"name" "Heal Materia"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1110646"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"3"
{
"name" "Earth Materia"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768876"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"4"
{
"name" "Wind Materia"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768572"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"5"
{
"name" "Ultima Materia"
"shortname" "Ultima"
"color" "00FF00"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "767822"
"mode" "4"
"maxuses" "1"
"cooldown" "20"
"maxamount" "1"
}
}

View File

@ -0,0 +1,155 @@
"entities"
{
"0"
{
"name" "Gravity Materia"
"shortname" "Gravity"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1295860"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"1"
{
"name" "Electro Materia"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1295190"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Fire Materia"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768269"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"3"
{
"name" "Ice Materia"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768134"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"4"
{
"name" "Heal Materia"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "portador_heal"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1110646"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"5"
{
"name" "Earth Materia"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "portador_earth"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768876"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"6"
{
"name" "Wind Materia"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "768572"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"7"
{
"name" "Ultima Materia"
"shortname" "Ultima"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "767822"
"mode" "4"
"maxuses" "1"
"cooldown" "20"
"maxamount" "1"
}
}

View File

@ -0,0 +1,174 @@
"entities"
{
"0"
{
"name" "Gravity Materia"
"shortname" "Gravity"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "portador_gravedad"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1589"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"1"
{
"name" "Electro Materia"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" "portador_electro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1546"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "8"
}
"2"
{
"name" "Fire Materia"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "portador_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1410"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"3"
{
"name" "Ice Materia"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "portador_ice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1377"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"4"
{
"name" "Heal Materia"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "portador_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1492"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "8"
}
"5"
{
"name" "Earth Materia"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "portador_earth"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1460"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"6"
{
"name" "Wind Materia"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "portador_viento"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1434"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"7"
{
"name" "Ultima Materia"
"shortname" "Ultima"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "portador_ultima"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1359"
"mode" "4"
"maxuses" "1"
"cooldown" "20"
"maxamount" "8"
}
"8"
{
"name" "Daniel Cooking Dog"
"shortname" "Daniel Cooking Dog"
"color" "200000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "200000"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "8"
}
}

View File

@ -0,0 +1,231 @@
"entities"
{
"0"
{
"name" "Gravity Materia"
"shortname" "Gravity"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "player_gravity"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2908185"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"1"
{
"name" "Electro Materia"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" "player_electro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2908013"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Fire Materia"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "player_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2907860"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"3"
{
"name" "Ice Materia"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "player_ice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2907354"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"4"
{
"name" "Heal Materia"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "player_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2907132"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"5"
{
"name" "Earth Materia"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "player_earth"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2908100"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"6"
{
"name" "Wind Materia"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "player_wind"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2906834"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"7"
{
"name" "Aqua Materia"
"shortname" "Aqua"
"color" "9DE7EB"
"buttonclass" "func_button"
"filtername" "player_water"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2907705"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"8"
{
"name" "Bio Materia"
"shortname" "Bio"
"color" "39F374"
"buttonclass" "func_button"
"filtername" "player_bio"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2906432"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"9"
{
"name" "Barrier Materia"
"shortname" "Barrier"
"color" "E2EF7F"
"buttonclass" "func_button"
"filtername" "player_barrier"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2906517"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"10"
{
"name" "Mimic Materia"
"shortname" "Mimic"
"color" "EC4CF4"
"buttonclass" "func_button"
"filtername" "player_mimic"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4525325"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"11"
{
"name" "Ultima Materia"
"shortname" "Ultima"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "player_ultima"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2906602"
"mode" "4"
"maxuses" "1"
"cooldown" "20"
"maxamount" "1"
}
}

View File

@ -0,0 +1,155 @@
"entities"
{
"0"
{
"name" "Gravity Materia"
"shortname" "Gravity"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "portador_gravedad"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1589"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"1"
{
"name" "Electro Materia"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" "portador_electro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1546"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Fire Materia"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "portador_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1410"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"3"
{
"name" "Ice Materia"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "portador_ice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1377"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"4"
{
"name" "Heal Materia"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "portador_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1492"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"5"
{
"name" "Earth Materia"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "portador_earth"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1460"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"6"
{
"name" "Wind Materia"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "portador_viento"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1434"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"7"
{
"name" "Ultima Materia"
"shortname" "Ultima"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "portador_ultima"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1359"
"mode" "4"
"maxuses" "1"
"cooldown" "20"
"maxamount" "1"
}
}

View File

@ -0,0 +1,193 @@
"entities"
{
"0"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Heal_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841349"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Fire"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Fire_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841431"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Electro"
"shortname" "Electro"
"color" "0072FF"
"buttonclass" "func_button"
"filtername" "Electro_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841678"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Blizzard"
"shortname" "Blizzard"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "Blizzard_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841762"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Darkage"
"shortname" "Darkage"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "Darkaga_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841846"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"5"
{
"name" "Wind"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "Wind_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841928"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"6"
{
"name" "Zombie Heal"
"shortname" "Zombie Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Heal_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "1869948"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"7"
{
"name" "Zombie Fire"
"shortname" "Zombie Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Fire_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "1870326"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"8"
{
"name" "Zombie Darkaga"
"shortname" "Zombie Darkaga"
"color" "2A2A2A"
"buttonclass" "func_button"
"filtername" "Darkaga_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "1871410"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"9"
{
"name" "Zombie Warp"
"shortname" "Zombie Warp"
"color" "B40404"
"buttonclass" "func_button"
"filtername" "Warp_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "1871651"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,213 @@
"entities"
{
"0"
{
"name" "Heal Magick"
"shortname" "Heal"
"color" "F55884"
"buttonclass" "func_button"
"filtername" "Nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841349"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"1"
{
"name" "Wind Magick"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841928"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"2"
{
"name" "Dark Magick"
"shortname" "Dark"
"color" "8B689F"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841846"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"3"
{
"name" "Ice Magick"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841762"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"4"
{
"name" "Electro Magick"
"shortname" "Electro"
"color" "BCCD00"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841678"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"5"
{
"name" "Fire Magick"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1841431"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"6"
{
"name" "Berserk Magick"
"shortname" "Berserk"
"color" "FF8000"
"buttonclass" "func_button"
"filtername" "Berserk_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3764112"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"7"
{
"name" "[ZM]Warp Magick"
"shortname" "[ZM]Warp"
"color" "FF00FF"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1871651"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"8"
{
"name" "[ZM]Dark Magick"
"shortname" "[ZM]Dark"
"color" "8B689F"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1871410"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"9"
{
"name" "[ZM]Fire Magick"
"shortname" "[ZM]Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1870326"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"10"
{
"name" "[ZM]Heal Magick"
"shortname" "[ZM]Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "nothing"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "1869948"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
}

View File

@ -0,0 +1,292 @@
"entities"
{
"0"
{
"name" "Ice Magick"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "57342"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"1"
{
"name" "Heal Magick"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "51266"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"2"
{
"name" "Fire Magick"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "52032"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"3"
{
"name" "Poison Magick"
"shortname" "Poison"
"color" "2EFE64"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "58993"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"4"
{
"name" "Wind Magick"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "64132"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"5"
{
"name" "HP Potion"
"shortname" ""
"color" "0040FF"
"buttonclass" "func_button"
"filtername" "user_potion1"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "581352"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "8"
}
"6"
{
"name" "HI Potion"
"shortname" ""
"color" "0040FF"
"buttonclass" "func_button"
"filtername" "user_potion2"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "594382"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "8"
}
"7"
{
"name" "Ammo Potion"
"shortname" ""
"color" "0040FF"
"buttonclass" "func_button"
"filtername" "user_potion3"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "594454"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "8"
}
"8"
{
"name" "Speed Potion"
"shortname" ""
"color" "0040FF"
"buttonclass" "func_button"
"filtername" "user_potion4"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "594526"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "8"
}
"9"
{
"name" "Holy Potion"
"shortname" ""
"color" "0040FF"
"buttonclass" "func_button"
"filtername" "user_potion5"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "594598"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "8"
}
"10"
{
"name" "Warp Magick"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_warp"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "31241"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"11"
{
"name" "Lure Magick"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_lure"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "31653"
"mode" "2"
"maxuses" "0"
"cooldown" "90"
"maxamount" "1"
}
"12"
{
"name" "Fire Magick"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "66011"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"13"
{
"name" "Frost Magick"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_frost"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "65862"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"14"
{
"name" "Esper Mateus"
"shortname" "Esper"
"color" "195E32"
"buttonclass" "func_button"
"filtername" "user_esper"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2012882"
"mode" "4"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,214 @@
"entities"
{
"0"
{
"name" "Heal Magick"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Heal_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "29413"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Wind Magick"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "Wind_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "29972"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"2"
{
"name" "Dark Magick"
"shortname" "Dark"
"color" "8B689F"
"buttonclass" "func_button"
"filtername" "Darkaga_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "29894"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"3"
{
"name" "Ice Magick"
"shortname" "Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "Blizzard_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "29814"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"4"
{
"name" "Electro Magick"
"shortname" "Electro"
"color" "BCCD00"
"buttonclass" "func_button"
"filtername" "Electro_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "29734"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"5"
{
"name" "Fire Magick"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Fire_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "29491"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"6"
{
"name" "[ZM]Warp Magick"
"shortname" "[ZM]Warp"
"color" "ff7700"
"buttonclass" "func_button"
"filtername" "Warp_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "30795"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"7"
{
"name" "[ZM]Dark Magick"
"shortname" "[ZM]Dark"
"color" "8B689F"
"buttonclass" "func_button"
"filtername" "Darkaga_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "30712"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"8"
{
"name" "[ZM]Fire Magick"
"shortname" "[ZM]Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "Fire_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "30486"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"9"
{
"name" "[ZM]Heal Magick"
"shortname" "[ZM]Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Heal_Z_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "30269"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
}
"10"
{
"name" "Ultima Sword"
"shortname" "Sword"
"color" "efff16"
"buttonclass" "func_button"
"filtername" "Berserk_Owner"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "36679"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,156 @@
"entities"
{
"0"
{
"name" "Ice Magic"
"shortname" "Ice"
"color" "0814FF"
"buttonclass" "func_button"
"filtername" "target_ice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "575922"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"6"
{
"name" "Wind Magic"
"shortname" "Wind"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "target_wind"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "84865"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"8"
{
"name" "Heal Magic"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "target_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "83068"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"10"
{
"name" "Earth Magic"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "target_earth"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "430688"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"11"
{
"name" "Fire Magic"
"shortname" "Fire"
"color" "FF7300"
"buttonclass" "func_button"
"filtername" "target_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "83760"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"12"
{
"name" "Holy Magic"
"shortname" "Holy"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "target_holy"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "87311"
"mode" "3"
"maxuses" "1"
"cooldown" "20"
"maxamount" "1"
}
"13"
{
"name" "Chocobo"
"shortname" "Chocobo"
"color" "FF0000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "133419"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"14"
{
"name" "Chocobo"
"shortname" "Chocobo"
"color" "FF0000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "430758"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,292 @@
"entities"
{
"0"
{
"name" "Ashe Cloak"
"shortname" ""
"color" "0040FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "777862"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Balthier Cloak"
"shortname" ""
"color" "0040FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "796352"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Basch Cloak"
"shortname" ""
"color" "0040FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "777766"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Zombie Warp"
"shortname" "Warp"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "warpcaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "476523"
"mode" "2"
"maxuses" "0"
"cooldown" "120"
"maxamount" "1"
}
"4"
{
"name" "Zombie Lure"
"shortname" "Lure"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "lurecaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "476278"
"mode" "2"
"maxuses" "0"
"cooldown" "120"
"maxamount" "1"
}
"5"
{
"name" "Zombie Blind"
"shortname" "Blind"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "blindcaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "476360"
"mode" "2"
"maxuses" "0"
"cooldown" "120"
"maxamount" "1"
}
"6"
{
"name" "Wind Staff"
"shortname" "Wind"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "windcaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "476266"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"7"
{
"name" "Water Staff"
"shortname" "Water"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" "watercaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "476264"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"8"
{
"name" "Heal Staff"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "healcaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "476258"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"9"
{
"name" "Electro Staff"
"shortname" "Electro"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" "electrocaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "476260"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"10"
{
"name" "Earth Staff"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "earthcaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "476268"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"11"
{
"name" "Fire Staff"
"shortname" "Fire"
"color" "FF7300"
"buttonclass" "func_button"
"filtername" "firecaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "695050"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"12"
{
"name" "Holy Staff"
"shortname" "Holy"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "holycaster"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "476256"
"mode" "3"
"maxuses" "1"
"cooldown" "20"
"maxamount" "1"
}
"13"
{
"name" "Chocobo"
"shortname" ""
"color" "FF0000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "795408"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"14"
{
"name" "Chocobo"
"shortname" ""
"color" "FF0000"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "795464"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,292 @@
"entities"
{
"0"
{
"name" "Ashe Cloak"
"shortname" ""
"color" "0040FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "479440"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Vaan Cloak"
"shortname" ""
"color" "0040FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "479356"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Balthier Cloak"
"shortname" ""
"color" "0040FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "479085"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Basch Cloak"
"shortname" ""
"color" "0040FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "478923"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Warp Magick"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_warp"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "473843"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"5"
{
"name" "Invisibility Magick"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_invis"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "474656"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "1"
}
"6"
{
"name" "Lure Magick"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_lure"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "474985"
"mode" "2"
"maxuses" "0"
"cooldown" "90"
"maxamount" "1"
}
"7"
{
"name" "Heal Magick (ZM)"
"shortname" ""
"color" "B40404"
"buttonclass" "func_button"
"filtername" "player_knife_blind"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "475298"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"8"
{
"name" "Wind Staff"
"shortname" "Wind"
"color" "04B404"
"buttonclass" "func_button"
"filtername" "player_staff_wind"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "474260"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"9"
{
"name" "Water Staff"
"shortname" "Water"
"color" "0814FF"
"buttonclass" "func_button"
"filtername" "player_staff_water"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "473926"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"8"
{
"name" "Heal Staff"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "player_staff_heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "474682"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"9"
{
"name" "Electro Staff"
"shortname" "Electro"
"color" "BCCD00"
"buttonclass" "func_button"
"filtername" "player_staff_electro"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "474435"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"10"
{
"name" "Earth Staff"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" "player_staff_earth"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "474010"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "1"
}
"11"
{
"name" "Fire Staff"
"shortname" "Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "player_staff_fire"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "474249"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"12"
{
"name" "Holy Staff"
"shortname" "Holy"
"color" "A1A1A1"
"buttonclass" "func_button"
"filtername" "player_staff_holy"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "474103"
"mode" "4"
"maxuses" "1"
"cooldown" "20"
"maxamount" "1"
}
}

View File

@ -0,0 +1,309 @@
"entities"
{
"0"
{
"name" "Zombie Lure"
"shortname" "Zombie Lure"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2665489"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Zombie Blind"
"shortname" "Zombie Blind"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2665770"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Zombie Warp"
"shortname" "Zombie Warp"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2666579"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Zombie Invisibility"
"shortname" "Zombie Invisibility"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2666721"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Zombie Shield"
"shortname" "Zombie Shield"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2666977"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"5"
{
"name" "Zombie Heal"
"shortname" "Zombie Heal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2667303"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"6"
{
"name" "Zombie Fire"
"shortname" "Zombie Fire"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2708384"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"7"
{
"name" "Zombie Frost"
"shortname" "Zombie Frost"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "2708451"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"8"
{
"name" "Water Staff"
"shortname" "Water"
"color" "0000FF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2665857"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"9"
{
"name" "Fire Staff"
"shortname" "Fire"
"color" "FF7300"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2665939"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"10"
{
"name" "Holy Staff"
"shortname" "Holy"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2666037"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"11"
{
"name" "Heal Staff"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2666175"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"12"
{
"name" "Earth Staff"
"shortname" "Earth"
"color" "965F00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2666253"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"13"
{
"name" "Electro Staff"
"shortname" "Electro"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2666329"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"14"
{
"name" "Wind Staff"
"shortname" "Wind"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2666416"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"15"
{
"name" "Solo Winner"
"shortname" "Solo Winner"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "4270237"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,136 @@
"entities"
{
"0"
{
"name" "Summoner Shadow Flare"
"shortname" "Shadow Flare"
"color" "ADD8E6"
"buttonclass" "func_button"
"filtername" "shadowflare_filter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "122287"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
"1"
{
"name" "Black Mage Flare"
"shortname" "Flare"
"color" "FF4040"
"buttonclass" "func_button"
"filtername" "flare_filter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "122422"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
}
"2"
{
"name" "Mount Night Mare"
"shortname" "Night Mare"
"color" "3EFF3E"
"buttonclass" "func_button"
"filtername" "nightmare_filter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "122252"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"3"
{
"name" "White Mage Benediction"
"shortname" "Benediction"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "benediction_filter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "122408"
"mode" "2"
"maxuses" "0"
"cooldown" "150"
"maxamount" "1"
}
"4"
{
"name" "Bird Armys Paeon"
"shortname" "Armys Paeon"
"color" "FFA500"
"buttonclass" "func_button"
"filtername" "armys_filter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "122443"
"mode" "2"
"maxuses" "0"
"cooldown" "90"
"maxamount" "1"
}
"5"
{
"name" "Paladin Shield Oath"
"shortname" "Shield Oath"
"color" "FF8C00"
"buttonclass" "func_button"
"filtername" "shield_Filter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "122360"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"6"
{
"name" "Limit Break"
"shortname" "Limit Break"
"color" "FFFFE0"
"buttonclass" "func_button"
"filtername" "limit_filter"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "190185"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,288 @@
"entities"
{
"0"
{
"name" "Knight"
"shortname" "Knight"
"color" "FF0000" //red
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2222851"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "3"
}
"1"
{
"name" "Double Damage"
"shortname" "Damage"
"color" "FF7F00" //orange
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2214811"
"mode" "1"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"2"
{
"name" "Blizzard"
"shortname" "Blizzard"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2154090"
"mode" "1"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"3"
{
"name" "Thunder"
"shortname" "Thunder"
"color" "770000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2154149"
"mode" "1"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
"4"
{
"name" "Zombie Ice"
"shortname" "ZM Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1773606"
"mode" "2"
"maxuses" "0"
"cooldown" "10"
"maxamount" "8"
}
"5"
{
"name" "Zombie Malefic"
"shortname" "ZM Malefic"
"color" "770000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2458629"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "8"
}
"6"
{
"name" "Zombie Heal"
"shortname" "ZM Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2465419"
"mode" "2"
"maxuses" "0"
"cooldown" "30"
"maxamount" "8"
}
"7"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1722238"
"mode" "1"
"maxuses" "0"
"cooldown" "55"
"maxamount" "3"
}
"8"
{
"name" "Vyraal"
"shortname" "Vyraal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4034130"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"9"
{
"name" "Lalafell"
"shortname" "Lalafell"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3980440"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"10"
{
"name" "Garuda"
"shortname" "Garuda"
"color" "B87802"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3793023"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"11"
{
"name" "Zombie Gravity"
"shortname" "ZM Gravity"
"color" "800080"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3794115"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "8"
}
"12"
{
"name" "Alteci"
"shortname" "Alteci"
"color" "00ff00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3781596"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"13"
{
"name" "Oath"
"shortname" "Oath"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3977239"
"mode" "2"
"maxuses" "0"
"cooldown" "90"
"maxamount" "8"
}
"14"
{
"name" "Poison"
"shortname" "Poison"
"color" "00ff00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2214790"
"mode" "1"
"maxuses" "0"
"cooldown" "55"
"maxamount" "8"
}
}

View File

@ -0,0 +1,288 @@
"entities"
{
"0"
{
"name" "Knight"
"shortname" "Knight"
"color" "FF0000" //red
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2222851"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "3"
}
"1"
{
"name" "Double Damage"
"shortname" "Damage"
"color" "FF7F00" //orange
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2214811"
"mode" "2"
"maxuses" "1"
"cooldown" "0"
"maxamount" "8"
}
"2"
{
"name" "Blizzard"
"shortname" "Blizzard"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2154090"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "8"
}
"3"
{
"name" "Thunder"
"shortname" "Thunder"
"color" "770000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2154149"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "8"
}
"4"
{
"name" "Zombie Ice"
"shortname" "ZM Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1773606"
"mode" "2"
"maxuses" "0"
"cooldown" "10"
"maxamount" "8"
}
"5"
{
"name" "Zombie Malefic"
"shortname" "ZM Malefic"
"color" "770000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2458629"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "8"
}
"6"
{
"name" "Zombie Heal"
"shortname" "ZM Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2465419"
"mode" "2"
"maxuses" "0"
"cooldown" "30"
"maxamount" "8"
}
"7"
{
"name" "Heal"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1722238"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "3"
}
"8"
{
"name" "Vyraal"
"shortname" "Vyraal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "4034130"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"9"
{
"name" "Lalafell"
"shortname" "Lalafell"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3980440"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"10"
{
"name" "Garuda"
"shortname" "Garuda"
"color" "B87802"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3793023"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"11"
{
"name" "Zombie Gravity"
"shortname" "ZM Gravity"
"color" "800080"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3794115"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "8"
}
"12"
{
"name" "Alteci"
"shortname" "Alteci"
"color" "00ff00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3781596"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "3"
}
"13"
{
"name" "Oath"
"shortname" "Oath"
"color" "FFFF00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "3977239"
"mode" "2"
"maxuses" "0"
"cooldown" "90"
"maxamount" "8"
}
"14"
{
"name" "Poison"
"shortname" "Poison"
"color" "00ff00"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2214790"
"mode" "2"
"maxuses" "1"
"cooldown" "0"
"maxamount" "8"
}
}

View File

@ -0,0 +1,345 @@
"entities"
{
"0"
{
"name" "Blizzard Element"
"shortname" "Blizzard"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "Player_Human_Blizzard"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008547"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"1"
{
"name" "Heal Element"
"shortname" "Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Player_Human_Heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008852"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"2"
{
"name" "Thunder Element"
"shortname" "Thunder"
"color" "8000FF"
"buttonclass" "func_button"
"filtername" "Player_Human_Thunder"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008559"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"3"
{
"name" "LalaFell"
"shortname" "LalaFell"
"color" "FFFF00"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6007050"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"4"
{
"name" "Knight Sword"
"shortname" "Knight"
"color" "79DBFF"
"buttonclass" "func_button"
"filtername" "Player_Human_Knight"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008466"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"5"
{
"name" "Damage Potion"
"shortname" "Damage"
"color" "0080FF"
"buttonclass" "func_button"
"filtername" "Player_Human_Damage"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008493"
"mode" "4"
"maxuses" "1"
"cooldown" "6"
"maxamount" "1"
}
"6"
{
"name" "Poison Potion"
"shortname" "Poison"
"color" "00FF00"
"buttonclass" "func_button"
"filtername" "Player_Human_Poison"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008485"
"mode" "4"
"maxuses" "1"
"cooldown" "6"
"maxamount" "1"
}
"7"
{
"name" "Oath Element"
"shortname" "Oath"
"color" "FFFF80"
"buttonclass" "func_button"
"filtername" "Player_Human_Oath"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6006844"
"mode" "2"
"maxuses" "0"
"cooldown" "80"
"maxamount" "1"
}
"8"
{
"name" "Summon Bahamut"
"shortname" "Bahamut"
"color" "6F6F6F"
"buttonclass" "func_button"
"filtername" "Player_Human_Bahamut"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6006269"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"9"
{
"name" "Zombie Gravity"
"shortname" "ZM Gravity"
"color" "8000FF"
"buttonclass" "func_button"
"filtername" "Player_Zombie_Gravity"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6007303"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"10"
{
"name" "Zombie Heal"
"shortname" "ZM Heal"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "Player_Zombie_Heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008042"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"11"
{
"name" "Zombie Ice"
"shortname" "ZM Ice"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "Player_Zombie_Ice"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008636"
"mode" "4"
"maxuses" "2"
"cooldown" "50"
"maxamount" "1"
}
"12"
{
"name" "Zombie Malefic"
"shortname" "ZM Malefic"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "Player_Zombie_Malefic"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6008053"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
}
"13"
{
"name" "Vyraal"
"shortname" "Vyraal"
"color" "C0C0C0"
"buttonclass" "func_button"
"filtername" "Player_Zombie_Vyraal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6006814"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"14"
{
"name" "Alteci"
"shortname" "Alteci"
"color" "C0C0C0"
"buttonclass" ""
"filtername" "Player_Zombie_Alteci"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6007341"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"15"
{
"name" "Garuda"
"shortname" "Garuda"
"color" "F06E00"
"buttonclass" ""
"filtername" "Player_Zombie_Garuda"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6007281"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"16"
{
"name" "Seymour Natus"
"shortname" "ZM Seymour"
"color" "8000FF"
"buttonclass" "func_button"
"filtername" "Player_Zombie_Seymour"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6006573"
"mode" "4"
"maxuses" "2"
"cooldown" "20"
"maxamount" "1"
}
"17"
{
"name" "Bahamut Wing"
"shortname" "ZM Bahamut"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "Player_Zombie_Bahamut"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "6006090"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,60 @@
"entities"
{
"0"
{
"name" "Healing Pistol"
"shortname" "Heal"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "ct_only"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "116712"
"mode" "2"
"maxuses" "0"
"cooldown" "40"
"maxamount" "1"
}
"1"
{
"name" "Burner Gun"
"shortname" "Burner Gun"
"color" "00FF00"
"buttonclass" "func_rot_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "128073"
"mode" "2"
"maxuses" "0"
"cooldown" "13"
"maxamount" "1"
}
"2"
{
"name" "The Bow"
"shortname" "The Bow"
"color" "FF7F00"
"buttonclass" "func_rot_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "124212"
"mode" "2"
"maxuses" "0"
"cooldown" "13"
"maxamount" "1"
}
}

View File

@ -0,0 +1,98 @@
"entities"
{
"0"
{
"name" "Axe"
"shortname" "Axe"
"color" "99CCFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2973909"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Bow"
"shortname" "Bow"
"color" "99CCFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2973935"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Sword"
"shortname" "Sword"
"color" "99CCFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "true"
"hammerid" "2973920"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Heal"
"shortname" "Heal"
"color" "99CCFF"
"buttonclass" "func_button"
"filtername" "Can_Use_Heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "2976276"
"mode" "2"
"maxuses" "1"
"cooldown" "0"
"maxamount" "5"
}
"4"
{
"name" "Ammo"
"shortname" "Ammo"
"color" "99CCFF"
"buttonclass" "func_button"
"filtername" "Can_Use_Ammo"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "false"
"hammerid" "2976263"
"mode" "2"
"maxuses" "1"
"cooldown" "0"
"maxamount" "5"
}
}

View File

@ -0,0 +1,374 @@
"entities"
{
"0"
{
"name" "Incendio (fire)"
"shortname" "Incendio"
"color" "FF2828"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8974097"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "9005859"
}
"1"
{
"name" "Impedimenta (ice)"
"shortname" "Impedimenta"
"color" "7DBEFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8975848"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "9007824"
}
"2"
{
"name" "Flipendo (wind)"
"shortname" "Flipendo"
"color" "F4F4F4"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8977321"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "9007828"
}
"3"
{
"name" "Avada kedavra"
"shortname" "Avada kedavra"
"color" "FF8AFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8977961"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "9007832"
}
"4"
{
"name" "Reparo (heal)"
"shortname" "Reparo"
"color" "00DF00"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8978959"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "9007836"
}
"5"
{
"name" "Protego (wall)"
"shortname" "Protego"
"color" "E8E800"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8979602"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "17955655"
}
"6"
{
"name" "Accio (ammo)"
"shortname" "Accio"
"color" "808000"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17845448"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "17955652"
}
"7"
{
"name" "Crucio (poison)"
"shortname" "Crucio"
"color" "FD7E00"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17845738"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "17955634"
}
"8"
{
"name" "Aguamenti (slowmo)"
"shortname" "Aguamenti"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17845811"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "20840257"
}
"9"
{
"name" "Incendio (fire)"
"shortname" "Incendio"
"color" "C10000"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9125676"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
"trigger" "51661731"
}
"10"
{
"name" "Emendo (heal)"
"shortname" "Emendo"
"color" "6700CE"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9127617"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"11"
{
"name" "Confundus (confusing)"
"shortname" "Confundus"
"color" "FFFF2F"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9128126"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"12"
{
"name" "Deprimo (slowmo)"
"shortname" "Deprimo"
"color" "1C1CFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9128865"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"13"
{
"name" "Expulso (nuker)"
"shortname" "Expulso"
"color" "248C06"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9129450"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"14"
{
"name" "Disillusionment (half visible)"
"shortname" "Disillusionment"
"color" "371C00"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "17845958"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"15"
{
"name" "Conjunctivitus (poison)"
"shortname" "Conjunctivitus"
"color" "6A3500"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "17846183"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"16"
{
"name" "Deletrius (wand breaker)"
"shortname" "Deletrius"
"color" "00B3B3"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "17846257"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"17"
{
"name" "Reducio (minimizer)"
"shortname" "Reducio"
"color" "FF79BC"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "20869434"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"18"
{
"name" "Builder"
"shortname" "Builder"
"color" "B3A189"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "37642786"
"mode" "4"
"maxuses" "8"
"cooldown" "1"
"maxamount" "1"
}
}

View File

@ -0,0 +1,383 @@
"entities"
{
"0"
{
"name" "Incendio (FIRE)"
"shortname" "Incendio"
"color" "FF2828"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8974097"
"mode" "2"
"maxuses" "0"
"cooldown" "55"
"maxamount" "1"
"trigger" "59863086"
}
"1"
{
"name" "Impedimenta (ICE)"
"shortname" "Impedimenta"
"color" "7DBEFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8975848"
"mode" "2"
"maxuses" "0"
"cooldown" "70"
"maxamount" "1"
"trigger" "59863090"
}
"2"
{
"name" "Flipendo (WIND)"
"shortname" "Flipendo"
"color" "F4F4F4"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8977321"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"trigger" "59863094"
}
"3"
{
"name" "Avada kedavra"
"shortname" "Avada kedavra"
"color" "FF8AFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8977961"
"mode" "2"
"maxuses" "0"
"cooldown" "140"
"maxamount" "1"
"trigger" "59863102"
}
"4"
{
"name" "Reparo (HEAL)"
"shortname" "Reparo"
"color" "00DF00"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8978959"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
"trigger" "59863110"
}
"5"
{
"name" "Protego (WALL)"
"shortname" "Protego"
"color" "E8E800"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "8979602"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"trigger" "59863098"
}
"6"
{
"name" "Accio (AMMO)"
"shortname" "Accio"
"color" "808000"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17845448"
"mode" "2"
"maxuses" "0"
"cooldown" "50"
"maxamount" "1"
"trigger" "59863114"
}
"7"
{
"name" "Crucio (POISON)"
"shortname" "Crucio"
"color" "FD7E00"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17845738"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"trigger" "59863106"
}
"8"
{
"name" "Aguamenti (SLOWMO)"
"shortname" "Aguamenti"
"color" "00FFFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "17845811"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
"trigger" "59863118"
}
"9"
{
"name" "Incendio (FIRE)"
"shortname" "Incendio"
"color" "C10000"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9125676"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "9005859"
}
"10"
{
"name" "Emendo (HEAL)"
"shortname" "Emendo"
"color" "6700CE"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9127617"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "9007824"
}
"11"
{
"name" "Confundus (CONFUSER)"
"shortname" "Confundus"
"color" "FFFF2F"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9128126"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "9007828"
}
"12"
{
"name" "Deprimo (SLOWMO)"
"shortname" "Deprimo"
"color" "1C1CFF"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9128865"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "9007832"
}
"13"
{
"name" "Expulso (NUKER)"
"shortname" "Expulso"
"color" "248C06"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "9129450"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "9007836"
}
"14"
{
"name" "Disillusionment (HALF VISIBLE)"
"shortname" "Disillusionment"
"color" "371C00"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "17845958"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "17955655"
}
"15"
{
"name" "Conjunctivitus (POISON)"
"shortname" "Conjunctivitus"
"color" "6A3500"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "17846183"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "17955634"
}
"16"
{
"name" "Deletrius (WAND BREAKER)"
"shortname" "Deletrius"
"color" "00B3B3"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "17846257"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "17955652"
}
"17"
{
"name" "Reducio (MINIMIZER)"
"shortname" "Reducio"
"color" "FF79BC"
"buttonclass" "func_button"
"filtername" "wandtaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "20869434"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "35"
"trigger" "20840257"
}
"18"
{
"name" "Builder"
"shortname" "Builder"
"color" "B3A189"
"buttonclass" "func_button"
"filtername" "buildertaken"
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "37642786"
"mode" "4"
"maxuses" "8"
"cooldown" "2"
"maxamount" "1"
"trigger" "14550189"
}
}

View File

@ -0,0 +1,22 @@
"entities"
{
"0"
{
"name" "Book"
"shortname" "Book"
"color" "FFFFFF"
"buttonclass" "func_button"
"filtername" "stage1_tele_trigger"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "385304"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,60 @@
"entities"
{
"0"
{
"name" "Cock 1"
"shortname" "Cock 1"
"color" "FF2828"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "145599"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"1"
{
"name" "Cock 2"
"shortname" "Cock 2"
"color" "7DBEFF"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "213802"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
"2"
{
"name" "Cock 3"
"shortname" "Cock 3"
"color" "F4F4F4"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "266867"
"mode" "2"
"maxuses" "0"
"cooldown" "20"
"maxamount" "1"
}
}

View File

@ -0,0 +1,155 @@
"entities"
{
"0"
{
"name" "Push Gun"
"shortname" "Push"
"color" "00D8D5"
"buttonclass" "func_button"
"filtername" "push"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "114509"
"mode" "2"
"maxuses" "0"
"cooldown" "66"
"maxamount" "2"
}
"1"
{
"name" "Ammo Box"
"shortname" "Ammo"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "ammo"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "117260"
"mode" "2"
"maxuses" "0"
"cooldown" "90"
"maxamount" "2"
}
"2"
{
"name" "Freezegun"
"shortname" "Freeze"
"color" "21FFFC"
"buttonclass" "func_button"
"filtername" "coolr"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "118065"
"mode" "2"
"maxuses" "0"
"cooldown" "75"
"maxamount" "2"
}
"3"
{
"name" "Laser Wall"
"shortname" "Wall"
"color" "6459C9"
"buttonclass" "func_button"
"filtername" "laser"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "119767"
"mode" "2"
"maxuses" "0"
"cooldown" "65"
"maxamount" "2"
}
"4"
{
"name" "Zombie Heal"
"shortname" "Zombie Heal"
"color" "F5F5F5"
"buttonclass" "func_button"
"filtername" "heal"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "122959"
"mode" "2"
"maxuses" "0"
"cooldown" "90"
"maxamount" "2"
}
"5"
{
"name" "Zombie Rage"
"shortname" "Zombie Rage"
"color" "E00250"
"buttonclass" "func_button"
"filtername" "ragezm"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "124423"
"mode" "2"
"maxuses" "0"
"cooldown" "120"
"maxamount" "2"
}
"6"
{
"name" "Zombie Vortex"
"shortname" "Vortex"
"color" "755FCF"
"buttonclass" "func_button"
"filtername" "vortex"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "false"
"forcedrop" "false"
"chat" "true"
"hud" "false"
"hammerid" "129343"
"mode" "2"
"maxuses" "0"
"cooldown" "120"
"maxamount" "2"
}
"7"
{
"name" "Flamethrower"
"shortname" "Flamethrower"
"color" "EB6036"
"buttonclass" "func_button"
"filtername" "we1"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2730"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "2"
}
}

View File

@ -0,0 +1,79 @@
"entities"
{
"0"
{
"name" "Blue P90"
"shortname" "Blue P90"
"color" "0000FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "196705"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "White P90"
"shortname" "White P90"
"color" "FFFFFF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "196631"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "P90 with Plans"
"shortname" "Plans"
"color" "0080FF"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "196869"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Yellow P90"
"shortname" "Yellow P90"
"color" "FFFF00"
"buttonclass" ""
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "196983"
"mode" "0"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
}

View File

@ -0,0 +1,60 @@
"entities"
{
"0"
{
"name" "Shotgun"
"shortname" "Shotgun"
"color" "AD4100"
"buttonclass" "func_button"
"filtername" "shotgunname"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "83112"
"mode" "4"
"maxuses" "7"
"cooldown" "2"
"maxamount" "1"
}
"1"
{
"name" "Medkit"
"shortname" "Medkit"
"color" "FF0000"
"buttonclass" "func_button"
"filtername" "medkitname"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2044364"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Shotgun"
"shortname" "Shotgun"
"color" "A63F02"
"buttonclass" "func_button"
"filtername" "shotgunname2"
"hasfiltername" "true"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "1497581"
"mode" "4"
"maxuses" "8"
"cooldown" "2"
"maxamount" "1"
}
}

View File

@ -0,0 +1,79 @@
"entities"
{
"0"
{
"name" "Sword"
"shortname" "Sword"
"color" "B0BCBF"
"buttonclass" "func_physbox_multiplayer"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "7444"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"1"
{
"name" "Rocket Launcher"
"shortname" "Rocket"
"color" "8B7D8C"
"buttonclass" "func_door"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "296846"
"mode" "3"
"maxuses" "1"
"cooldown" "0"
"maxamount" "1"
}
"2"
{
"name" "Flamethrower"
"shortname" "Flamethrower"
"color" "FC5151"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "2730"
"mode" "1"
"maxuses" "0"
"cooldown" "0"
"maxamount" "1"
}
"3"
{
"name" "Cold Gun"
"shortname" "Cold Gun"
"color" "3D6EF5"
"buttonclass" "func_button"
"filtername" ""
"hasfiltername" "false"
"blockpickup" "false"
"allowtransfer" "true"
"forcedrop" "true"
"chat" "true"
"hud" "true"
"hammerid" "39556"
"mode" "2"
"maxuses" "0"
"cooldown" "60"
"maxamount" "1"
}
}

Some files were not shown because too many files have changed in this diff Show More