warning 213: tag mismatch
#10

Quote:
Originally Posted by XePloiT
Посмотреть сообщение
if this is float you need different code
pawn Код:
stock GetMyFloat(Table[],Field[],Bed[],Float:Bed2) //by Jony v1.0
{
    new query[128],myquery[128];
    format(query,sizeof(query),"SELECT %s FROM %s WHERE %s = '%f'", Field,Table,Bed,Bed2);
    mysql_query(query);
    mysql_store_result();
    mysql_fetch_row(myquery);
    mysql_free_result();
    return floatstr(myquery);
}
this is your script im just converting it :\
It should be
pawn Код:
stock Float:GetMyFloat(Table[],Field[],Bed[],Float:Bed2) //by Jony v1.0
{
    new query[128],myquery[128];
    format(query,sizeof(query),"SELECT %s FROM %s WHERE %s = '%f'", Field,Table,Bed,Bed2);
    mysql_query(query);
    mysql_store_result();
    mysql_fetch_row(myquery);
    mysql_free_result();
    return floatstr(myquery);
}
Since it's returning a float.
Reply


Messages In This Thread
warning 213: tag mismatch - by Jony_King - 28.11.2010, 09:20
Re: warning 213: tag mismatch - by LarzI - 28.11.2010, 09:23
Re: warning 213: tag mismatch - by Jony_King - 28.11.2010, 09:25
Re: warning 213: tag mismatch - by XePloiT - 28.11.2010, 09:33
Re: warning 213: tag mismatch - by Retardedwolf - 28.11.2010, 09:35
Re: warning 213: tag mismatch - by XePloiT - 28.11.2010, 09:40
Re: warning 213: tag mismatch - by Jony_King - 28.11.2010, 09:42
Re: warning 213: tag mismatch - by XePloiT - 28.11.2010, 09:52
Re: warning 213: tag mismatch - by Jony_King - 28.11.2010, 10:02
Re: warning 213: tag mismatch - by JaTochNietDan - 28.11.2010, 10:03

Forum Jump:


Users browsing this thread: 2 Guest(s)