Jump to content

Perakp

Members
  • Posts

    617
  • Joined

  • Last visited

Posts posted by Perakp

  1. mmk

     

    is there any set up that makes scout pro good?

    Any sniper setup obviously, for anything else you'd be better using sleight of hand or steady aim. Unless you are a cornercamper and need the ability to pull out your claymore faster.

  2. Hi!

    I'm working on checkers using java as my language of choice. For this I use the java graphics2d class.

    My question is simple:

     

    Does the coordinate system work with points of the form (x,0), (0,y)? In other words, are the coordinate axes part of the coordinate system?

     

    I've already through trial and error found out that there are no negative axes. A piece of information that the documentation completely lacked.

     

    For extra value, here is my code for creating the (chess)board.

     

    import java.awt.*;
    public class Board {
    int x, y;
    Graphics g;
    String[] alphabet={"A","B","C","D","E","F","G","H"};
    String[] numbers={"1","2","3","4","5","6","7","8"};
    public Board(Graphics g1){
    	g=g1;
    
    }
    public void paint(Graphics g, int width, int height){
    
    	x=width/9;
          y=height/9;
          for ( int i = 0; i < 8; ++i ) { // row
        	  changeColor(g);
            for(int j=0;j<8;j++){ // columns in a row
            	changeColor(g);
            g.fillRect(x+j*x, x+i*x, x, y);	
    
            }
       }
    
          g.setColor(Color.darkGray);
        	  Font font = new Font("Serif", Font.BOLD, x);
        	  g.setFont(font);
        	  for (int i=0; i<8; i++)
        	  g.drawString(alphabet[i], x+x/7+i*x, 86*y/100 );
        	  for(int i=0; i<8; i++){
        		  g.drawString(numbers[i], x/5, 112*y/60+i*y);
        	  }
    
    
    
    }
    private void changeColor(Graphics g) {
    	if(g.getColor().equals(Color.blue)){
    		g.setColor(Color.red);
    	}else{g.setColor(Color.blue);}
    
    }
    public Point getCorner(Point mouseClick) {
    	Point corner=new Point(0,0);
    	for(int i=0;i<9;i++){
    		if(mouseClick.y>i*y){corner.y=i*y;}
    		for(int j=0;j<9;j++){
    			if (mouseClick.x>j*x){corner.x=j*x;}
    
    		}
    
    	}
    	return corner;
    
    }
    }
    
    
    
    

     

     

     

    Thanks for your help and other comments.

  3. There's a game breaking bug so that constructions and raids don't finish at all. :thumbdown: Can't build anything because all my builders are busy glitching for hours. well it's beta and they are working on it <_<

  4. Got my final exam in statistical physics tomorrow, starting to read for it just now :thumbsup:

    not sure if I should put all my effort in some area and hope to get lucky with the questions.

  5. When killing mith dragons I think the most important thing is maintaining your inventory so that you can pick up ALL drops. All bones, mithril bars etc. I found the best way to be ruby and diamond bolts (ruby till half hp or so). Depending what BoB you use, you should aim at 6-12 kills per trip.

  6. Who are you playing with, if I may ask?

     

    Also, I'm with Sodom, so I can probably help you out in some way.

    I play as a hermit and don't require help, but won't refuse it if it comes my way.

    I used to be a farmer but now I think I'm going more warrior-styled.

  7. Got thrown into a hacked lobby/server w/e on ps3, killcam showed a guy using wallhack & a menu with things like unlimited ammo & godmode. After I left the game I had all perks, attachments, camos, challenges unlocked + lvl 70 and prestige 5 I think, 5 stars next to my name.

    Not too sure if I should be pissed or happy, now I don't have to waste my time being a challenge-[bleep]. 10-20 hours played, everything unlocked, how cool is that.

    Didn't know that there were hacks in this game, learned something today I guess. Not buying cod or activision online multiplayer games anymore if they let hackers run loose on their games like this. Good game.

  8. This is like my dream mmorpg v. 0.2.

    I've thought that the solution to get rid of grinding in mmorpgs is permanent death, permanent death however creates a bundle of new problems. My theorized solutions were: ability to have more than one character (losing one doesn't hurt so much), turn based combat (hexagonal map tiles, easier to control multiple characters), no NPC monster spawns after server goes up (to make grinding even more impossible), when you level up you can assign combat points (no grinding doesn't have to mean no character development).

    I'll definitely try this out. It looks a bit crude and I doubt how well it can keep the player's interest, but the game mechanics look new and interesting, and will make the community work differently than in other mmorpgs.

  9. Yes, I think about my future. Education doesn't guarantee you a good life or a better paying job. Hedonism isn't getting us anywhere. We are playing in a loop of generations just [bleep]ing around. The future is a lie.

     

    //wrist

     

    Where did this 21st century pessimism come from? Someone shoot it please.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.