16.02.2013, 18:07
Oh ok then
pawn Код:
foreach(Player, i)
{
if(GetIntVar(i, "InConvo") == 1 && i != playerid)
{
format(string, sizeof(string), "[ID:%d]%s has been disconnected from the server, the convo has ended.", playerid, GetName(playerid));
ConvoMSG(i, string);
RemoveVar(i, "InConvo");
RemoveVar(i, "ConvoWith");
}
}