SA-MP Forums Archive
ayuda, sscanf y binario... - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: ayuda, sscanf y binario... (/showthread.php?tid=483458)



ayuda, sscanf y binario... - OTACON - 26.12.2013

buenas a todos, quiero hacer un comando / test opcion true o false para asignasela a una variable binaria pero me tira warning, que sucede?.

desde ya muchas gracias.

pawn Код:
new bool:variable;
COMMAND:test(playerid, params[]){
    if(sscanf(params, "l", params[0])) return SendClientMessage(playerid,-1,"Escribe /test [true/false}");
    variable=params[0]; //warning 213: tag mismatch
    return true;
}



Respuesta: ayuda, sscanf y binario... - MugiwaraNoLuffy - 26.12.2013

pawn Код:
variable=!!params[0];
params[0] es un integer, por lo tanto de integer a bool.
Fuente: https://sampforum.blast.hk/showthread.php?tid=216730


Respuesta: ayuda, sscanf y binario... - OTACON - 26.12.2013

hay funciono, pero me podrias decir que esta haciendo los !! ? o_O
Код:
variable=!!params[0];



Respuesta: ayuda, sscanf y binario... - MugiwaraNoLuffy - 26.12.2013

Transforma int a bool.