Jump to content
  • 0

Question

Posted

Am nevoie de o comanda care sa alimenteze toate masinile dar nush cum sa o fac am luat ceva exemple si am modificat ce am putut dar nu mi-a reusit uite un exemplu dar acest exemplu alimenteaza doar masina in care esti si as vrea sa alimentez toate masinile:

// Refuel the player's vehicle

COMMAND:fuel(playerid, params[])

{

// Setup local variables

new vID;

// Send the command to all admins so they can see it

SendAdminText(playerid, "/fuel", params);

// Check if the player has logged in

if (APlayerData[playerid][LoggedIn] == true)

{

// Check if the player's admin-level is at least 1

if (APlayerData[playerid][PlayerLevel] >= 1)

{

// Check if the player is inside a vehicle

if (IsPlayerInAnyVehicle(playerid))

{

    // Get the vehicleid

    vID = GetPlayerVehicleID(playerid);

    // Refuel the vehicle

    AVehicleData[vID][Fuel] = MaxFuel;

// Let the player know about it

SendClientMessage(playerid, 0x00FF00FF, "Your vehicle is refuelled");

}

else

SendClientMessage(playerid, 0x00FF00FF, "You're not driving a vehicle");

}

else

    return 0;

}

else

    return 0;

Cum as putea modifica sa alimentez toate masinile???

560x95_F01616_1625F2_030303_000000.png

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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.