Ich weiß jetzt nich obs was bringt aber du gehst den Index 33 statt 32 mal durch :
CPP Code: for(iIndex = 0; iIndex <= 32; iIndex++)
und das solltest du am besten um ändern:
CPP Code: while(HackAktiv == TRUE) in while(HackAktiv)
sieht aus ob du Anfänger wärst
und noch ein Kritikpunkt ist das dein Quelltext nur sehr schwer zu lesen ist weil Absätze und Verschiebungen fehlen
Bsp:
Du:
CPP Code: void GetBestTarget(void) { for(int iLoop = 1; iLoop <= 32; iLoop++) { if(iLoop == 1) { iTargetID = iLoop; } if ( Players[iLoop].Integers.iHealth > 0 && Players[iLoop].Integers.iHealth <= 100 ) { if ( LocalPlayer.Integers.iTeam != Players[iLoop].Integers.iTeam) { if(GetDistance(iLoop) < GetDistance(iTargetID)) { iTargetID = iLoop; TargetChanged = TRUE; } if (GetDistance(iLoop) > GetDistance(iTargetID)) { TargetChanged = FALSE; } } } } }
Übersichtlicher:
CPP Code: void GetBestTarget(void) { for(int iLoop = 1; iLoop <= 32; iLoop++) { if(iLoop == 1) { iTargetID = iLoop; } if ( Players[iLoop].Integers.iHealth > 0 && Players[iLoop].Integers.iHealth <= 100 ) { if ( LocalPlayer.Integers.iTeam != Players[iLoop].Integers.iTeam) { if(GetDistance(iLoop) < GetDistance(iTargetID)) { iTargetID = iLoop; TargetChanged = TRUE; } if (GetDistance(iLoop) > GetDistance(iTargetID)) { TargetChanged = FALSE; } } } } }
PS: Sry für die Kritik an dem Style von deinem Quelltext.
|