How can i change an authid from users.ini (i mean replace with another) with a admin comand...
i tried this stock for search the authid but is not working ...
PHP Code:
stock File_Authid(authid[],line[],len)
{
new Buffer[128],Line,TxtLen
while(read_file(users_file,Line++,Buffer,127,TxtLen))
if(containi(Buffer,authid) != -1)
{
copy(line,len,Buffer)
return 1
}
return 0
}