Search results

  1. B

    Twisted Metal Review

    I am definitely enjoying it. Picked it up this past weekend, and me and the girlfriend played it. The story is rather short. You could easily beat it in a day. Maybe even a couple of times the same day. The number of characters is kind of depressing, but there are plenty of cars to make...
  2. B

    Anyone tried out the new Star Wars mmo?

    I was going to post the exact same thing, just in a longer version. It's really no different. I personally really enjoy leveling up in SWTOR, and that hasn't happened since I started playing FFXI when it first started. As well, once you capped your level, getting better gear isn't much more...
  3. B

    Anyone tried out the new Star Wars mmo?

    Yep, hit 50. Sort of rushed there that way I didn't lag behind like I have done in every other MMO I have played... but I am still behind in this one. Really disappointing. haha :D Yeah it is always neat to enter a zone, and their be different characters in different places pertaining to the...
  4. B

    Anyone tried out the new Star Wars mmo?

    Hardly... Definitely a great game though. Absolutely love the classes. Also love the way that the companion crew skills were implemented, so that your companions could do your skills for you was neat. Also love the duo-style game play that the companion adds and can easily be used as a...
  5. B

    MMORPG Players vs MMORPG Players

    It is really sad to see actual addictions from games like WoW. Sure, I can put 100's upon 100's of hours into a game, but there is an end to everything. I put like 1500 hours into FFXI back in the day, did everything one could do, absolutely loved the game. Can't remember why I quit exactly, but...
  6. B

    Diablo 3

    Unless regulated in some way, it will take the fun away from the game when one goes to the auction house, sees the item they would want and then look at the price and it's $5. Sure, people sell items online, but not nearly as much as if there is an auction house implemented for that...
  7. B

    Diablo 3

    They should have servers where the real life money auction garbage isn't on there. That is a turn off for me as well, seeing as I don't want to spend money for something I want in AH, but rather use the in-game currency instead... etc etc.
  8. B

    Star Wars MMO

    From my understanding, there will be raid type events. Unsure how they are ran as of yet. I haven't played incredibly far into that game. Not wanting to waste a lot of my time on a beta, and not wanting to ruin the story. There are already guilds formed as well on there site so that it is...
  9. B

    Star Wars MMO

    What MMO are you currently playing? It is fun. I played the past weekend of it. The gameplay reminds me of WoW/Rift/LotRO in a Star Wars theme with a story. The story stuff is neat. Just about every quest/etc you have options. You can do right, neutral or give the person a hard time. At times...
  10. B

    Plan to purchase laptop($1000)

    I went down to best buy and saw that exact same model there. The pictures looked big online, but in person... it is SO much bigger. I bet it runs great, but it better for being how big it is. Not something I am wanting to escort around though. That shouldn't cost anymore than $1000...
  11. B

    Plan to purchase laptop($1000)

    I recently have been planning on purchasing a new laptop. I know everyone is not a fan of the whole ideal behind a "gaming laptop" as a desktop can blow them out of the water(I am aware) but as I am a college student and always on the go, portability is key. I recently stumbled upon a company...
  12. B

    C++ reading from file and putting into vector

    You know what? That actually fixed my problem. I didn't even think about it resizing the vector. I just used v[j] = number because I was used to using arrays more, so it was just a comfort thing. I don't mind using push_back at all though. I was getting a segmentation fault with the code that...
  13. B

    C++ reading from file and putting into vector

    I am having trouble with a C++ program which requires that you read in 3 different files (first contains integer, second contains float, and third contains string) into a vector, that doesn't specify the number of int's(ect) in the file. Then from there we make a heap, sort it and whatnot. I...
  14. B

    Battlefield 3 Thread

    Negative. No problems at all.
  15. B

    Java Thread

    Yeah, one of the first couple, text based. Gives a lot of room later to add-on and whatnot. Definitely going to try and implement a character creation (Name/Gender/Race/Class and whatnot) to start. Then levels, stats/skills and such. Pretty basic stuff, but a lot to do. I figure that I have...
  16. B

    Java Thread

    Yeah, I just need to get to it. It sounds amazing. Something I can build now and it be relatively well, and enjoyable, and expand on as I go. :good: :edit: Definitely going to start brainstorming ideas for something to do for fun. So far, a kind of mix of Final Fantasy and other games, text...
  17. B

    Java Thread

    Yeah, I was just reading your code and saw the mistake, haha. The chance to help someone out, and I am beat to it. :( How is your game coming along? I've been wanting to make a text based game for a while. I am relatively new as well, but I think it would be a blast just to write something up...
  18. B

    Function Pointers (C++)

    Found my problem. template <class T> void binTree<T>::preOrder (binTreeNode <T>* node1, void (*order) (T&)) {//begin preOrder if (node1 != NULL) {//begin if order(node1->data); preOrder(node1->left, order); //prints left subtree...
  19. B

    Function Pointers (C++)

    I am implementing a binary tree in C++, and I am supposed to write inOrder, preOrder, postOrder etc. template <class T> class binTree { public: binTree ( ); // default constructor bool empty ( ) const; // checks if tree empty int size ( ) const; // returns no of nodes int height ( ) const; //...
Top