Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

SirBernard

Members
  • Posts

    44
  • Joined

  • Last visited

    Never

Everything posted by SirBernard

  1. > When you initalized your array you did "int rolls[10]" this gave you an array that had 11 slots because your array starts at zero meaning you have spaces "0 1 2 3 4 5 6 7 8 9 10". What Marshy Dearest Dearest is trying to show you is that when you did this > > ``` > > for (int i = 2; i < 13; i++) cout
  2. > ``` > int rolls[10]; > ``` > > ``` > > //Initialize values for elements in the array > > for (int i = 0; i < 11; i++) > > rolls[i] = 0; > > arrays start at 0 not one. > > what do you mean, i am lost. Do you mean the array it's self or do you mean the way i set it's values.[/i] > ```
  3. At the moment the displaying of the information is wrong and i don't see the solution. I get it to list all the dice roll possiblities for each. Ex: if i run the program and choose to run it once. i get this ``` value frequency exp theo 2 1 1.000 0.0556 and so on... ``` it does that with correct frequencies and value until it gets to 12 then it start displaying random (Garbage, like the array that stores the 12th data is not being used…)
  4. /* Bernard Yeboah January 03 2013 */ ``` #include #include #include using namespace std; int main(int argc, char *argv[]) { //Declare Variables int rolls[10]; int sim = 0, temp = 0; cout.setf(ios::fixed); cout.precision(4); //Timer time_t seconds; time(&seconds); srand((unsigned int)seconds); //Initialize values for elements in the array for (int i = 0; i < 11; i++) rolls[i] = 0; //Prompt user for the number of simulations cout > sim; //Display header(Table) cout.setf(ios::left); cout
  5. > As a background for a login screen I think this looks great. Thanks
  6. > looks nice but i dont see it as having and login setup yet. keep up the work. Thanks, and yeah this is jsut the login picture. Final Product. ![](http://www.freemmorpgmaker.com/files/imagehost/pics/5c0271269aaf517c1278277eb592ccaf.png)
  7. Alright Edited it. ![](http://www.freemmorpgmaker.com/files/imagehost/pics/c249aae921c1180a70f106c0d13ad73f.png)
  8. > Some context would be nice. > > As I said earlier, it's rather bland. Open up Photoshop/GIMP/Paint.Net, and stick on some fogs, lights, and other flashy effects! Alright, i am still new to this.(Using Parallax Maping) To be honest i have no idea how to add flashy effects. Any tips oh how?
  9. Thanks so what do you recommend as a fitting login menu. I was just thinking of making this a map if it doesn't fit.
  10. Hello guys, this is a log in screen i made for my game and i wanted your opinion/critiques. Old Version >! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/d985c060ee623dfdbc3863e002649577.png) Edited Version >! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/c249aae921c1180a70f106c0d13ad73f.png) Final Version >! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/5c0271269aaf517c1278277eb592ccaf.png)
×
×
  • Create New...