digibutter.nerr Forum Index
Hey [you]! If you haven't noticed, this is now the old digibutter forums. Go over to the new site!
digibutter.nerr
It's Hi-Technicaaal!

C++ game: Mightier Text.
 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    digibutter.nerr Forum Index -> Your Creations
Author Message
Djacwmwfin
Joshamuffin
Vampire


Joined: 12 Jun 2007
Posts: 3539

HP: 100 MP: 5 Lives: 0



PostPosted: Tue Mar 18, 2008 9:23 pm   Reply with quote

I'm making a choose your own adventure book style game in C++. Here is what I have so far...
http://64digits.com/users/Joshamuffin/Mightier_Text.zip

The only completed path is 3, 1, 1. However, I might have alot more done by the time you read this.

Also, here is the source code... 907 lines... in about 2 days. Alot of it is slightly modified copy paste. Microsoft word is good at replacing things. ^.^ Also, officialName things aren't used yet. But I have plans, in case you join up with the organization that took you. And yes I plan to make that an option. Also, I don't think I'll add any more to main.
Code:
/******************
People Location Map
*******************
0 = You, defined in run time
1 = Brearded-man, Vladimir
******************/

/****************
Room Location Map
*****************
0 = The first room. First bedroom.
1 = Hallway between 0,2,3
2 = The disscussion chamber
3 =
*****************/

/****************
Item Location Map
*****************
0 = key
****************/

/****************
Item Number Map
*****************
0 = nothing
1 = key
****************/

#include<iostream>
using namespace std;

char name[32] = {'.'};
int nameTerm = 0;
char officialName[32] = {'.'};
int officialNameTerm = 0;

int action = 0;
int actionsMade = 0;
int item = 0;
int itemTwo = 0;
int peopleLoc[2] = {0,1};
int itemLoc[1] = {0};

int pockets[4] = {0};
int amntPocket[4] = {0};
int belt[4] = {0};
int amntBelt[4] = {0};
int bag[8] = {0};
int amntBag[8] = {0};
int stash[16] = {0};
int amntStash[16] = {0};

int roomZero();
int zeroIntro();
int roomOne();
int nameInput();
int nameOutput();
int officialNameInput();
int officialNameOutput();
int addItemPocket();
int itemConvert();
int THE_END();

int main()
{
   cout << "Saving Method: Record your action numbers. If you recorded correctly, you should be able to re-enter them in and get the same result.\n\n";

   cout << "The game will now request your name. Type in # as the last character, unless you take all 32 characters.\n";
   nameInput();
   cout << "Hello, ";
   nameOutput();
   cout << ", Mightier Text starts now.\n*******************************************\n";

   roomZero();
}

int roomZero()
{
   if(actionsMade == 0)
   {
      zeroIntro();
   }
   else
   {
   //rawr
   }
return 0;
}

int zeroIntro()
{
   cout << "A sharp pain on the side of your face left a stinging sensation after the tall man slapped you to life. He had a long, black beard, with clothes to match. He had cold, blue eyes, that froze you in place to pay attention to him. He had various sharp and pointy weapons in his belt. A very formidable fellow, if you've ever seen one.\n"
       << "Bearded-man: 'Wake up, you have work to do. By that I mean walking and standing, you weakling.'\n"
       << "He appraised you with disgust, then spoke again.\n"
       << "Bearded-man: 'I will be back in ten minutes to take you down. Calm yourself and attend to certain matters,' He glanced at the tiny bathroom, 'if need be.'\n"
       << "With that, the bearded man turned towards the door and showed himself out.\n\n"
       << "You look around the room, seeing a plain wooden door to your left. As you scan to the right along the whitewashed walls, you see a small bathroom that wouldn't be able to contain someone like the bearded-man that just left. It had only a toilet and a small sink. There was mold along the edges of the sink. Where you sat was a plain, white bed with plain white sheets.\n\n"
       << "1: Go through the door.\n2: Check in the bathroom.\n3: Look under the bed.\nElse: Stay put.\n";
   peopleLoc[1] = 1;
   cin >> action;
   if(action == 1)
   {
      cout << "\n\nYou go to the door hoping it's unlocked. You jiggle the doorknob... but success is out of your reach.\n\n";
      peopleLoc[1] = 2;
      actionsMade += 1;
      cout << "1: Check in the bathroom.\n2: Look under the bed.\nElse: Sit on the bed.\n";
      cin >> action;
      //rawr
   }
   else if(action == 2)
   {
      cout << "\n\nYou get up and stick your head into the small bathroom. Yep, just a toilet and a sink.\n\n";
      peopleLoc[1] = 2;
      actionsMade += 1;
      cout << "1: Go through the door.\n2: Look under the bed.\nElse: Stay put.\n";
      cin >> action;
      //rawr
   }
   else if(action == 3)
   {
      cout << "\n\nYou crouch down near the bed and look under. A small, golden key is hanging from a hook on the back leg of the bed. You take it and put it in your pocket.\n";
      peopleLoc[1] = 2;
      actionsMade += 1;
      item = 1;
      addItemPocket();
      cout << "1: Go through the door.\n2: Check in the bathroom.\nElse: Stay put.\n";
      cin >> action;
      if(action == 1)
      {
         roomOne();
      }
      else if(action == 2)
      {
         actionsMade += 1;
         //rawr
      }
      else
      {
         actionsMade += 1;
         //rawr
      }
   }
   else
   {
      actionsMade += 1;
      peopleLoc[1] = 2;
      cout << "\n\nYou stay rooted to the bed. Pondering who that man was and where you are...\n\n";
      cout << "1: Go through the door.\n2: Check in the bathroom.\n3: Look under the bed.\nElse: Stay put.\n";
      cin >> action;
      if(action == 1)
      {
         cout << "\n\nYou go to the door hoping it's unlocked. You jiggle the doorknob... but success is out of your reach.\n\n";
         peopleLoc[1] = 1;
         actionsMade += 1;
         //rawr
      }
      else if(action == 2)
      {
         peopleLoc[1] = 1;
         actionsMade += 1;
         //rawr
      }
      else if(action == 3)
      {
         peopleLoc[1] = 1;
         actionsMade += 1;
         //rawr
      }
      else
      {
         actionsMade += 1;
         peopleLoc[1] = 1;
         cout << "\n\nYou continue to stay rooted to the bed...\n";
         //rawr
      }
   }

   return 0;
}

int roomOne()
{
   //if(actionsMade == 2)
   //{
      actionsMade += 1;
      cout << "\n\nYou go to the door and jiggle the doorknob... It's locked. You then insert the key and twist... the key works. You leave the room. You are standing in the center of a long hallway. Behind you is the door you came out of, to your left and right, at the end of the hallways, is two doors. The left one is made of steel. The right one is a plain wooden door, much like the one you just camr through.\n"
          << "1: The left one.\n2: The right one.\nElse: Go back to your room.\n";
      cin >> action;
      if(action == 1)
      {
         actionsMade += 1;
         cout << "\n\nYou run to the steel door to your left. Just as you approach, the bearded-man steps out. He whips out a knife and sticks it into your neck in a blink of an eye.\n"
             << "Bearded-Man: 'You rebellious slop.'";
         THE_END();
      }
      else if(action == 2)
      {
         actionsMade += 1;
      }
      else
      {
         actionsMade += 1;
      }
   //}
   return 0;
}
int nameInput()
{
      cin >> name[0];
   if(name[0] != '#')
   {
      cin >> name[1];
      if(name[1] != '#')
      {
         cin >> name[2];
         nameTerm += 1;
         if(name[2] != '#')
         {
            cin >> name[3];
            nameTerm += 1;
            if(name[3] != '#')
            {
               cin >> name[4];
               nameTerm += 1;
               if(name[4] != '#')
               {
                  cin >> name[5];
                  nameTerm += 1;
                  if(name[5] != '#')
                  {
                     cin >> name[6];
                     nameTerm += 1;
                     if(name[6] != '#')
                     {
                        cin >> name[7];
                        nameTerm += 1;
                        if(name[7] != '#')
                        {
                           cin >> name[8];
                           nameTerm += 1;
                           if(name[8] != '#')
                           {
                              cin >> name[9];
                              nameTerm += 1;
                              if(name[9] != '#')
                              {
                                 cin >> name[10];
                                 nameTerm += 1;
                                 if(name[10] != '#')
                                 {
                                    cin >> name[11];
                                    nameTerm += 1;
                                    if(name[11] != '#')
                                    {
                                       cin >> name[12];
                                       nameTerm += 1;
                                       if(name[12] != '#')
                                       {
                                          cin >> name[13];
                                          nameTerm += 1;
                                          if(name[13] != '#')
                                          {
                                             cin >> name[14];
                                             nameTerm += 1;
                                             if(name[14] != '#')
                                             {
                                                cin >> name[15];
                                                nameTerm += 1;
                                                if(name[15] != '#')
                                                {
                                                   cin >> name[16];
                                                   nameTerm += 1;
                                                   if(name[16] != '#')
                                                   {
                                                      cin >> name[17];
                                                      nameTerm += 1;
                                                      if(name[17] != '#')
                                                      {
                                                         cin >> name[18];
                                                         nameTerm += 1;
                                                         if(name[18] != '#')
                                                         {
                                                            cin >> name[19];
                                                            nameTerm += 1;
                                                            if(name[19] != '#')
                                                            {
                                                               cin >> name[20];
                                                               nameTerm += 1;
                                                               if(name[20] != '#')
                                                               {
                                                                  cin >> name[21];
                                                                  nameTerm += 1;
                                                                  if(name[21] != '#')
                                                                  {
                                                                     cin >> name[22];
                                                                     nameTerm += 1;
                                                                     if(name[22] != '#')
                                                                     {
                                                                        cin >> name[23];
                                                                        nameTerm += 1;
                                                                        if(name[23] != '#')
                                                                        {
                                                                           cin >> name[24];
                                                                           nameTerm += 1;
                                                                           if(name[24] != '#')
                                                                           {
                                                                              cin >> name[25];
                                                                              nameTerm += 1;
                                                                              if(name[25] != '#')
                                                                              {
                                                                                 cin >> name[26];
                                                                                 nameTerm += 1;
                                                                                 if(name[26] != '#')
                                                                                 {
                                                                                    cin >> name[27];
                                                                                    nameTerm += 1;
                                                                                    if(name[27] != '#')
                                                                                    {
                                                                                       cin >> name[28];
                                                                                       nameTerm += 1;
                                                                                       if(name[28] != '#')
                                                                                       {
                                                                                          cin >> name[29];
                                                                                          nameTerm += 1;
                                                                                          if(name[29] != '#')
                                                                                          {
                                                                                             cin >> name[30];
                                                                                             nameTerm += 1;
                                                                                             if(name[30] != '#')
                                                                                             {
                                                                                                cin >> name[31];
                                                                                                if(name[31] != '#')
                                                                                                {
                                                                                                   nameTerm += 1;
                                                                                                }
                                                                                             }
                                                                                          }
                                                                                       }
                                                                                    }
                                                                                 }
                                                                              }
                                                                           }
                                                                        }
                                                                     }
                                                                  }
                                                               }
                                                            }
                                                         }
                                                      }
                                                   }
                                                }
                                             }
                                          }
                                       }
                                    }
                                 }
                              }
                           }
                        }
                     }
                  }
               }
            }
         }
      }
   }
   else
   {
      name[0] = 'P';
      name[1] = 'l';
      name[2] = 'a';
      name[3] = 'y';
      name[4] = 'e';
      name[5] = 'r';
      nameTerm = 5;
   }

return 0;
}

int nameOutput()
{
   if(nameTerm >= 0)
   {
      cout << name[0];
   }
   if(nameTerm >= 1)
   {
      cout << name[1];
   }
   if(nameTerm >= 2)
   {
      cout << name[2];
   }
   if(nameTerm >= 3)
   {
      cout << name[3];
   }
   if(nameTerm >= 4)
   {
      cout << name[4];
   }
   if(nameTerm >= 5)
   {
      cout << name[5];
   }
   if(nameTerm >= 6)
   {
      cout << name[6];
   }
   if(nameTerm >= 7)
   {
      cout << name[7];
   }
   if(nameTerm >= 8)
   {
      cout << name[8];
   }
   if(nameTerm >= 9)
   {
      cout << name[9];
   }
   if(nameTerm >= 10)
   {
      cout << name[10];
   }
   if(nameTerm >= 11)
   {
      cout << name[11];
   }
   if(nameTerm >= 12)
   {
      cout << name[12];
   }
   if(nameTerm >= 13)
   {
      cout << name[13];
   }
   if(nameTerm >= 14)
   {
      cout << name[14];
   }
   if(nameTerm >= 15)
   {
      cout << name[15];
   }
   if(nameTerm >= 16)
   {
      cout << name[16];
   }
   if(nameTerm >= 17)
   {
      cout << name[17];
   }
   if(nameTerm >= 18)
   {
      cout << name[18];
   }
   if(nameTerm >= 19)
   {
      cout << name[19];
   }
   if(nameTerm >= 20)
   {
      cout << name[20];
   }
   if(nameTerm >= 21)
   {
      cout << name[21];
   }
   if(nameTerm >= 22)
   {
      cout << name[22];
   }
   if(nameTerm >= 23)
   {
      cout << name[23];
   }
   if(nameTerm >= 24)
   {
      cout << name[24];
   }
   if(nameTerm >= 25)
   {
      cout << name[25];
   }
   if(nameTerm >= 26)
   {
      cout << name[26];
   }
   if(nameTerm >= 27)
   {
      cout << name[27];
   }
   if(nameTerm >= 28)
   {
      cout << name[28];
   }
   if(nameTerm >= 29)
   {
      cout << name[29];
   }
   if(nameTerm >= 30)
   {
      cout << name[30];
   }
   if(nameTerm >= 31)
   {
      cout << name[31];
   }
   return 0;
}
int officialNameInput()
{
      cin >> officialName[0];
   if(officialName[0] != '#')
   {
      cin >> officialName[1];
      if(officialName[1] != '#')
      {
         cin >> officialName[2];
         officialNameTerm += 1;
         if(officialName[2] != '#')
         {
            cin >> officialName[3];
            officialNameTerm += 1;
            if(officialName[3] != '#')
            {
               cin >> officialName[4];
               officialNameTerm += 1;
               if(officialName[4] != '#')
               {
                  cin >> officialName[5];
                  officialNameTerm += 1;
                  if(officialName[5] != '#')
                  {
                     cin >> officialName[6];
                     officialNameTerm += 1;
                     if(officialName[6] != '#')
                     {
                        cin >> officialName[7];
                        officialNameTerm += 1;
                        if(officialName[7] != '#')
                        {
                           cin >> officialName[8];
                           officialNameTerm += 1;
                           if(officialName[8] != '#')
                           {
                              cin >> officialName[9];
                              officialNameTerm += 1;
                              if(officialName[9] != '#')
                              {
                                 cin >> officialName[10];
                                 officialNameTerm += 1;
                                 if(officialName[10] != '#')
                                 {
                                    cin >> officialName[11];
                                    officialNameTerm += 1;
                                    if(officialName[11] != '#')
                                    {
                                       cin >> officialName[12];
                                       officialNameTerm += 1;
                                       if(officialName[12] != '#')
                                       {
                                          cin >> officialName[13];
                                          officialNameTerm += 1;
                                          if(officialName[13] != '#')
                                          {
                                             cin >> officialName[14];
                                             officialNameTerm += 1;
                                             if(officialName[14] != '#')
                                             {
                                                cin >> officialName[15];
                                                officialNameTerm += 1;
                                                if(officialName[15] != '#')
                                                {
                                                   cin >> officialName[16];
                                                   officialNameTerm += 1;
                                                   if(officialName[16] != '#')
                                                   {
                                                      cin >> officialName[17];
                                                      officialNameTerm += 1;
                                                      if(officialName[17] != '#')
                                                      {
                                                         cin >> officialName[18];
                                                         officialNameTerm += 1;
                                                         if(officialName[18] != '#')
                                                         {
                                                            cin >> officialName[19];
                                                            officialNameTerm += 1;
                                                            if(officialName[19] != '#')
                                                            {
                                                               cin >> officialName[20];
                                                               officialNameTerm += 1;
                                                               if(officialName[20] != '#')
                                                               {
                                                                  cin >> officialName[21];
                                                                  officialNameTerm += 1;
                                                                  if(officialName[21] != '#')
                                                                  {
                                                                     cin >> officialName[22];
                                                                     officialNameTerm += 1;
                                                                     if(officialName[22] != '#')
                                                                     {
                                                                        cin >> officialName[23];
                                                                        officialNameTerm += 1;
                                                                        if(officialName[23] != '#')
                                                                        {
                                                                           cin >> officialName[24];
                                                                           officialNameTerm += 1;
                                                                           if(officialName[24] != '#')
                                                                           {
                                                                              cin >> officialName[25];
                                                                              officialNameTerm += 1;
                                                                              if(officialName[25] != '#')
                                                                              {
                                                                                 cin >> officialName[26];
                                                                                 officialNameTerm += 1;
                                                                                 if(officialName[26] != '#')
                                                                                 {
                                                                                    cin >> officialName[27];
                                                                                    officialNameTerm += 1;
                                                                                    if(officialName[27] != '#')
                                                                                    {
                                                                                       cin >> officialName[28];
                                                                                       officialNameTerm += 1;
                                                                                       if(officialName[28] != '#')
                                                                                       {
                                                                                          cin >> officialName[29];
                                                                                          officialNameTerm += 1;
                                                                                          if(officialName[29] != '#')
                                                                                          {
                                                                                             cin >> officialName[30];
                                                                                             officialNameTerm += 1;
                                                                                             if(officialName[30] != '#')
                                                                                             {
                                                                                                cin >> officialName[31];
                                                                                                if(officialName[31] != '#')
                                                                                                {
                                                                                                   officialNameTerm += 1;
                                                                                                }
                                                                                             }
                                                                                          }
                                                                                       }
                                                                                    }
                                                                                 }
                                                                              }
                                                                           }
                                                                        }
                                                                     }
                                                                  }
                                                               }
                                                            }
                                                         }
                                                      }
                                                   }
                                                }
                                             }
                                          }
                                       }
                                    }
                                 }
                              }
                           }
                        }
                     }
                  }
               }
            }
         }
      }
   }
   else
   {
      officialName[0] = 'P';
      officialName[1] = 'l';
      officialName[2] = 'a';
      officialName[3] = 'y';
      officialName[4] = 'e';
      officialName[5] = 'r';
      officialNameTerm = 5;
   }

return 0;
}

int officialNameOutput()
{
   if(officialNameTerm >= 0)
   {
      cout << officialName[0];
   }
   if(officialNameTerm >= 1)
   {
      cout << officialName[1];
   }
   if(officialNameTerm >= 2)
   {
      cout << officialName[2];
   }
   if(officialNameTerm >= 3)
   {
      cout << officialName[3];
   }
   if(officialNameTerm >= 4)
   {
      cout << officialName[4];
   }
   if(officialNameTerm >= 5)
   {
      cout << officialName[5];
   }
   if(officialNameTerm >= 6)
   {
      cout << officialName[6];
   }
   if(officialNameTerm >= 7)
   {
      cout << officialName[7];
   }
   if(officialNameTerm >= 8)
   {
      cout << officialName[8];
   }
   if(officialNameTerm >= 9)
   {
      cout << officialName[9];
   }
   if(officialNameTerm >= 10)
   {
      cout << officialName[10];
   }
   if(officialNameTerm >= 11)
   {
      cout << officialName[11];
   }
   if(officialNameTerm >= 12)
   {
      cout << officialName[12];
   }
   if(officialNameTerm >= 13)
   {
      cout << officialName[13];
   }
   if(officialNameTerm >= 14)
   {
      cout << officialName[14];
   }
   if(officialNameTerm >= 15)
   {
      cout << officialName[15];
   }
   if(officialNameTerm >= 16)
   {
      cout << officialName[16];
   }
   if(officialNameTerm >= 17)
   {
      cout << officialName[17];
   }
   if(officialNameTerm >= 18)
   {
      cout << officialName[18];
   }
   if(officialNameTerm >= 19)
   {
      cout << officialName[19];
   }
   if(officialNameTerm >= 20)
   {
      cout << officialName[20];
   }
   if(officialNameTerm >= 21)
   {
      cout << officialName[21];
   }
   if(officialNameTerm >= 22)
   {
      cout << officialName[22];
   }
   if(officialNameTerm >= 23)
   {
      cout << officialName[23];
   }
   if(officialNameTerm >= 24)
   {
      cout << officialName[24];
   }
   if(officialNameTerm >= 25)
   {
      cout << officialName[25];
   }
   if(officialNameTerm >= 26)
   {
      cout << officialName[26];
   }
   if(officialNameTerm >= 27)
   {
      cout << officialName[27];
   }
   if(officialNameTerm >= 28)
   {
      cout << officialName[28];
   }
   if(officialNameTerm >= 29)
   {
      cout << officialName[29];
   }
   if(officialNameTerm >= 30)
   {
      cout << officialName[30];
   }
   if(officialNameTerm >= 31)
   {
      cout << officialName[31];
   }
   return 0;
}
int addItemPocket()
{
   if (pockets[0] != item && pockets[1] != item && pockets[2] != item && pockets[3] != item)
   {
      if(pockets[0] != 0 && pockets[1] != 0 && pockets[2] != 0 && pockets[3] != 0)
      {
         itemTwo = pockets[0];
         cout << "1: " << amntPocket[0] << " ";
         itemConvert();
         cout << "." << "\n";
         itemTwo = pockets[1];
         cout << "2: " << amntPocket[1] << " ";
         itemConvert();
         cout << "." << "\n";
         itemTwo = pockets[2];
         cout << "3: " << amntPocket[2] << " ";
         itemConvert();
         cout << "." << "\n";
         itemTwo = pockets[3];
         cout << "4: " << amntPocket[3] << " ";
         itemConvert();
         cout << "." << "\n";
         cout << "Else: Ignore the " << item << ".";
      }
      else
      {
         if(pockets[0] == 0)
         {
            pockets[0] = item;
            amntPocket[0] = 1;
         }
         else if(pockets[1] == 0)
         {
            pockets[1] = item;
            amntPocket[1] = 1;
         }
         else if(pockets[2] == 0)
         {
            pockets[2] = item;
            amntPocket[2] = 1;
         }
         else
         {
            pockets[2] = item;
            amntPocket[2] = 1;
         }
      }
   }
   else
   {
      if(pockets[0] == item)
         {
            amntPocket[0] += 1;
         }
         else if(pockets[1] == item)
         {
            amntPocket[1] += 1;
         }
         else if(pockets[2] == item)
         {
            amntPocket[2] += 1;
         }
         else
         {
            amntPocket[2] += 1;
         }
   }
return 0;
}
int itemConvert()
{
 if(itemTwo == 0)
 {
    cout << "nothing";
 }
 if(itemTwo == 1)
 {
    cout << "key";
 }
   return 0;
}
int THE_END()
{
   cout << "\n\nTTTTTTTTTT  HH    HH  EEEEEE\tEEEEEE  NN     NN  DDDDD\nTTTTTTTTTT  HH    HH  EEEEEE\tEEEEEE  NNN    NN  DDDDDD\n    TT      HH    HH  EE\tEE      NNNN   NN  DD   DD\n    TT      HHHHHHHH  EEEE\tEEEE    NN NN  NN  DD    DD\n    TT      HHHHHHHH  EEEE\tEEEE    NN  NN NN  DD    DD\n    TT      HH    HH  EE\tEE      NN   NNNN  DD   DD\n    TT      HH    HH  EEEEEE\tEEEEEE  NN    NNN  DDDDDD\n    TT      HH    HH  EEEEEE\tEEEEEE  NN     NN  DDDDD\n";
   cout << "Enter anything to continue... ";
   cin >> action;
   return 0;
}
Back to top
Josh's Useful American Novelties    
Sync
MALAK



Joined: 01 Aug 2007
Posts: 34747
HP: 10 MP: 2 Lives: 0



PostPosted: Wed Mar 19, 2008 2:29 am   Reply with quote

Wait, did you write all that yourself? O_O
Back to top
Hammerspace    
darkzero
Rusty Shackleford
Vampire


Joined: 12 Jun 2007
Posts: 16661

HP: 1 MP: 2 Lives: 0



PostPosted: Wed Mar 19, 2008 2:34 am   Reply with quote

MALAK wrote:
Wait, did you write all that yourself? O_O
Back to top
darkzero's Bargain shop    
Djacwmwfin
Joshamuffin
Vampire


Joined: 12 Jun 2007
Posts: 3539

HP: 100 MP: 5 Lives: 0



PostPosted: Wed Mar 19, 2008 12:41 pm   Reply with quote

Yes I did. And there is already another path. However, I did not update it one the internet yet. I'll do so later, when I have more.
Back to top
Josh's Useful American Novelties    
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    digibutter.nerr Forum Index -> Your Creations
All times are GMT - 5 Hours
Page 1 of 1

 


Powered by phpBB © 2001, 2005 phpBB Group