Trailer attaching
#9

pawn Код:
CMD:trailer(playerid, params[])
{
    new vehicleid;
    vehicleid = GetPlayerVehicleID(playerid);
    if(IsATruck(vehicleid))
    {
        new randtrailer = random( sizeof( Trailers ) );
        AttachTrailerToVehicle(randtrailer, vehicleid);
        SendClientMessage(playerid, COLOR_RED, "INFO: Trailer attached");
        printf("%d", randtrailer);
    }
    return 1;
}

stock IsATruck(vehicleid)
{
    switch(GetVehicleModel(vehicleid))
    {
        case 403, 514, 515: return 1;
    }
    return 1;
}
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)