Ty all but i must ask is this code correct also ? its compiled
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>
#include <engine>
#include <colorchat>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /buyak","cmd_getak")
}
public cmd_getak(id){
if(get_user_team(id) != 1){
ColorChat(id, RED,"[Jailbreak]Only Guards Can Use Weapons Cmds")
}
if(get_user_team(id) != 2){
give_item(id, "weapon_ak47")
give_item(id, "weapon_deagle")
cs_set_user_bpammo(id, CSW_DEAGLE, 70)
cs_set_user_bpammo(id, CSW_AK47, 200)
}
}
and question can i change every word color in color chat and if i can, can somone give me a example line :

ty