Fallowing Errors:
PHP Code:
Color( id, "!g[ DeathMatch ]!n Welcome !g%s!n, DeathMatch: All Stars !gV1.0!n Coded By !gCheese.", szName, PLUGIN, VERSION, AUTHOR );
Correct is:
PHP Code:
ChatColor( id, "!g[ DeathMatch ]!n Welcome !g%s!n, DeathMatch: All Stars !gV1.0!n Coded By !gCheese.", szName);
Error:
PHP Code:
stock Color( id, String[ ], any:... ) {
Correct:
PHP Code:
stock ChatColor( id, String[ ], any:... ){
Error:
PHP Code:
Color( id, "");
Correct:
PHP Code:
ChatColor( id, "!g[ DeathMatch ]!n Welcome !g%s!n, DeathMatch: All Stars !gV1.0!n Coded By !gCheese.", szName);
@EDIT:
There needs #include < colorchat >