Jump to content

Recommended Posts

Posted

Salutare.Am si eu nevoie de ajutor pentru a crea comanda "/saveveh" ..am luat un Gm pentru editaré si masinile factiunilor le are salvate in baza de date.sa nu stau sa schimb coordonatele fiecărei mașini. Tks

Posted
  • Nu se cer scripturi aici !

 

 

Cand eram mic, eram mare zdreanta Eu fut*am femei, vara miu umbla prin casa

LINIE-3.gif.f4c03161035b1ce4c431755a78bed2ae.gif.aacf6e45f3894429f134b2e37f997f6f.gif

Discord: ㍿ Luca лол㍿ツ#5482

Sunt de moda veche inca mai cred in Respect!

LINIE-3.gif.f4c03161035b1ce4c431755a78bed2ae.gif.bcf86dadd9b43351554dd738f470725f.gif

 

  • 2 years later...
Posted

CMD:saveveh(playerid, params[])

{

    if (!IsPlayerInAnyVehicle(playerid))

    {

        SendClientMessage(playerid, COLOR_RED, "You are not in a vehicle.");

        return 1;

    }

 

    new Float:x, Float:y, Float:z;

    new vehicleid = GetPlayerVehicleID(playerid);

 

    if (GetVehiclePos(vehicleid, x, y, z))

    {

        SendClientMessage(playerid, COLOR_GREEN, "Vehicle coordinates saved.");

        format(string, sizeof(string), "Vehicle ID: %d, X: %.4f, Y: %.4f, Z: %.4f", vehicleid, x, y, z);

        SendClientMessage(playerid, COLOR_LIGHTBLUE, string);

    }

    else

    {

        SendClientMessage(playerid, COLOR_RED, "Failed to retrieve vehicle coordinates.");

    }

 

    return 1;

}

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • 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.