Error vip - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Error vip (
/showthread.php?tid=436835)
Error vip -
DerickClark - 13.05.2013
i get vip errors
Код:
error 001: expected token: ";", but found "new"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Код:
new VipName[6][24] =
{
{"Player"}, // Vip-level 0
{"Vip"}, // Vip-level 1
{"Gold Vip"}, // Vip-level 2
{"Silver Vip"}, // Vip-level 3
{"Co-Owner Vip"}, // Vip-level 4
{"Owner Vip"} // Vip-level 5
}
Re: Error vip -
Krakuski - 13.05.2013
You forgot a ; at the end of it..
pawn Код:
new VipName[6][24] =
{
{"Player"}, // Vip-level 0
{"Vip"}, // Vip-level 1
{"Gold Vip"}, // Vip-level 2
{"Silver Vip"}, // Vip-level 3
{"Co-Owner Vip"}, // Vip-level 4
{"Owner Vip"} // Vip-level 5
}; //<=======
Re: Error vip -
DerickClark - 13.05.2013
Thanks.
i didnt see that.
Re: Error vip -
Krakuski - 13.05.2013
No Problem