When I used this, It gives a response to everything 'EXCEPT' the containi I put. Looky.
Code:
public plugin_init(){
register_clcmd("say","HandleSay")
}
public HandleSay(id) {
new Speech[192]
read_args(Speech,192)
remove_quotes(Speech)
if( (containi(Speech, "my trigger") == -1)) {
client_print(id,print_chat, "My response")
}
return PLUGIN_CONTINUE
}
What's causing this? It's becoming annoying.