small help
#10

Quote:
Originally Posted by KamalBa
Посмотреть сообщение
Код:
CMD:pm(playerid, params[])
{
    new targetid,message[128],string[256];
    if(sscanf(params,"us[256]", targetid, message)) return SendClientMessage(playerid,COLOR_YELLOW,"USAGE: /pm [playerid] [message]");
    if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid,COLOR_RED,"Player is not online");
    if(targetid == playerid) return SendClientMessage(playerid,COLOR_RED,"You Can'nt PM Your Self!");
    if(AllowPM[targetid] == 1)
	{
        format(string, sizeof(string),"PM From %s Message: %s", GetPlayerName(playerid), message);
        SendClientMessage(targetid, COLOR_RED, string);
        format(string, sizeof(string),"PM send to %s Message: %s", GetPlayerName(targetid), message);
        SendClientMessage(playerid, COLOR_RED, string);
 }
    else return SendClientMessage(playerid, COLOR_RED,"That player is not allowing PM's to send to him, sorry!");
    return 1;
}
This command show me 4 warnings how to fix
Quote:
Originally Posted by justice96
Посмотреть сообщение
Код:
new pname[MAX_PLAYER_NAME];
GetPlayerName(playerid,pname,sizeof(pname));
Quote:
Originally Posted by Crayder
Посмотреть сообщение
For the rest you are not using GetPlayerName correctly. This is the correct way to use it:
pawn Код:
public OnPlayerConnect(playerid)
{
    // Get the name of the player that connected and display a join message to other players
 
    new name[MAX_PLAYER_NAME], string[24+MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
 
    format(string, sizeof(string), "%s has joined the server.", name);
    SendClientMessageToAll(0xC4C4C4FF, string);
 
    return 1;
}
Source: https://sampwiki.blast.hk/wiki/GetPlayerName
We have both already told you, even showed you how to fix that.
Reply


Messages In This Thread
small help - by KamalBa - 21.06.2015, 22:56
Re: small help - by Crayder - 21.06.2015, 23:03
Re: small help - by justice96 - 21.06.2015, 23:05
Re: small help - by KamalBa - 21.06.2015, 23:12
Re: small help - by Crayder - 21.06.2015, 23:14
Re: small help - by KamalBa - 21.06.2015, 23:15
Re: small help - by justice96 - 21.06.2015, 23:22
Re: small help - by Crayder - 21.06.2015, 23:28
Re: small help - by KamalBa - 21.06.2015, 23:55
Re: small help - by Crayder - 22.06.2015, 00:01

Forum Jump:


Users browsing this thread: 2 Guest(s)