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

NullSkillVoid

Members
  • Posts

    204
  • Joined

  • Last visited

    Never

Posts posted by NullSkillVoid

  1. @Boxman:

    > I'm playing the leaked alpha and it seems like crap so far -_-

    Really? You are judging a game on a pre-public LEAKED state.  No comment.
  2. I have always wanted to set up a virtual economy, so PM me, as I would be interested in providing the base. I would host the server, but my parents wont let me. :rolleyes:
  3. Vindictus is fun, it just gets really boring fast. I will be starting to play Maplestory again, because of the massive update coming in. It is the best MMO I have played, it was just to grindy.
  4. @your off topic rant at my pc savings, my current PC was the best 5 years ago, and could run new releases until about a few months ago, so I am saving to get a pc that will do that again for me, and run games at max settings. I also will probably end up getting two monitors, and a nice keyboard and mouse for all the time I spend pc gaming, it will be worth it.
    And I have not been been here long, so yea. Anna, stop smoking. :rolleyes:
  5. I don't know how to put in a code box, so here:

    >! #include #include #include int main(int argc, char** argv) {
      char filename[81];
      //declares the variables
      int exp = 0, diff = 0, oexp = 0, diffmod = 0, loopval =0;
      // Declares the file name
      std::cout << "Enter a file name and press ENTER: ";
      std::cin.getline(filename, 80);//gets the filename
      std::ofstream file_out(filename);
      if(! file_out) { // Verify if the file can be opened/created.
          std::cout << "File " << filename;
          std::cout << " could not be opened.";
          return -1;
      }
      std::cout << "File " << filename << " was opened." << std::endl;
      std::cout << "Declare a modifier for the algorithm";
      std::cin.getline(diffmod, 10);
      std::cout << "Declare the amount of exp values to generate";
      stc::cin.getline(loopval, 500);
      std::cout << "Generating data ";
      file_out << "[EXPERIENCE]" << std::endl; //titles the file
      for(int I = 1; I < loopval; I++) { //declares the amount of times to generate exp values
          oexp=exp; //Declares the variable to compare the new exp to
          exp = (diff + diffmod) + exp; // Algorithm that generates the new exp
          file_out << "Exp" << I << "=" << exp << std::endl; //adds the stream data to the file
          diff = exp - oexp; //Declares the diffrence
      }
      std::cout << "Done!" << std::endl << "Press ENTER to exit the console.";
      std::cin.get();
      return 0;
    }

    I think I n00bed it up some (added some comments), and added some additional functions. My C++ is rusty, so I apologize if I broke it, because I can't test it right now.
  6. @Kazuno:

    > Well the Alpha could be done in some months as I said.
    > For the V2 we'll translate the client / server to an english version.
    >
    > **But we don't already know if we'll open an EN and FR Server or both in the same.**
    > Your advice are welcome and if anyone of you want to help the project, it's welcome too ;)

    If you put a built in translator, you will be my new programming god.
×
×
  • Create New...