DestroyVehicle problem
#5

Quote:
Originally Posted by Walsh
Посмотреть сообщение
I don't believe there is, btw if you won't help then don't post man lmao. :P
You are wrong. My post is the one that helps. If i make thhe code for you, you just copy/paste instead of work to fix your own errors. That's how i've learn. Try it.. If doesnn't work, just tell.

But ok.. Here you go, not tested, made almost sleeping, hope it works.

pawn Код:
if(strcmp(cmdtext, "/delveh", true) == 0)
{
    if(IsPlayerConnected(playerid))
    {
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /delveh");
            return 1;
        }
        if (PlayerInfo[playerid][pAdmin] >=2)
        {
            new currentveh = GetPlayerVehicleID(playerid);
            DestroyVehicle(currentveh);
            return 1;
        }
        else SendClientMessage(playerid, COLOR_RED,"You're not admin!");
        {
            format(string, sizeof(string), "*%d Admin %s: Deleted the vehicle", PlayerInfo[playerid][pAdmin], sendername);
            SendAdminMessage(COLOR_YELLOW,string);
            return 1;
        }
        printf("Admin %s: Deleted the vehicle", sendername);
        SendClientMessage(playerid, COLOR_GRAD1,"Vehicle deleted!");
    }
    return 1;
}
Reply


Messages In This Thread
DestroyVehicle problem - by Allu - 02.03.2012, 22:55
Re: DestroyVehicle problem - by Walsh - 03.03.2012, 00:13
Re: DestroyVehicle problem - by ricardo178 - 03.03.2012, 00:25
Re: DestroyVehicle problem - by Walsh - 03.03.2012, 00:30
Re: DestroyVehicle problem - by ricardo178 - 03.03.2012, 00:35
Re: DestroyVehicle problem - by Walsh - 03.03.2012, 00:39
Re: DestroyVehicle problem - by ricardo178 - 03.03.2012, 00:45

Forum Jump:


Users browsing this thread: 1 Guest(s)