/car command not working
#7

pawn Код:
CMD:car(playerid, params[])
{
    if(DMZone[playerid] == 0)
    {
        new string[256];
        new color1;
        new color2;
        new car;
        if(!sscanf(params, "iii",car,  color1, color2); return SendClientMessage(playerid, COLOR_GREY, "USAGE: /car [vehicleid|name] [color1] [color2]"), true;

        new Float:X,Float:Y,Float:Z,Float:A;
        GetPlayerPos(playerid, X,Y,Z);
        GetPlayerFacingAngle(playerid, A);
        X += (5 * floatsin(-A, degrees));
        Y += (5 * floatcos(-A, degrees));
        new car1 = GetVehicleModelIDFromName(car)
        CreateVehicle(car1, X,Y,Z, 0.0, color1, color2, 600000000);
        format(string, sizeof(string), "Vehicle %s(%d) spawned.", VehNames[GetVehicleModel(carid)-400], carid);
        SendClientMessage(playerid, COLOR_YELLOW, string);
    }
    if(DMZone[playerid] == 1) return SendClientMessage(playerid, COLOR_RED,"ERROR: You are in a DM Zone");
    return 1;
}
try this
Reply


Messages In This Thread
/car command not working - by Swyft™ - 23.06.2012, 16:23
Respuesta: /car command not working - by Chris1337 - 23.06.2012, 16:31
Re: /car command not working - by Swyft™ - 23.06.2012, 16:36
Re: /car command not working - by igal4576 - 23.06.2012, 16:36
Respuesta: /car command not working - by Chris1337 - 23.06.2012, 16:39
Re: /car command not working - by Swyft™ - 23.06.2012, 16:42
Respuesta: /car command not working - by Chris1337 - 23.06.2012, 16:47
Re: /car command not working - by Swyft™ - 23.06.2012, 16:50
Respuesta: /car command not working - by Chris1337 - 23.06.2012, 16:58
Re: /car command not working - by Swyft™ - 23.06.2012, 17:09

Forum Jump:


Users browsing this thread: 2 Guest(s)