in the amxmodx.inc file i saw the declaretion is:
/* Calculates the md5 keysum of a string */
native md5(const szString[], md5buffer[34]);
I want to use md5 encrypted passwords so i edit the admin.sma file. The line 290 is:
Code:
else if (equal(password,g_aPassword[index]))
i changed it to :
Code:
else if (equal(md5(password),g_aPassword[index]))
But the compiler gives errors like missing argument.
How can i use the md5 function?
Thanks