So I used this tut,
http://forum.ragezone.com/f497/tutor...2011-a-825732/
came out with this to unmask the text
but I get this:Code:bool GetUserGradeIDColor(MMatchUserGradeID gid,MCOLOR& UserNameColor,char* sp_name) { if(gid == MMUG_DEVELOPER) { UserNameColor = MCOLOR(60,255, 0); return true; } else if(gid == MMUG_ADMIN) { UserNameColor = MCOLOR(0,255, 119); return true; }else if(gid == MMUG_CHAT_LIMITED) { UserNameColor = MCOLOR(61,61, 61); return true; }else if(gid == MMUG_EVENTMASTER) { UserNameColor = MCOLOR(255,196, 0); return true; }else if(gid == MMUG_VIP) { UserNameColor = MCOLOR(244,255, 36); return true; } return false; }
![]()




Reply With Quote


