Hey, I tried to do something like this: when player X writes /say command all other players are SOLID_NOT, but only for player X, so player X can walk through other players and other players can walk through player X.
My code, it's not right, I know, maybe someone could write me a normal one?
PHP Code:
public clcmd_say()
{
new Players[32], Num, Others
get_players(Players, Num)
for (new i = 0; i < Num; i++)
{
Others = Players[i]
set_pev(Others, pev_solid, SOLID_NOT)
}
}