Encrypting text
#8

Quote:
Originally Posted by Steven82
We can understand do exactly what he said
Would you stop spamming every possible topic in this section. If you have no idea how to script or even help people, then don't post.



pawn Код:
public OnPlayerText(playerid, text[])
{
    new str[128];
    strcat(str, text, , 128);
    for (new i = 0, j = strlen(text); i < j; i++) str[i]++;

    for (new i = 0, j = GetMaxPlayers(), i < j; i++)
    {
        if (i == playerid) continue;
        if (gTeam[i] == TEAM_ZOMBIE) SendPlayerMessageToPlayer(i, playerid, str);
        else SendPlayerMessageToPlayer(i, playerid, text);
    }
    return 0;
}
Reply


Messages In This Thread
Encrypting text - by russo666 - 17.05.2010, 21:37
Re: Encrypting text - by russo666 - 18.05.2010, 13:31
Re: Encrypting text - by ¤Adas¤ - 18.05.2010, 18:18
Re: Encrypting text - by russo666 - 18.05.2010, 18:19
Re: Encrypting text - by Steven82 - 18.05.2010, 18:32
Re: Encrypting text - by Sergei - 18.05.2010, 18:35
Re: Encrypting text - by Sergei - 18.05.2010, 18:41
Re: Encrypting text - by dice7 - 18.05.2010, 18:43
Re: Encrypting text - by russo666 - 18.05.2010, 19:07
Re: Encrypting text - by Sergei - 18.05.2010, 19:16

Forum Jump:


Users browsing this thread: 1 Guest(s)