Jump to content
  • 0

Problema tunning


ShowBell

Question

1.Am o problema la tunning ... cand intru in tunning aleg orice optiune si vreau sa ies dintr-o optiune dau enter sau f si ma scoate din masina iar apoi nu ma lasa sa urc.. imi puteti zice cum rezolv bugul?

2.De unde modific acel pret default de 100$ de la paint'n'spray.

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

[pawn]public OnPlayerSelectedMenuRow( playerid, row )

{

    TogglePlayerControllable( playerid, false );

    //Restul codului din acest callback

    return 1;

}[/pawn]

Si ca sa-l deblocheze:

[pawn]public OnPlayerExitedMenu( playerid )

{

    TogglePlayerControllable( playerid, true );

    //Restul codului din acest callback

    return 1;

}[/pawn]

Link to comment
Share on other sites

Tot nu merge ... e de la TUNNING LS SF ... ala default ...

Nu ai cum sa iesi din vehicul la acele meniuri de la tunare din LS/SF/LV.

Poate doar daca ai ceva ca

public OnPlayerKeyStateChange( playerid, newkeys, oldkeys )
{
    if( newkeys & *butonul_enter_si_f* && IsPlayerInAnyVehicle( playerid ) ) RemovePlayerFromVehicle( playerid );
    return 1;
}

Si nu prea cred ca ai asa ceva.

Mai incearca odata la acele meniuri.

Link to comment
Share on other sites

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.