Posts: 324
Threads: 108
Joined: Dec 2013
Reputation:
0
Does anybody know how to make a textdraw for the LSPD Vehicles, for example, 1-LINCOLN-3, or 1-L-3? on the back of it. im aware of the vehicle ids ect and i have already placed the LSPD Vehicles in the garage. i want it to look like something from LSRP.
Posts: 108
Threads: 9
Joined: Jun 2013
Reputation:
0
You can't do it by textdraws lol, you need to use attach3dtextlabeltovehicle
Posts: 324
Threads: 108
Joined: Dec 2013
Reputation:
0
Yes, im aware of that now so like this right
public OnGameModeInit ( )
{
vehicle_id = CreateVehicle( 510, 0.0. 0.0, 15.0, 5, 0, 120 );
vehicle3Dtext[ vehicle_id ] = Create3DTextLabel( "Example Text", 0xFF0000AA, 0.0, 0.0, 0.0, 50.0, 0, 1 );
//Creating the Vehicle
//Attaching Text Label To Vehicle
Attach3DTextLabelToVehicle( vehicle3Dtext[ vehicle_id ] , vehicle_id, 0.0, 0.0, 2.0);
}
public OnGameModeExit ( )
{
Delete3DTextLabel( vehicle3Dtext[ vehicle_id ] );
return true;
}
but where can i get the offsets of the vehicle
Posts: 108
Threads: 9
Joined: Jun 2013
Reputation:
0
I'm in school right now, i'll write a command for you later.
Posts: 324
Threads: 108
Joined: Dec 2013
Reputation:
0
okay thank you very much, il comment if i do it figure it out myself
Posts: 324
Threads: 108
Joined: Dec 2013
Reputation:
0
Dam! thank you very much, +rep for you sir