31.12.2014, 10:51
Read the error message. "Default:" needs to be in a switch.
Example:
Not entirely sure about logstring, you could maybe try moving this
down just above the logstring error.
The last warning, again im not sure, but you can try removing
Like this
Example:
pawn Код:
switch(Something)
{
case 1:
{
// Do something
}
case 2:
{
// Do something
}
default:
{
// Do something
}
pawn Код:
new logstring[128];
The last warning, again im not sure, but you can try removing
pawn Код:
query[128]
pawn Код:
new field[256], DBResult:result;
result = db_query(MailDB, "SELECT * FROM `Letters`"); // line 124464
if (db_num_rows(result) != 0)
{