float and datetime (mysql)
#1

Float:

I want the gasoline displayed in hundredths (for example 50,48L)

format (strb, sizeof (strb), "~ y ~ Fuel: ~ b ~% d", gasoline);
TextDrawSetString (Benzin [playerid], string);

how to display? % f or% 2.f?

DATATIME:

I save the date in the database for a period of months using NOW () - it is saved perfectly, just the question of how to display in the game? -% s? - does not exit,% f is also ..

i-number, s -text, f- with floating point. And what about DATATIME in mysql? -% s,% i, or what?
Reply
#2

for example: if benzin 50L then it is displayed 50L,
IF 50.06L then it is displayed: 457675673465783465L ....
Reply
#3

you have to declare the variable like this

new Float:Benzin[MAX_PLAYERS];

and you can simply use "%.2f"
Reply
#4

Quote:
Originally Posted by EvgeniyHostel1992
Посмотреть сообщение
Float:

I want the gasoline displayed in hundredths (for example 50,48L)

format (strb, sizeof (strb), "~ y ~ Fuel: ~ b ~% d", gasoline);
TextDrawSetString (Benzin [playerid], string);

how to display? % f or% 2.f?

DATATIME:

I save the date in the database for a period of months using NOW () - it is saved perfectly, just the question of how to display in the game? -% s? - does not exit,% f is also ..

i-number, s -text, f- with floating point. And what about DATATIME in mysql? -% s,% i, or what?


%.1f - 0.0
%.2f - 0.00
%.3f - 0.000
%.4f - 0.0000
etc....

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)