@above Perfect! Thanks so much! I appreciate your help all!
I changed the bool to
Code:
new bool:isSimon=false
which worked perfectly.
I used the user name method Waleed suggested which worked perfectly.
I also googled how to get user team and i found the cstrike one too

so yeah using that one.
Here's the working code:
Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#define PLUGIN "jm0d"
#define VERSION "1.0"
#define AUTHOR "iloverain"
new bool:isSimon=false
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd ( "say /simon", "SetSimon" )
}
public SetSimon(id) {
(cs_get_user_team(id) == CS_TEAM_CT)
new name[32];
get_user_name( id, name, charsmax ( name ) )
if ( isSimon == true ) {
client_print( id, print_chat, "Someone is already Simon!" )
} else {
client_print( id, print_chat, "%s is Simon!", name )
isSimon = true
}
}
Thanks all!
LOL edit;
last question. how would one reset a boolean to false after round end? o.0 I dont want to create a new thread for each question. Lmfao sorry.
__________________