Need help with CMD..
#2

Hello test the code bellow

PHP код:
if(strcmp(cmd,"/streetrespect",true) == 0)
    {
        if(
gPlayerLogged[playerid] == 0SendClientMessage(playeridCOLOR_GREY"You need to login first before using any command.");//First error
        
else if(PlayerInfo[playerid][pCMDT] > 0SendClientMessage(playerid,0xFF0000FF,"Please wait before using this command again.");
        else{
            new 
id;
            new 
targetname[MAX_PLAYER_NAME], sendername2[MAX_PLAYER_NAME];//warning 219: local variable "sendername" shadows a variable at a preceding level
            
id ReturnUser(tmp);
               
GetPlayerName(idtargetnamesizeof(targetname));
            
GetPlayerName(playeridsendername2sizeof(sendername2));
            if(
sscanf(cmd"u"id)) SendClientMessage(playerid0xCC0000AA"USAGE: /respect <playerid/partofname>");//error 017: undefined symbol "params"
            
else if(id == INVALID_PLAYER_ID || !IsPlayerConnected(id)) SendClientMessage(playerid, -1"ID not connected");
            else if(
playerid == idSendClientMessage(playerid, -1"You can't give Street Respect to yourself.");
            else if(!
IsPlayerInRangeOfPlayer(playeridid5)) SendClientMessage(playerid, -1"You aren't close enough to the player.");
            else
            {
                new 
string2[128];//warning 219: local variable "string" shadows a variable at a preceding level
                
PlayerInfo[playerid][StreetRespect]++;
                
PlayerInfo[playerid][pCMDT] = 3600// example 3600 - 1 hour
                
format(string2sizeof(string2), " You have gived Street Respect to %s."targetname);//argoment doesnt match
                
SendClientMessage(playeridCOLOR_WHITEstring2);
                
format(string2sizeof(string2), " Player %s has gived you Street Respect to you."sendername2);//argoment doesnt match
                
SendClientMessage(idCOLOR_WHITEstring2);
            }
        }
        return 
1;
    } 
Reply


Messages In This Thread
Need help with CMD.. - by Scrillex - 24.02.2015, 08:45
Re: Need help with CMD.. - by Golf - 24.02.2015, 08:51
Re: Need help with CMD.. - by Scrillex - 24.02.2015, 09:23
Re: Need help with CMD.. - by Golf - 24.02.2015, 09:59
Re: Need help with CMD.. - by Gammix - 24.02.2015, 10:32
Re: Need help with CMD.. - by Golf - 24.02.2015, 10:38
Re: Need help with CMD.. - by Gammix - 24.02.2015, 12:17

Forum Jump:


Users browsing this thread: 2 Guest(s)