23.09.2009, 21:59
Doesn't work ... because:
pawn Код:
SendMessageToMyWorld(color, text[])
{
new world;
world = GetPlayerVirtualWorld([b]playerid[/b]); // playerid isn't defined anywhere o_o
for (new i; i < MAX_PLAYERS; i++)
{
if (world == GetPlayerVirtualWorld(i))
{
SendClientMessage(i, color, text);
}
}
}