Quote:
Originally Posted by ProIcons
Ok now, how can i take from here all the arays that they have
common
killer
Deaths
half
and find the wpnindex for each ?
d{ WeaponData[ killer ][ wpnindex ][ Deaths ][ half ] }
|
What you are probably trying to achieve is going through the array with a loop. I don't know what you are trying to do exactly but something similiar below.
Code:
for( int WpI; WpI < MAX; WpI++ )
if( d{ WeaponData[ Killer ][ WpI ][ Deaths ][ Half ] } == CompareTo )
{
//Action
}
Quote:
Originally Posted by ProIcons
and how can i convert a float to integer
|
Look for
floatround.