Okay so I'm making a small plugin called
Welcome Message 
I'm a beginner so what does the plugin do is when a player joins a server
public client_connect(id) it will print a message in chat "Welcome to the server blah blah blah" but in color! The thing is when I open cs and test it nothing happens!
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <colorchat> //I'm using colorchat for colors :3
#define PLUGIN "WelcomeMessage"
#define VERSION "1.0"
#define AUTHOR "JavoL" //<-- That's my name :O
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public client_connect(id)
{
new szName[33] //User's name
get_user_name(id, szName, charsmax(szName)) //Well... You kno'
ColorChat(id, TEAM_COLOR, "^3Dobrodosao na server ^4%s^3! ^3Say: ^4/pravila ^3da vidite pravila servera.", szName) //Message
}
If you can see the problem please,
REPLY!
__________________