Thanks for the info.
I want to make a shortcut for amx_chat in the normal chat (say command).
This shortcut will use '@' so:
Code:
public chat123(id, level, cid)
{
if( (sayd[0]==@) && (get_user_flags(id) & ADMIN_CHAT) )
display message without @ for all players with admin_chat flag
else display the full message (with @) in normal say (like this plugin did not exists)
}
Now, the way i tried it blocks normal chat for non-admin users, after i fixed that, messages (with @ in front) from non-admin users don't display at all & triggers the logs (this should not happen for non-admin users).
LATER EDIT: I managed to do it myself with your help on the return plugin_handeld, thanks again.