This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <sourcemod> | |
#include <cstrike> | |
#include <mystocks> | |
#include <warden> | |
#pragma newdecls required | |
#pragma semicolon 1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AdminId admin = GetUserAdmin(client); | |
if (admin != INVALID_ADMIN_ID) | |
{ | |
char sGroup[32]; | |
if ((GetAdminGroup(admin, 0, sGroup, sizeof(sGroup)) != INVALID_GROUP_ID)) | |
{ | |
if (StrEqual(sGroup, "PUT GROUP NAME HERE!")) | |
{ | |
CS_SetClientClanTag(client, "[Vip]"); | |
return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Defines | |
#include <sourcemod> | |
#include <sdktools> | |
#include <cstrike> | |
#include <autoexecconfig> | |
#include <mystocks> | |
#include <colorvariables> | |
#include <menu-stocks> | |
#undef REQUIRE_PLUGIN |
NewerOlder