Search results

  1. YourFace

    What's a good gaming mouse to buy?

    I want a mouse for RTS games like starcraft 2, moba games league, and my range is less than or equal to 60-70 dollars. Do you guys have any suggestions?
  2. YourFace

    How is Tera Online?

    I'm looking at some gameplay footage and hearing some of my friends comments on Tera. What do you guys think about how overall fun the game is? I know the graphics are awesome and it has a action mmo style, but it seems repetitive and all the quests seem boring. Is it worth the money?
  3. YourFace

    Computer Lagging and shuts off

    I'm currently running a windows 7 computer which I made three years ago. Ever since the windows update yesterday, my computer has been running quite loudly, and it lags a lot. I just cleared my registry so it doesn't seem to randomly shut off, but the computer has been lagging. Before, the...
  4. YourFace

    My League of Legend Stream

    Watch I'm currently transitioning from Starcraft 2 to League of Legends, and I'm practicing to match with my teammates.
  5. YourFace

    Is this article satirical?

    http://ideas.time.com/2012/03/15/congress-wants-the-love-for-doing-its-job/ My friend and I weren't sure whether this article was satirical or simply a direct attack on congressman. What do you guys think? I have to write a report an a satirical article on Time or The New York Times newspaper!
  6. YourFace

    Customise Background Images

    You can customize your starcraft 2 backgrounds to almost anything you want! Examples: Learn More here: http://telikostarcraft.com/modifications/customise-background-images/
  7. YourFace

    Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai

    Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai A group of six childhood friends drift apart after one of them, Meiko "Menma" Honma, dies in an accident. Ten years after the incident, the leader of the group, Jinta Yadomi, has withdrawn from society and lives as a recluse. One summer...
  8. YourFace

    Masking a program from Task Manager

    Hi, I would like to have a program masked from Applications , processes and services. how would I be able to do this? I run an application that can scan my computer for task manager applications. I do not want them to see this program which is questionable allowed or not.
  9. YourFace

    Very Touching video about a father(also very ironic)

    http://www.youtube.com/watch?v=Ue-8pEcXoVI&feature=g-all-f&context=G2dff806FAAAAAAAADAA
  10. YourFace

    5 paragraph essay help!

    So I handed in my essay(formal writing rules apply). I'm in 11th grade and I submitted my essay who is now giving it back for us to revise. I checked and reread my essay twice for errors and made a lot of corrections. To get a really good grade, I was hoping you guys could check for grammar...
  11. YourFace

    What are reasons why programmed games are better than flash games?

    I'm doing research on why flash games are so popular, and how games that are programmed in languages like c++/java are industry standards for major game developing companies. I've come up with things like: Memory allocation More control options(f1,f2,f5) FullScreen Gameplay. What are...
  12. YourFace

    Making a building a lot bigger?

    I went to data-> unit-> model-> scale and increased the number by 2 for the x y and z factors and in the editor, the model looks huge, but in game, the building looks as if it was never changed. How do I get the model to look bigger in game like it does in the editor? also how do I remove...
  13. YourFace

    Simple Question, For Loop?

    How do you use a for loop in starcraft 2 editor? my code current: bool gt_Set_Alliance_Func(bool testConds, bool runActions) { if(!runActions) { return false; } //sets players 1-6 to team 1 for(int i = 1; i<=6; i++) {...
  14. YourFace

    Skyrim, Legend of Zelda, Diablo 3, or HoTS?

    If you only had to get one game, which would it be and why.
  15. YourFace

    Soccer Tips?

    Are you good at soccer? What are your tips for getting better?
  16. YourFace

    Global Variable Madness

    I'm currently using MSVC++ 2008 edition and i have a whole bunch of cpp and header files so i decided to make one for my global variables. Unfortunately, I keep getting a "redefinition error" even though I only declared the variables once. here is the header file #ifndef GLOBALVAR_H #define...
  17. YourFace

    Simple vector question

    void Follower::set_last_follower(std::vector<Follower*> last_follower) { for(int i = 0; i < last_follower->size(); i++) { last_follower[i]->lastfollower = false; } int b = last_follower->size() -1; last_follower[b]->lastfollower = true; } how do i fix this error: Follower is a class...
  18. YourFace

    Assertion Debug Error(Using SDL)Can anyone detect error in the code?

    #include "SDL.h" #include "SDL_image.h" #include <string> #include <vector> #include <cstdlib> const int SCREEN_WIDTH = 640; const int SCREEN_HEIGHT = 480; const int SCREEN_BPP = 32; const int FRAMES_PER_SECOND = 20; const int DOT_WIDTH = 20; const int DOT_HEIGHT = 20; SDL_Surface* screen =...
  19. YourFace

    How does this code do what it does and why did the coder code it this way(pixel+SDL)

    Uint32 get_pixel32( SDL_Surface *surface, int x, int y ) { //Convert the pixels to 32 bit Uint32 *pixels = (Uint32 *)surface->pixels; //Get the requested pixel return pixels[ ( y * surface->w ) + x...
  20. YourFace

    What does the & and | operators do in C++ (not referring to pointers)

    else if( event.type == SDL_ACTIVEEVENT ) { //If the window was iconified or restored if( event.active.state & SDL_APPACTIVE ) //what would that ampersand do { //If the application is no longer active if( event.active.gain == 0 ) {...
Top