Jump to content

Question

Posted

De ce atunci cand adaug o masina,toate se dau peste cap,adica...Cea de la politie arata ca e ambulanta etc...M-am saturat sa tot iau oldcarul...e vreo alta metoda sa nu se mai dea peste cap?

3 answers to this question

Recommended Posts

Posted

Voi mai bine in RP in loc de

//Sub OnGameModeInit
CreateVehicle( ... );
CreateVehicle( ... );

//o comanda ceva
if( vehicleid == 2 ) //sau 1, oricum, pentru a 2-a masina de mai sus
{
    ...
}
ati folosi
//Sus in script
new Vehicle[ 2 ];
Vehicle[ 0 ] = CreateVehicle( ... );
Vehicle[ 1 ] = CreateVehicle( ... );

//o comanda ceva
if( vehicleid == Vehicle[ 1 ] ) //al 2-lea vehicul
{
    ...
}

Asa n-ar mai aparea probleme, dar cui sa-i spui asta ...

Probleme godfather.

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.