We're conducting a demographics survey in my intro to video game design course. I'd greatly appreciate if you could take this survey for me:
https://www.surveymonkey.com/s/VZWJW3B
Thanks!
https://www.surveymonkey.com/s/VZWJW3B
Thanks!
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: Horrorfiend on Sun 14/09/2014 08:06:11sorry that didnt work what does 1blquit does beacuse its giving me a error.
Quote from: Horrorfiend on Sun 14/09/2014 17:07:53Thanks for the help, sorry took me a while to understand I forgot there was a button to make labels in the gui up top, my brain is slow. thanks again
function btnQuit_OnClick(GUIControl *control, MouseButton button)
{
int ran = Random(5);
if (ran == 0) lblQuit.Text = "Are you sure you want to quit?";
else if (ran == 1) lblQuit.Text = "You're giving up already?";
// ...
else if (ran == 4) lblQuit.Text = "Can't take it any more?";
gQuit.Visible = true;
}
int ran = Random(5);
if (ran == 0) lblQuit.Text = "Are you sure you want to quit?";
else if (ran == 1) lblQuit.Text = "You're giving up already?";
// ...
else if (ran == 4) lblQuit.Text = "Can't take it any more?";
Quote from: Khris on Sun 31/08/2014 22:53:30
The function is fine; if minimo < massimo && minimo != 0, it will not return 0, ever.
If that happened, you're either using bad parameters or made a mistake somewhere else.
int NumeriCasuali(int minimo, int massimo) //int min, int max
{
if (minimo == massimo) return minimo; // same value, only one possible result
if (minimo > massimo) return NumeriCasuali(massimo, minimo); // min and max reversed, swap them out
return (minimo + Random(massimo - minimo)); // correct
}
Quote from: Cassiebsg on Sat 30/08/2014 09:40:08I never use the offline [help file (manual)], cause for some reason it is always on top, and then I can't see the editor.
Quote from: BigMc on Wed 27/08/2014 08:06:00The variant with the separate file should definitely be used because...
public void CreateHardLink(string destFileName, string sourceFileName)
{
string fileName = "mklink";
string args = String.Format("/h {0} {1}", destFileName, sourceFileName);
if (IsMonoRunning())
{
fileName = "/bin/ln";
args = String.Format("{0} {1}", sourceFileName, destFileName);
}
Process.Start(fileName, args);
}
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 1.521 seconds with 15 queries.