CompareAuth(id1, id2) { new auth1[32] new auth2[32]; get_user_authid(id1, auth1, 31); get_user_authid(id2, auth2, 31); if (equal(auth1, auth2)) { // They're equal } else { // They're not equal } }