23.06.2013, 12:07
try to change this
dini_IntSet(file, "Key", PlayerInfo[playerid][pKey] = udb_hash(inputtext));
to
and login from
new tmp;
tmp = dini_Int(file, "Key");
if(udb_hash(inputtext) != tmp)
to
dini_IntSet(file, "Key", PlayerInfo[playerid][pKey] = udb_hash(inputtext));
to
Код:
dini_IntSet(file, "Key", udb_hash(inputtext));
new tmp;
tmp = dini_Int(file, "Key");
if(udb_hash(inputtext) != tmp)
to
Код:
if(udb_hash(inputtext) != dini_Int(file, "Key"))