Help with my /stealfuel command please
#1

Ok i have this under OnPlayerSpawn

Код:
public OnPlayerSpawn(playerid)
{
         SetPlayerCheckpoint(playerid, 1982.6150, -220.6680, -0.2432, 3.0);
}
         return 1;
}
And this:

Код:
public OnPlayerEnterCheckpoint(playerid)
{
        GameTextForPlayer(playerid, "~r~/stealfuel",3000,5);
        SendClientMessage(playerid, RED, "Type /stealfuel To Start Stealing There Fuel!");
        }
        return 1;
}
public OnCheckpointEXIT(playerid, checkpointid)
{
    return 1;
}
Now i also done this for the command:

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
        if (strcmp("/stealfuel", cmdtext, true) == 0)
        {
        if (IsPlayerInCheckpoint(playerid))
        {
        SendClientMessage(playerid, RED, "Your Currently Stealing Fuel..Remain In The Checkpoint!");
        SetPlayerScore(playerid, GetPlayerScore(playerid)+1);
        }
        else
        {
        SendClientMessage(playerid, RED, "You Have To Be In The Checkpoint To Steal Fuel!");
        }
        return 1;
}
Now ive done what i can,Can someone please show me how to set a timer for the fuel to refill after someone steals it,And how do i stop people stealing it when its on the timer,Also i dont think its working at all i get these errors:

Код:
C:\Users\Weponz\Desktop\Server Files\gamemodes\M-SAIF.pwn(235) : error 010: invalid function or declaration
C:\Users\Weponz\Desktop\Server Files\gamemodes\M-SAIF.pwn(237) : error 010: invalid function or declaration
C:\Users\Weponz\Desktop\Server Files\gamemodes\M-SAIF.pwn(242) : error 010: invalid function or declaration
C:\Users\Weponz\Desktop\Server Files\gamemodes\M-SAIF.pwn(246) : error 010: invalid function or declaration
C:\Users\Weponz\Desktop\Server Files\gamemodes\M-SAIF.pwn(257) : error 010: invalid function or declaration
Pawn compiler 3.2.3664              Copyright © 1997-2006, ITB CompuPhase


5 Errors.
Please someone help i want players to be able to steal the fuel and if possible have a fuel count and after someone steals from a certain tank(Checkpoint) it takes 2 IRL mins for any1 to be able to steal again

Thanks in advance.
Reply


Messages In This Thread
Help with my /stealfuel command please - by <Weponz> - 24.10.2010, 10:41
Re: Help with my /stealfuel command please - by JaTochNietDan - 24.10.2010, 10:44
Re: Help with my /stealfuel command please - by <Weponz> - 24.10.2010, 10:47
Re: Help with my /stealfuel command please - by JaTochNietDan - 24.10.2010, 10:48
Re: Help with my /stealfuel command please - by <Weponz> - 24.10.2010, 10:51

Forum Jump:


Users browsing this thread: 1 Guest(s)