I sure you can make whatever type of game you want using AGS, but AGS is designed for adventure games so for other types of games you'll be coding a lot of what you want manually.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: monkey0506 on Thu 06/07/2017 12:49:27
There really isn't a general consensus in the programming community of what range "random" should return, even if both min and max are explicit. In AGS, one can achieve an inclusive range [min, max] by using:Code: ags int rand = Random(max) + min;
int rand = Random(max-min) + min;
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.090 seconds with 16 queries.