hello,
how can i check if a variable is empty?
my code(not all):
query_sql "SELECT `last_mac` FROM `login` WHERE `char_id` = " + getcharid(0) + "", .@lastmac;
the fild "last_mac" can be empty because of this
COLUMN `last_mac` VARCHAR(18) NOT NULL DEFAULT ''
But how can i check this with a if? This dont work
if (.@lastmac == )
{
bla bla
}