Is this correct? - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Is this correct? (
/showthread.php?tid=345167)
Is this correct? -
sampmark05 - 24.05.2012
Im getting so much error about this CMD.
Код:
CMD:robbank(playerid, params[])
{
if(IsPlayerConnected(playerid))
{
if(robbing[playerid] == 1)
{
SendClientMessage(playerid, COLOR_GREY, " You are already robbing the bank, please slow down");
return 1;
}
if(alreadyrobbed[playerid] == 1)
{
SendClientMessage(playerid, COLOR_WHITE, "You already robbed the bank! Wait 1 hour.");
return 1;
}
if(!IsPlayerInRangeOfPoint(playerid, 5.0, 2314.8577,-16.6575,26.7496)) // Change X Y Z to the location you want
{
SendClientMessage(playerid, COLOR_GREY, " You are not at the bank !");
return 1;
}
SendClientMessage(playerid, COLOR_WHITE, " You started to rob the bank, This will take 10 minutes");
SetTimerEx("bankrob", 600000, false, "i", playerid);
robbing[playerid] = 1;
SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
SendClientMessageToAll(COLOR_WHITE, " The bank is currently getting robbed.");
SendClientMessageToAll(COLOR_WHITE, " We are currently waiting for the cops");
SendClientMessageToAll(COLOR_WHITE, " We will report more when we get more information");
SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
return 1;
}
}
Re: Is this correct? -
Jonny5 - 24.05.2012
post the errors!
Re: Is this correct? -
sampmark05 - 24.05.2012
: error 017: undefined symbol "alreadyrobbed"
(1126

: warning 215: expression has no effect
(1126

: error 001: expected token: ";", but found "]"
(1126

: error 029: invalid expression, assumed zero
(1126

: fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
Код:
forward bankrob(playerid);
public bankrob(playerid)
{
SendClientMessage(playerid, COLOR_WHITE, " Your finished robbing the bank, Run now");
GivePlayerMoney(playerid, 500000);
PlayerInfo[playerid][pCash] = PlayerInfo[playerid][pCash]+500000;
alreadyrobbed[playerid] = 1;
robbing[playerid] = 0;
SetTimerEx("robbedoff", 3600000, false, "i", playerid);
SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
SendClientMessageToAll(COLOR_WHITE, " It looks like the bankrobber got the cash.");
SendClientMessageToAll(COLOR_WHITE, " The cops is currently waiting outside.");
SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
return 1;
}
Re: Is this correct? -
Ballu Miaa - 24.05.2012
Add this on the toppest part of your Game mode.
pawn Код:
new alreadyrobbed[MAX_PLAYERS];
Re: Is this correct? -
sampmark05 - 24.05.2012
Thanks u get my +REP