Ok, I am trying to turn off ooc while people are in jail. Can you please tell me if this would work, and if not can you tell me what would? Thanks
Quote:
new origin[3]
get_user_origin(players[i],origin)
if(get_distance(origin,jailone) <= 150.0 || get_distance(origin,jailtwo) <= 150.0 || get_distance(origin,jailthree) <= 150.0 || get_distance(origin,jailfour) <= 150.0)
{
}
else
{
sv_ooc[players[i]] -= 1
}
}
else if ( sv_ooc[players[i]] <= 0 )
{
|