27.09.2012, 02:45
please someone help me ithink ido everything good but steal got errors
Code
Quote:
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(23) : error 017: undefined symbol "cmd" D:\Sa-mp test server\filterscripts\robbanksystem.pwn(53) : error 029: invalid expression, assumed zero D:\Sa-mp test server\filterscripts\robbanksystem.pwn(55) : error 001: expected token: ";", but found "-identifier-" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 3 Errors. |
PHP код:
//By Mika Adel/Mode. Mika Adel
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#include <zcmd>
#define COLOR_WHITE 0xFFFFFFAA
#define COLOR_ORANGE 0xFFA500AA
#define COLOR_GREY 0xAFAFAFAA
new robbing[MAX_PLAYERS];
new alreadyrobbed[MAX_PLAYERS];
forward bankrob(playerid);
forward robbedoff(playerid);
enum pInfo
{
pCash
};
new PlayerInfo[MAX_PLAYERS][pInfo];
public bankrob(playerid)
if(strcmp(cmd, "/robbank", true) == 0)
{
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, 2308.8071,-13.2485,26.7422)) // 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;
}
}
forward bankrob(playerid);
forward robbedoff(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;
}
public robbedoff(playerid)
{
alreadyrobbed[playerid] = 0;
SendClientMessage(playerid, COLOR_WHITE, " You can now rob the bank again");
return 1;
}