Code:
for(int i = 0;i<18;i++)
{
if(IS_TIME_MORE_THAN(GET_PLAYER_MAX_ARMOUR(i), 100)
{
print(GET_PLAYER_NAME(i), 3000);//get modder name
}
}
Created by RF0oDxM0Dz
(02-19-2019 - 09:31 AM)RF0oDxM0Dz_0 Wrote:Code:for(int i = 0;i<18;i++)
{
if(IS_TIME_MORE_THAN(GET_PLAYER_MAX_ARMOUR(i), 100)
{
print(GET_PLAYER_NAME(i), 3000);//get modder name
}
}
Created by RF0oDxM0Dz
if(IS_TIME_MORE_THAN(GET_PLAYER_MAX_ARMOUR(i), 100)
(02-19-2019 - 04:43 PM)Justtestingit Wrote: Isn't this basically the same as the standard way but instead uses the IS_TIME_MORE_THAN native to compare the values rather than using the ""more than" operator? So in that case it isn't "NEW"
(02-19-2019 - 04:51 PM)trinity7 Wrote:(02-19-2019 - 04:43 PM)Justtestingit Wrote: Isn't this basically the same as the standard way but instead uses the IS_TIME_MORE_THAN native to compare the values rather than using the ""more than" operator? So in that case it isn't "NEW"
Yep Certainly Is, Just Using A Diff Native. Really Not Useful At All
(02-19-2019 - 06:39 PM)Justtestingit Wrote:yep youd think(02-19-2019 - 04:51 PM)trinity7 Wrote:(02-19-2019 - 04:43 PM)Justtestingit Wrote: Isn't this basically the same as the standard way but instead uses the IS_TIME_MORE_THAN native to compare the values rather than using the ""more than" operator? So in that case it isn't "NEW"
Yep Certainly Is, Just Using A Diff Native. Really Not Useful At All
Lmfao its just a pointless post of pointless code making things more complicated than they need to be...id assume using ">" would be better to compare values anyway instead of using natives since that is what the relational operators are for in the first place