What's wrong with this code?
#7

pawn Код:
if(strcmp(cmdtext, "/fixcar", true, 7) == 0) // or cmd and delete 7, if not cmdtext
{
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))return SendClientMessage(playerid, COLOR_GREY, "* Usuage: /fixcar [Player ID/part of name]");
    print("Before giveplayerid returnuser");
    giveplayerid = ReturnUser(tmp);
    print("After giveplayerid return user");
    if(IsPlayerConnected(giveplayerid))
    {
        if(PlayerInfo[playerid][pAdmin] >= 99999)
        {
            new value = (PlayerInfo[giveplayerid][pVehicle] == 1) ? 0 : 1;
            format(string, sizeof(string), "* You set %s's car value to %d.",PlayerName(giveplayerid),value);
            SendClientMessage(playerid, COLOR_LIGHTRED, string);
            format(string, sizeof(string), "* Admin %s set your car value to %d.",PlayerName(playerid),value);
            SendClientMessage(giveplayerid, COLOR_GREY, string);
            PlayerInfo[giveplayerid][pVehicle] = value;
        }
    }else SendClientMessage(playerid, COLOR_GREY, "* User is not connected !");
    return 1;
}
Reply


Messages In This Thread
What's wrong with this code? - by Jack_Leslie - 21.09.2011, 14:05
Re: What's wrong with this code? - by Cowboy - 21.09.2011, 14:52
Re: What's wrong with this code? - by Elmin - 21.09.2011, 14:57
Re: What's wrong with this code? - by Jack_Leslie - 21.09.2011, 21:48
Re: What's wrong with this code? - by admantis - 21.09.2011, 23:08
Re: What's wrong with this code? - by Jack_Leslie - 22.09.2011, 00:10
Re: What's wrong with this code? - by Jefff - 22.09.2011, 00:20

Forum Jump:


Users browsing this thread: 1 Guest(s)