[FilterScript] [FS] Fuel System with Display
#20

No, I'm using this after a lot of modifications and adjustments (so I won't release it because it works only on my server). To fix it:

- replace whole OnPlayerCommandText with this:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
  new cmd[256];
    if(strcmp(cmd, "/fill", true) == 0)
    {
        if(IsPlayerInAnyVehicle(playerid))
        {
                if(IsAtGasStation(playerid))
                {
                    // nдhste Tankstelle finden
                    new Float:olddistance = 999999;
                    new Float:newdistance;
                    new closest = -1;
                    new Float:GasX,Float:GasY,Float:GasZ;
                    for (new i = 0; i < sizeof(gGasStationLocations); i++)
                    {
                        GasX = gGasStationLocations[i][0];
                        GasY = gGasStationLocations[i][1];
                        GasZ = gGasStationLocations[i][2];
                        newdistance = GetDistanceBetweenPlayerToPoint(playerid,GasX,GasY,GasZ);
                        if (newdistance < olddistance)
                        {
                          olddistance = newdistance;
                            closest = i;
                        }
                    }
                    GameTextForPlayer(playerid,"~w~~n~~n~~n~~n~~n~~n~~n~~n~~n~Refuel! Please wait....",2000,3);
                    SetTimer("Fillup",RefuelWait,0);
                    gGasBiz[playerid] = closest+12;
                    Refueling[playerid] = 1;
                }
                else
                {
                    SendClientMessage(playerid,COLOR_GREY,"  You are not an a Gas Station!");
                }
            }
    }
    return 0;
}
- under OnFilterScriptInit replace
pawn Код:
BenzinUpdatetimer = SetTimer("BenzinUpdate", 1, 1);
with:
pawn Код:
BenzinUpdatetimer = SetTimer("BenzinUpdate", 1000, 1);
(1ms timer X/ WTF man?)
Then it should work KINDA correctly (there are more bugs...) If commands are still bugged, tell me.
Reply


Messages In This Thread
[FS] Fuel System with Display - by Kane_Phoenix - 07.01.2009, 12:42
Re: [FS] Fuel System with Display - by sebihunter - 07.01.2009, 13:17
Re: [FS] Fuel System with Display - by Jese - 07.01.2009, 13:18
Re: [FS] Fuel System with Display - by zhemphyr - 07.01.2009, 13:26
Re: [FS] Fuel System with Display - by znake - 04.02.2009, 13:20
Re: [FS] Fuel System with Display - by eXchainZ-FoReVeR - 06.02.2009, 17:16
Re: [FS] Fuel System with Display - by 1337pr0 - 06.02.2009, 17:19
Re: [FS] Fuel System with Display - by Homerman - 06.02.2009, 17:59
Re: [FS] Fuel System with Display - by G_ROW_Chez - 08.02.2009, 11:35
Re: [FS] Fuel System with Display - by oOChazyBoyOo - 08.02.2009, 12:05
Re: [FS] Fuel System with Display - by g@k - 08.02.2009, 12:26
Re: [FS] Fuel System with Display - by wollodya - 09.02.2009, 06:47
Re: [FS] Fuel System with Display - by Rambo_NL - 04.03.2009, 14:19
Re: [FS] Fuel System with Display - by Maikel - 04.03.2009, 19:59
Re: [FS] Fuel System with Display - by Dujma - 04.03.2009, 20:03
Re: [FS] Fuel System with Display - by ICECOLDKILLAK8 - 04.03.2009, 20:15
Re: [FS] Fuel System with Display - by KenniH - 10.04.2009, 15:10
Re: [FS] Fuel System with Display - by DiDok - 10.04.2009, 15:18
Re: [FS] Fuel System with Display - by KenniH - 10.04.2009, 15:35
Re: [FS] Fuel System with Display - by DiDok - 10.04.2009, 18:51
Re: [FS] Fuel System with Display - by T RP [Tomorrows-RP.co.uk] - 10.04.2009, 20:30
Re: [FS] Fuel System with Display - by KenniH - 10.04.2009, 22:00
Re: [FS] Fuel System with Display - by DiDok - 11.04.2009, 08:59
Re: [FS] Fuel System with Display - by carlos- - 24.05.2009, 04:14
Re: [FS] Fuel System with Display - by v0nz - 24.05.2009, 06:37
Re: [FS] Fuel System with Display - by Mobst3r111 - 26.05.2009, 17:17
Re: [FS] Fuel System with Display - by Gozerr - 28.05.2009, 12:24
Re: [FS] Fuel System with Display - by mihaitza55 - 20.03.2010, 19:26
Re: [FS] Fuel System with Display - by [MWR]Blood - 20.03.2010, 19:26
Re: [FS] Fuel System with Display - by markokk888 - 20.04.2010, 17:35
Re: [FS] Fuel System with Display - by DiDok - 20.04.2010, 17:43
Re: [FS] Fuel System with Display - by shok95 - 20.04.2010, 19:11
Re: [FS] Fuel System with Display - by Scenario - 20.04.2010, 20:00
Re: [FS] Fuel System with Display - by Cesar Mattos - 29.08.2010, 01:10

Forum Jump:


Users browsing this thread: 3 Guest(s)