SA-MP Forums Archive
Script help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Script help (/showthread.php?tid=483313)



Script help - aDo7 - 25.12.2013

Hello,
I have been placed Biz cmds to my server but am looking for biz chat command like Next Generation on
PHP код:
Cmd:br 
So if any one have it or can make it please help me!



Re: Script help - Excelize - 25.12.2013

Код:
public OnPlayerText(playerid, text[])
{
    if (text[0] == '@') {
        text[0] = ' ';
        new msg[128], pName[MAX_PLAYER_NAME];
        GetPlayerName(playerid, pName, sizeof(pName));
        format(msg, sizeof(msg), "[Team][%s]:%s", pName, text);
        for (new i = 0; i < GetMaxPlayers(); i++) {
            if (GetPlayerTeam(playerid) == GetPlayerTeam(i))
                SendPlayerMessageToPlayer(i, playerid, msg);
        }
        return 0;
    }
    return 1;
}



Re: Script help - aDo7 - 25.12.2013

usefulness