inital commit

This commit is contained in:
Giovanni Harting
2015-05-02 23:52:19 +02:00
parent 1a038457d4
commit 45b2c6cfff
49 changed files with 14069 additions and 0 deletions

33
colortest.sp Normal file
View File

@@ -0,0 +1,33 @@
/* Plugin Template generated by Pawn Studio */
#include <sourcemod>
public Plugin:myinfo =
{
name = "TestPlugin",
author = "Chefe",
description = "test",
version = "1.0",
url = "<- test ->"
}
public OnPluginStart()
{
RegConsoleCmd("sm_test", Command_Test, "test");
}
public Action:Command_Test(client, args)
{
PrintToChatAll("\x00 Farbe 00");
PrintToChatAll("\x01 Farbe 01");
PrintToChatAll("\x02 Farbe 02");
PrintToChatAll("\x03 Farbe 03");
PrintToChatAll("\x04 Farbe 04");
PrintToChatAll("\x05 Farbe 05");
PrintToChatAll("\x06 Farbe 06");
PrintToChatAll("\x07 Farbe 07");
PrintToChatAll("\x08 Farbe 08");
PrintToChatAll("\x09 Farbe 09");
PrintToChatAll("\x10 Farbe 10");
return Plugin_Handled;
}