Small prob again ;P
#8

Quote:
Originally Posted by Nero_3D
Посмотреть сообщение
This version is the correct one
pawn Код:
#define WEBSITE "www.balalbala.com"

public playerfoundweapon(playerid)
{
    if (PlayerInfo[playerid][Level] == 0)
    {
        if (CheatMsg == 1)
        {
            new string[128];
            GetPlayerName(playerid, string, MAX_PLAYER_NAME);
            format(string, sizeof(string), "Anti Cheat : %s has been banned (Reason : Weapon Cheats )", string);
            SendClientMessageToAll(0xFF000096, string);
        }
        SendClientMessage(playerid, 0xFF000096, "If you think this was an unfair ban, make a unban appeal at : " WEBSITE);
        Ban(playerid);
        return 1;
    }
    return 0;
}
Should be:

pawn Код:
#define WEBSITE "www.balalbala.com"

public playerfoundweapon(playerid)
{
    if (PlayerInfo[playerid][Level] == 0)
    {
        if (CheatMsg == 1)
        {
            new string[128];
            GetPlayerName(playerid, string, MAX_PLAYER_NAME);
            format(string, sizeof(string), "Anti Cheat : %s has been banned (Reason : Weapon Cheats )", string);
            SendClientMessageToAll(0xFF000096, string);
        }
        new string2[40];
        format(string2,sizeof(string2),"If you think this was an unfair ban, make an unban appeal at: %s",WEBSITE);
        SendClientMessage(playerid, 0xFF000096, string);
        Ban(playerid);
        return 1;
    }
    return 0;
}
You forgot the string for the website.
Reply


Messages In This Thread
Small prob again ;P - by [SU]Balli - 29.11.2010, 21:40
Re: Small prob again ;P - by PowerPC603 - 29.11.2010, 22:09
Re: Small prob again ;P - by [SU]Balli - 30.11.2010, 12:17
Re: Small prob again ;P - by Lutsen - 30.11.2010, 13:21
Re: Small prob again ;P - by [SU]Balli - 30.11.2010, 13:32
Re: Small prob again ;P - by WillyP - 30.11.2010, 13:49
Re: Small prob again ;P - by Nero_3D - 30.11.2010, 13:53
Re: Small prob again ;P - by WillyP - 30.11.2010, 13:57
Re: Small prob again ;P - by Nero_3D - 30.11.2010, 14:08
Re: Small prob again ;P - by WillyP - 30.11.2010, 14:10

Forum Jump:


Users browsing this thread: 2 Guest(s)