24.10.2010, 10:41
Ok i have this under OnPlayerSpawn
And this:
Now i also done this for the command:
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:
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.
Код:
public OnPlayerSpawn(playerid)
{
SetPlayerCheckpoint(playerid, 1982.6150, -220.6680, -0.2432, 3.0);
}
return 1;
}
Код:
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;
}
Код:
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;
}
Код:
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.
Thanks in advance.


