#TMZ_DEBUG_RELATIONS
lStrongerNames = [gc.getPlayer(iLoopPlayer).getCivilizationShortDescription(0) for iLoopPlayer in lContacts[:iLeft] if iLoopPlayer != iPlayer]
lEqualNames = [gc.getPlayer(iLoopPlayer).getCivilizationShortDescription(0) for iLoopPlayer in lContacts[iLeft:iRight] if iLoopPlayer != iPlayer]
lWeakerNames = [gc.getPlayer(iLoopPlayer).getCivilizationShortDescription(0) for iLoopPlayer in lContacts[iRight:] if iLoopPlayer != iPlayer]
if utils.getHumanID() == iPlayer:
CyInterface().addMessage(utils.getHumanID(), True, iDuration, str("Contents of lStronger:"), "", 0, "", ColorTypes(iGreen), -1, -1, True, True)
for i in range(len(lStronger)):
CyInterface().addMessage(utils.getHumanID(), True, iDuration, str(lStrongerNames[i]) + ": " + str(lStronger[i]), "", 0, "", ColorTypes(iGreen), -1, -1, True, True)
CyInterface().addMessage(utils.getHumanID(), True, iDuration, str("Contents of lEqual:"), "", 0, "", ColorTypes(iWhite), -1, -1, True, True)
for i in range(len(lEqual)):
CyInterface().addMessage(utils.getHumanID(), True, iDuration, str(lEqualNames[i]) + ": " + str(lEqual[i]), "", 0, "", ColorTypes(iWhite), -1, -1, True, True)
CyInterface().addMessage(utils.getHumanID(), True, iDuration, str("Contents of lWeaker:"), "", 0, "", ColorTypes(iRed), -1, -1, True, True)
for i in range(len(lWeaker)):
CyInterface().addMessage(utils.getHumanID(), True, iDuration, str(lWeakerNames[i]) + ": " + str(lWeaker[i]), "", 0, "", ColorTypes(iRed), -1, -1, True, True)