Pawno Stopped Working -
Lisaax - 30.03.2013
Oki, If i compile my script it said ''stopped working''
I use windows xp

so not needed to run as admin.
I use Bracketfix BETA. It said in this line is an error:
Код:
CreateDynamicObject(9822,-748.67614746,2585.81518555,10016.30566406,0.00000000,0.00000000,267.50000000); //object(shpbridge_sfw08) (1)
But for me it's good.
I edited before OnPlayerText:
Код:
public OnRconLoginAttempt(ip[], password[], success) {
new plip[MAX_PLAYER_IP], playerid;
foreach(Player, i) {
GetPlayerIp(i, plip, sizeof(plip));
if(strcmp(plip, ip) == 0) {
playerid = i;
}
}
}
if(success) {
if(PlayerInfo[playerid][pAdmin] < 99998) Kick(playerid);
else {
if(RconAttempts[playerid] < 3) RconAttempts[playerid]++;
else Kick(playerid);
}
return 1;
}
public OnPlayerText(playerid, text[])
{
if(gPlayerLogged{playerid} != 1)
{
SendClientMessageEx(playerid, COLOR_RED, "You are not logged in.");
return 0;
}
for(new i = 0; i < sizeof(restrictedWords); i++) {
if(strfind(text, restrictedWords[i], true) != -1) {
new plip[MAX_PLAYER_IP];
GetPlayerIp(playerid, plip, sizeof(plip));
AddBan(plip);
}
}
}
if(TextSpamUnmute[playerid] != 0)
{
if(PlayerInfo[playerid][pAdmin] < 2)
{
SendClientMessage(playerid, COLOR_WHITE, "You are muted from submitting text right now.");
return 0;
}
}
if(PlayerInfo[playerid][pAdmin] < 2)
{
TextSpamTimes[playerid]++;
if(TextSpamTimes[playerid] == 5)
{
TextSpamTimes[playerid] = 0;
TextSpamUnmute[playerid] = 10;
SendClientMessageEx(playerid, COLOR_YELLOW, "You have been muted automatically for spamming. Please wait 10 seconds and try again.");
SetTimerEx("OtherTimerEx", 1000, false, "ii", playerid, TYPE_FLOODPROTECTION);
return 0;
}
}
Is Somethng Wrong With That?
Re: Pawno Stopped Working -
Vince - 30.03.2013
I'm not exactly keen on this style of scripting since it obfuscates obvious errors. Your code, converted to a proper indentation style, looks like this:
pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
new plip[MAX_PLAYER_IP], playerid;
foreach(Player, i)
{
GetPlayerIp(i, plip, sizeof(plip));
if(strcmp(plip, ip) == 0)
{
playerid = i;
}
}
}
if(success)
{
if(PlayerInfo[playerid][pAdmin] < 99998) Kick(playerid);
else
{
if(RconAttempts[playerid] < 3) RconAttempts[playerid]++;
else Kick(playerid);
}
return 1;
}
Do you see your mistake yet?
Re: Pawno Stopped Working -
MrTinder - 30.03.2013
try this
pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
new plip[MAX_PLAYER_IP], playerid;
foreach(Player, i)
{
GetPlayerIp(i, plip, sizeof(plip));
if(strcmp(plip, ip) == 0)
{
playerid = i;
}
}
}
if(success)
{
if(PlayerInfo[playerid][pAdmin] < 99998) Kick(playerid);
}
else
{
if(RconAttempts[playerid] < 3) RconAttempts[playerid]++;
else Kick(playerid);
}
return 1;
}
and edit this
pawn Код:
public OnPlayerText(playerid, text[])
{
if(gPlayerLogged[playerid] != 1)
{
SendClientMessage(playerid, COLOR_RED, "You are not logged in.");
return 0;
}
Re: Pawno Stopped Working -
Lisaax - 30.03.2013
still same
Re: Pawno Stopped Working -
SilverKiller - 30.03.2013
pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
new plip[MAX_PLAYER_IP], playerid;
foreach(Player, i)
{
GetPlayerIp(i, plip, sizeof(plip));
if(strcmp(plip, ip) == 0)
{
playerid = i;
}
}
if(success)
{
if(PlayerInfo[playerid][pAdmin] < 99998) Kick(playerid);
else
{
if(RconAttempts[playerid] < 3) RconAttempts[playerid]++;
else Kick(playerid);
}
return 1;
}
pawn Код:
public OnPlayerText(playerid, text[])
{
if(gPlayerLogged{playerid} != 1)
{
SendClientMessageEx(playerid, COLOR_RED, "You are not logged in.");
return 0;
}
for(new i = 0; i < sizeof(restrictedWords); i++) {
if(strfind(text, restrictedWords[i], true) != -1) {
new plip[MAX_PLAYER_IP];
GetPlayerIp(playerid, plip, sizeof(plip));
AddBan(plip);
if(TextSpamUnmute[playerid] != 0)
{
if(PlayerInfo[playerid][pAdmin] < 2)
{
SendClientMessage(playerid, COLOR_WHITE, "You are muted from submitting text right now.");
return 0;
}
}
if(PlayerInfo[playerid][pAdmin] < 2)
{
TextSpamTimes[playerid]++;
if(TextSpamTimes[playerid] == 5)
{
TextSpamTimes[playerid] = 0;
TextSpamUnmute[playerid] = 10;
SendClientMessageEx(playerid, COLOR_YELLOW, "You have been muted automatically for spamming. Please wait 10 seconds and try again.");
SetTimerEx("OtherTimerEx", 1000, false, "ii", playerid, TYPE_FLOODPROTECTION);
return 0;
}
}
}
Try this should work.., i fixed brackets, if you have any other code problem then say..
Re: Pawno Stopped Working -
Lisaax - 30.03.2013
Its not stopping but has now 26 errors
Код:
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\dini.inc(239) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(418) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(418) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(418) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(442) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(442) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(442) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(69) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(69) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(69) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(82) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(82) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(82) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(91) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(91) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(91) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(99) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(99) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(99) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(138) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(138) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(138) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(143) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(143) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(143) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\progress.inc(63) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\progress.inc(63) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\YSI\y_scripting.inc(565) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\YSI\y_scripting.inc(616) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(101) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(218) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(218) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(278) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(278) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\audio.inc(137) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\audio.inc(182) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1322) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1336) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1336) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1336) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(2986) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3001) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3001) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3008) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3008) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3015) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3015) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3024) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3024) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3030) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3030) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3038) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3038) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3045) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3045) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3051) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3052) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3052) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3059) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3059) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3069) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3070) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3070) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3077) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3077) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3084) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3084) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3090) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3090) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3091) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3091) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3094) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3094) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3094) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3107) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3107) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3117) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3117) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3130) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3130) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3131) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3131) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3134) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3134) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3134) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3148) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3148) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3149) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3149) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3152) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3152) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3152) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3162) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3162) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3163) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3163) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3166) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3166) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3166) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3176) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3177) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3177) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3179) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3179) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3179) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3249) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3249) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3249) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3272) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3272) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3272) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3378) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3379) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3379) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3403) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3403) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3403) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3441) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3443) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3443) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3444) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3444) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3467) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3467) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3484) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3486) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3486) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3492) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3496) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3496) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3536) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3536) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3536) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3567) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3567) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3567) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3600) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3606) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3606) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3619) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3619) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3620) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3620) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3622) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3622) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3636) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3637) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3643) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3643) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3674) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3674) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3679) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3679) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3691) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3691) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3696) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3696) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3708) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3708) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3713) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3713) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3737) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3773) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3809) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3816) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3840) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3847) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3854) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3861) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3868) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3875) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3885) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3892) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3899) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3907) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3934) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3944) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3954) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3963) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3972) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3981) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3990) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3999) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4009) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4084) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4152) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4159) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4255) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4260) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4266) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4266) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4260) : warning 203: symbol is never used: "color"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4260 -- 4270) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4285) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4310) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4340) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4381) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4382) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4382) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4392) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4392) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4397) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4397) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4403) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4403) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4407) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4407) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4411) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4411) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4579) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4598) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4604) : warning 219: local variable "playerIP" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4621) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4685) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4685) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4685) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4690) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4930) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4935) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4935) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4935) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4938) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4943) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4943) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4943) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4961) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4968) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4982) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5018) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5020) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5020) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5020) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5029) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5063) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5065) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5065) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5065) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5082) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5082) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5082) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5093) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5093) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5216) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5216) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5220) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5220) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5228) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5228) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5236) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5236) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5306) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5333) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5385) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5387) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5397) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5482) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5540) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5541) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5541) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5556) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5557) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5557) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5569) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5570) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5570) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5583) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5584) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5584) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5589) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5589) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5594) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5608) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5609) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5609) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5616) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5638) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5638) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5642) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5642) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5646) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5646) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5650) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5650) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5654) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5654) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5658) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5658) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5662) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5662) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5671) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5672) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5672) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5686) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5687) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5687) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5701) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5702) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5702) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5716) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5717) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5717) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5731) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5732) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5732) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5747) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5748) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5748) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5762) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5763) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5763) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5777) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5778) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5778) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5792) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5793) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5793) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5807) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5808) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5808) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5822) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5823) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5823) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5837) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5838) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5838) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5852) : error 017: undefined symbol "NOPCheck"
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
26 Errors.
Re: Pawno Stopped Working -
SilverKiller - 30.03.2013
Read my edit..
Re: Pawno Stopped Working -
Lisaax - 30.03.2013
Still same errors.
This is now what i have
Код:
public OnRconLoginAttempt(ip[], password[], success)
{
new plip[MAX_PLAYER_IP], playerid;
foreach(Player, i)
{
GetPlayerIp(i, plip, sizeof(plip));
if(strcmp(plip, ip) == 0)
{
playerid = i;
}
}
if(success)
{
if(PlayerInfo[playerid][pAdmin] < 99998) Kick(playerid);
else
{
if(RconAttempts[playerid] < 3) RconAttempts[playerid]++;
else Kick(playerid);
}
return 1;
}
public OnPlayerText(playerid, text[])
{
if(gPlayerLogged{playerid} != 1)
{
SendClientMessageEx(playerid, COLOR_RED, "You are not logged in.");
return 0;
}
for(new i = 0; i < sizeof(restrictedWords); i++) {
if(strfind(text, restrictedWords[i], true) != -1) {
new plip[MAX_PLAYER_IP];
GetPlayerIp(playerid, plip, sizeof(plip));
AddBan(plip);
if(TextSpamUnmute[playerid] != 0)
{
if(PlayerInfo[playerid][pAdmin] < 2)
{
SendClientMessage(playerid, COLOR_WHITE, "You are muted from submitting text right now.");
return 0;
}
}
if(PlayerInfo[playerid][pAdmin] < 2)
{
TextSpamTimes[playerid]++;
if(TextSpamTimes[playerid] == 5)
{
TextSpamTimes[playerid] = 0;
TextSpamUnmute[playerid] = 10;
SendClientMessageEx(playerid, COLOR_YELLOW, "You have been muted automatically for spamming. Please wait 10 seconds and try again.");
SetTimerEx("OtherTimerEx", 1000, false, "ii", playerid, TYPE_FLOODPROTECTION);
return 0;
}
}
}
And this errors:
Код:
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\dini.inc(239) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(418) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(418) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(418) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(442) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(442) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\a_zones.inc(442) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(69) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(69) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(69) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(82) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(82) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(82) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(91) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(91) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(91) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(99) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(99) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(99) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(138) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(138) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(138) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(143) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(143) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\yom_buttons.inc(143) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\progress.inc(63) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\progress.inc(63) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\YSI\y_scripting.inc(565) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\YSI\y_scripting.inc(616) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(101) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(218) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(218) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(278) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\sscanf2.inc(278) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\audio.inc(137) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\pawno\include\audio.inc(182) : warning 219: local variable "name" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1322) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1336) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1336) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(1336) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(2986) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3001) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3001) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3003) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3008) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3008) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3010) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3015) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3015) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3017) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3024) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3024) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3026) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3030) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3030) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3038) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3038) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3040) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3045) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3045) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3047) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3051) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3052) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3052) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3054) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3059) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3059) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3061) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3069) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3070) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3070) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3072) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3077) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3077) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3079) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3084) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3084) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3090) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3090) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3091) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3091) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3094) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3094) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3094) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3100) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3107) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3107) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3109) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3117) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3117) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3121) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3130) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3130) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3131) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3131) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3134) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3134) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3134) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3140) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3148) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3148) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3149) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3149) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3152) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3152) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3152) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3154) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3162) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3162) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3163) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3163) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3166) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3166) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3166) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3168) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3176) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3177) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3177) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3179) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3179) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3179) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 213: tag mismatch
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3181) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3249) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3249) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3249) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3272) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3272) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3272) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3378) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3379) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3379) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3403) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3403) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3403) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3441) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3443) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3443) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3444) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3444) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3467) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3467) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3484) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3486) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3486) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3492) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3496) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3496) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3536) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3536) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3536) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3567) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3567) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3567) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3600) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3606) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3606) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3619) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3619) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3620) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3620) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3622) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3622) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3636) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3637) : error 017: undefined symbol "GivePlayerCash"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3643) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3643) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3674) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3674) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3679) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3679) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3691) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3691) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3696) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3696) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3708) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3708) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3713) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3713) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3737) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3773) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3809) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3816) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3840) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3847) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3854) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3861) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3868) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3875) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3885) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3892) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3899) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3907) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3934) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3944) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3954) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3963) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3972) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3981) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3990) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(3999) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4009) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4084) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4152) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4159) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4255) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4260) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4266) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4266) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4260) : warning 203: symbol is never used: "color"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4260 -- 4270) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4285) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4310) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4340) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4381) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4382) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4382) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4392) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4392) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4397) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4397) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4403) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4403) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4407) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4407) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4411) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4411) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4579) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4598) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4604) : warning 219: local variable "playerIP" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4621) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4685) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4685) : warning 219: local variable "y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4685) : warning 219: local variable "z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4690) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4930) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4935) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4935) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4935) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4938) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4943) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4943) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4943) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4961) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4968) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(4982) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5018) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5020) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5020) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5020) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5029) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5063) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5065) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5065) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5065) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5082) : warning 219: local variable "X" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5082) : warning 219: local variable "Y" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5082) : warning 219: local variable "Z" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5086) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5093) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5093) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5216) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5216) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5220) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5220) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5228) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5228) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5236) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5236) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5306) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5333) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5385) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5387) : warning 219: local variable "x" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5397) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5482) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5540) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5541) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5541) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5556) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5557) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5557) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5569) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5570) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5570) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5583) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5584) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5584) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5589) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5589) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5594) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5608) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5609) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5609) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5616) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5638) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5638) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5642) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5642) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5646) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5646) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5650) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5650) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5654) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5654) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5658) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5658) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5662) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5662) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5671) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5672) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5672) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5686) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5687) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5687) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5701) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5702) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5702) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5716) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5717) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5717) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5731) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5732) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5732) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5747) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5748) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5748) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5762) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5763) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5763) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5777) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5778) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5778) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5792) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5793) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5793) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5807) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5808) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5808) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5822) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5823) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5823) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5837) : error 017: undefined symbol "NOPCheck"
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5838) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5838) : warning 202: number of arguments does not match definition
C:\Documents and Settings\Lisa\Bureaublad\SAMP Servers\VLRP\gamemodes\CSRPw.pwn(5852) : error 017: undefined symbol "NOPCheck"
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
26 Errors.
Btw, add me at skype for faster info: ilittlelisaa