10.02.2017, 23:41
Estude o basico de programaзгo, nгo esqueзa, int й int, float й float, double й double, bool й bool, string й string... vc nгo pode tratar todas de forma igual, vocк tem que convertelas!
retorna texto em inteiro strval(inputtext);
retorna texto em float floatstr(inputtext);
e para transformar valores em texto (FORMAT)
-----------------------------------------------------------------------------------------------------------------------------
Com isso vocк pode fazer seu code de varias formas:
retorna texto em inteiro strval(inputtext);
retorna texto em float floatstr(inputtext);
e para transformar valores em texto (FORMAT)
PHP код:
%i Integer (whole number)
%d Integer (whole number).
%s String
%f Floating-point number (Float: tag)
%c ASCII character
%x Hexadecimal number
%b Binary number
%% Literal '%'
%q Escape a text for SQLite. (Added in 0.3.7 R2)
Com isso vocк pode fazer seu code de varias formas:
PHP код:
if(dialogid == DIALOG_DEPOSITAR)
{
format(string, sizeof(string), "[INFO] Vocк digitou o numero %d", strval(inputtext));
SendClientMessage(playerid, -1, string);
return 1;
}
if(dialogid == DIALOG_DEPOSITAR)
{
format(string, sizeof(string), "[INFO] Vocк digitou o numero %s", inputtext);
SendClientMessage(playerid, -1, string);
return 1;
}
...