Quote:
Originally Posted by Caldeum
Ok. But if i'm in CT and i change my team to T i will get the //message. What i'm trying to do is block message if i change my team but show message when i connect and choose the team.
|
you don't even know what you're talking about, don't you?
i dont get you all with your bigass codes with 1000000 variables cacheing teams and shit
Code:
#include <amxmodx>
#include <cstrike>
public plugin_init() {
register_plugin("this", "0", "jimaway")
register_clcmd("jointeam", "jointeam_func")
}
public jointeam_func(id) {
if (cs_get_user_team(id) == CS_TEAM_UNASSIGNED) {
//message
}
}