This file contains 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 |
This file contains 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 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 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 <sdkhooks> | |
#include <sdktools> | |
#include <hexstocks> | |
#pragma semicolon 1 | |
#pragma newdecls required |
This file contains 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
public void OnPluginStart() | |
{ | |
AddCommandListener(OnSay, "say"); | |
AddCommandListener(OnSay, "say_team"); | |
AddCommandListener(OnCmd); | |
} | |
public Action OnSay(int client, const char[] command, int args) | |
{ | |
char sCmd[32]; |
This file contains 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
ArrayList LrArray; | |
ArrayList LrArray2; | |
public void OnPluginStart() | |
{ | |
LrArray = new ArrayList(32); | |
AddCommandListener(OnSay, "say"); | |
AddCommandListener(OnSay, "say_team"); | |
AddCommandListener(OnCmd); | |
This file contains 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 <sdktools> | |
#include <sdkhooks> | |
#include <cstrike> | |
#include <mystocks> | |
#include <warden> | |
#include <myjbwarden> | |
#define PLUGIN_AUTHOR "Hexah" | |
#define PLUGIN_VERSION "1.0" |
This file contains 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
CSGO/CSS SUPPORTED: | |
"default" | |
"teamcolor" | |
"red" | |
"lightred" | |
"darkred" | |
"bluegrey" | |
"blue" |
This file contains 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
import 'dart:io'; | |
import 'dart:convert'; | |
import 'dart:typed_data'; | |
Socket socket; | |
int _id = 1; | |
const int SERVERDATA_AUTH = 3; | |
const int SERVERDATA_AUTH_RESPONSE = 2; | |
const int SERVERDATA_EXECCOMMAND = 2; |
This file contains 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
import 'dart:convert'; | |
void main(){ | |
List list = [{'foo' : 'bar'}, {'foo2' : 'bar2'}]; | |
print(json.encode(list)); | |
} |
OlderNewer