[HELP]Error
#1

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!"},

};
Reply
#2

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
};
Reply
#3

how to add
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)