Trailer attaching
#1

Hello I have attempted to make a command which attaches a random trailer to a truck, now I have set up the 3 trailer id's in to a new:
pawn Код:
new Trailers[3][1] =
{
    403,
    514,
    515,
};
Which I have no idea if it is right, guessing it isn't seeing as it isn't working. now here's my command:
pawn Код:
CMD:trailer(playerid, params[])
{
    new vehicleid;
    vehicleid = GetPlayerVehicleID(playerid);
    if(IsATruck(vehicleid))
    {
        new randtrailer = random( sizeof( Trailers ) );
        AttachTrailerToVehicle(randtrailer, IsATruck(vehicleid));
        SendClientMessage(playerid, COLOR_RED, "INFO: Trailer attached");
        printf("%d", randtrailer);
    }
    return 1;
}

stock IsATruck(vehicleid)
{
    switch(GetVehicleModel(vehicleid))
    {
        case 435, 450, 584, 591: return 1;
    }
    return 1;
}
With the "IsATruck" attached the the command.
Reply


Messages In This Thread
Trailer attaching - by Luis- - 25.08.2011, 18:02
Re: Trailer attaching - by [MWR]Blood - 25.08.2011, 18:06
Re: Trailer attaching - by =WoR=G4M3Ov3r - 25.08.2011, 18:07
Re: Trailer attaching - by Luis- - 25.08.2011, 18:14
Re: Trailer attaching - by [MWR]Blood - 25.08.2011, 18:15
Re: Trailer attaching - by =WoR=G4M3Ov3r - 25.08.2011, 18:17
Re: Trailer attaching - by Luis- - 25.08.2011, 18:25
Re: Trailer attaching - by [MWR]Blood - 25.08.2011, 18:26
Re: Trailer attaching - by Luis- - 25.08.2011, 18:27
Re: Trailer attaching - by =WoR=G4M3Ov3r - 25.08.2011, 18:33

Forum Jump:


Users browsing this thread: 1 Guest(s)