21.09.2009, 11:24
https://sampwiki.blast.hk/wiki/GetPlayerVirtualWorld
pawn Код:
public OnPlayerText(playerid, text[])
{
new
world = GetPlayerVirtualWorld(playerid);
for (new i; i < MAX_PLAYERS; i++)
{
if (world == GetPlayerVirtualWorld(i)
{
SendPlayerMessageToPlayer(i, playerid, text);
}
}
return 0;
}