/* Plugin Template generated by Pawn Studio */ #include 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; }