09.12.2017, 16:28
Anyone know a function or a library who did it??
I wanna do some like this.
Hope u understood what i mean and help me, ty.
I wanna do some like this.
Код:
enum E_MYENUM
{
VarTime,
.....
AnotherVar,
}
new Example[151][E_MYENUM];
public OnGameModeInit()
{
for(new i = 1; i<= 151; i++)
{
Exemple[i][VarTime] = random(400);
}
return 1;
}
forward GetMaxNumber();
public GetMaxNumber()
{
//This should be the function i need. I want the function return then highest number from Exemple->VarTime.
}


