[HELP]Error - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HELP]Error (
/showthread.php?tid=203582)
[HELP]Error -
buzifej - 27.12.2010
What the problem?
enum espawn
{
Float:ex,
Float:ey,
Float:ez,
Float:ex2,
Float:ey2,
Float:ez2,
interior,
emsg[128]
}
new spawns[][espawn] = {
{-410.00,1403.30,-3.00,-137.90,1681.20,200.00,0,"-PickupHunt- Pickup lerakva 'LS-air' kцzelйben! Talбld meg йs nyerj 1000$ йs 1 pontot!"},
};
Re: [HELP]Error -
Joe Staff - 27.12.2010
You'll have to give us the errors list, aside from that I see you're missing a ';' after your enum and you added a ',' after your defined variable
pawn Код:
enum espawn
{
Float:ex,
Float:ey,
Float:ez,
Float:ex2,
Float:ey2,
Float:ez2,
interior,
emsg[128]
}; //<--- You were missing a semicolon (";") here
new spawns[][espawn] =
{
{
-410.00,
1403.30,
-3.00,
-137.90,
1681.20,
200.00,
0,
"-PickupHunt- Pickup lerakva 'LS-air' kцzelйben! Talбld meg йs nyerj 1000$ йs 1 pontot!"
} //<--- You had an extra comma (",") here
};
Re: [HELP]Error -
Super-hacker - 11.03.2011
how to add