29.11.2009, 01:15
Hello,
When I try to compile my register system, I get the following error
On this lines of code:
Thanks for your help
When I try to compile my register system, I get the following error
Код:
error 033: array must be indexed (variable "dj")
Код:
stock AccountCheckLogin(nickname[], pwd[])
{
new tmp[255];
format(tmp, sizeof(tmp), "%s/password", nickname);
if(dj("Accounts.json", tmp) == MD5_Hash(pwd)) //THis one exactly
{
return true;
}
return false;
}

