You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
720 B
33 lines
720 B
/* 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; |
|
} |