Code:
if (WithDetections == 1) {
char* ModderTemp = new char[500];
INT A_Level = PLAYER::GET_PLAYER_MAX_ARMOUR(i);
INT H_Level = ENTITY::GET_ENTITY_HEALTH(i);
strcpy(ModderTemp, PLAYER::GET_PLAYER_NAME(i));
if (A_Level > 51 && !A_Level == 100 || H_Level > 328 )
strcat(ModderTemp, " ~r~[M]");
if (I_R_G(1582011 + (306 * i)) || I_R_G(1582015 + (306 * i)) || I_R_G(1582915 + (306 * i)) || I_R_G(1582018 + (306 * i)) || I_R_G(1582019 + (306 * i)))
strcat(ModderTemp, " ~o~[M]");
if (GodModeCheck(i))
strcat(ModderTemp, " ~r~[G]");
if (Player_Friend(i))
strcat(ModderTemp, " ~b~[F]");
if (isNinja(i))
strcat(ModderTemp, " ~y~[NINJA]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 101)
strcat(ModderTemp, " ~c~[LEGACY.P]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 777)
strcat(ModderTemp, " ~c~[LEGACY.C]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 46890)
strcat(ModderTemp, " ~c~[CELESTIAL XIII]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 1337)
strcat(ModderTemp, " ~c~[ENFORCER.C]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 350)
strcat(ModderTemp, " ~c~[VOLTAGE.C]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 265)
strcat(ModderTemp, " ~c~[POTHEAD]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 3412)
strcat(ModderTemp, " ~c~[GUARDIAN.C]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 571)
strcat(ModderTemp, " ~c~[SILKROAD.C]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 2020)
strcat(ModderTemp, " ~c~[ENFORCER.A]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 3328)
strcat(ModderTemp, " ~c~[DEATHRIDER.C]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 17526)
strcat(ModderTemp, " ~c~[SAVAGE CE]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 666)
strcat(ModderTemp, " ~c~[420 MENU]");
if (PLAYER::GET_PLAYER_MAX_ARMOUR(i) == 1734)
strcat(ModderTemp, " ~c~[ADRENALINE]");
if (I_R_G(1582015 + (306 * i)) == 6401328)
strcat(ModderTemp, " ~c~[KARMA V]");
if (I_R_G(1582015 + (306 * i)) == 5461328)
strcat(ModderTemp, " ~c~[SVT.C]");
if (I_R_G(1582018 + (306 * i)) == 5461587)
strcat(ModderTemp, " ~c~[S]");
if (I_R_G(1582010 + (306 * i)) == 1337)
strcat(ModderTemp, " ~c~[LUXURY ENGINE]");
if (I_R_G(1582015 + (306 * i)) == 2300)
strcat(ModderTemp, " ~c~[XE ADMIN]");
if (I_R_G(0x1823BF + (0x132 * i)) == 0x4c7e1)
strcat(ModderTemp, " ~c~[SRB 3.0 CRACK]");
if (NETWORK::NETWORK_IS_PLAYER_TALKING(i)) {
DrawText(ModderTemp, 0, PixelX(60), PixelY(44) + (PixelY(30) * Current), 0.42, 0.42, RGBA(0, 255, 0, 255), 0, 0, 0);
}
else if (!NETWORK::NETWORK_IS_PLAYER_TALKING(i)) {
DrawText(ModderTemp, 0, PixelX(60), PixelY(44) + (PixelY(30) * Current), 0.42, 0.42, RGBA(0, 0, 180, 255), 0, 0, 0);
}
else if (NETWORK::NETWORK_IS_PLAYER_MUTED_BY_ME(i)) {
DrawText(ModderTemp, 0, PixelX(60), PixelY(44) + (PixelY(30) * Current), 0.42, 0.42, RGBA(198, 194, 88, 255), 0, 0, 0);
}
Current++;
delete[] ModderTemp;
}
}
}
}