The issue though is I have it setup in a menu choice, so that way I can test each creation process individually, however I go and run the first one, it works fine, but after the first one the other ones appear to run fine BUT they don't appear to give me the information displayed like they should've... Here's the calls below, which I think the issue maybe.
The code is located in my Main function
Code:
static Item item[] = new Item[100];
static Monster monster[] = new Monster[100];
...
while ( menuchoice != 5)
{
menuchoice = menu();
switch(menuchoice)
{
case 1: //Create Items
while (i <=5)
{
Item.createItems();
i++;
}
break;
case 2: //Creates Monsters
while (i <=5)
{
Monster.createMonsters();
i++;
}
break;
...
I removed the extra classes I had with the stuff above because all it had in it was the menu choices.
If the code for each of the things above is needed, tell me please?
Oh and I have debugged this, tried to figure out what is messing with it but I keep getting the same issue.
I have been trying to locate something about this on the wiki or in google and so far no such luck.