[Ajuda] inputtext
#3

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)
PHP код:
%i    Integer (whole number)
%
d    Integer (whole number).
%
s    String
%f    Floating-point number (Floattag)
%
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(stringsizeof(string), "[INFO] Vocк digitou o numero %d"strval(inputtext)); 
     
SendClientMessage(playerid, -1string); 
     return 
1

if(
dialogid == DIALOG_DEPOSITAR

     
format(stringsizeof(string), "[INFO] Vocк digitou o numero %s"inputtext); 
     
SendClientMessage(playerid, -1string); 
     return 
1
}  
... 
Reply


Messages In This Thread
inputtext - by Luiiiz - 10.02.2017, 23:29
Re: inputtext - by johntrybescripter - 10.02.2017, 23:37
Programando e Relaxando! - by RazorGuigo - 10.02.2017, 23:41
Re: inputtext - by Luiiiz - 10.02.2017, 23:57

Forum Jump:


Users browsing this thread: 1 Guest(s)