ayuda, sscanf y binario...
#1

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;
}
Reply
#2

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
Reply
#3

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

Transforma int a bool.
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)