Jump to content

Pwnious

Members
  • Posts

    73
  • Joined

  • Last visited

Posts posted by Pwnious

  1. Does the MAndriva Linux 2005 le come with MySQL and PHP?

    If it does where do i find the database name, username, and password?

  2. Hi, has anyone made an extreme pong on C++, Java, or Basic? I have started on it with Java but then lost my mind over it. Here's the code so far:

    import java.awt.*;
    import java.applet.*;
    public class MainPong extends Applet
    {
    
       
    static int ballx = 100;
    int bally = 100;
    int radii = 20;
    static int velball = 10;
    boolean var = true;
    int bufferWidth;
       int bufferHeight;
       Image offscreen; 
       static Graphics bufferGraphics;
       Dimension dim; 
       int dix,diY;
       
       public static void Main()
       {
         
     paint();
         ballmove();
    
       }  	
    public void paint(Graphics g)
    {
     //color of ball//
     g.setColor(Color.yellow);
     //ball stat//
     g.fillOval (ballx - radii, bally - radii, 2 * radii, 2 * radii); 
     	
    
    
    }
     public static void ballmove()
     {
     	ballx = ballx-velball;
     if (ballx <= 10)
     {
     	ballx = 10;
     	velball = 20;
     }
    
    
     if (ballx >= 200)
     {
     	ballx = 200;
     	velball = -20;
     }
     }
    
    }

     

    Post yours, but if you interested in making it and never have made one we should have a contest. And should we do this in C++ or java?

  3. Isn't there a program that sets it as static or something.

     

    If this is a linux server, you can run a dhcp program that will watch for if your IP changes, and if it does, have it perform certain operations/commands, launch scripts, etc.

    does anyone know what the program is?

  4. Oh, :P :thanks:

     

    Lol

     

    When it showed me the install screen it said install from (many choices),so I chose hard drive. Then it showed me a screen that had: choose from the following: hda1 hda2 hda5. I chose each of these. and then I had to type in the directory the iso(cd image) is in. I put the iso image in C:\mandriva. When I typed that in it said error could not find file. where should I place the cd image or what should i type on the screen?

  5. BlitzBasics?!?!?!?

     

    Not to be mean, but thats for noobs because its extremely easy and its worthless. If you decide on making a game and distribute it, then I should tell you that it won't work on most of the computers. I used it 5 years ago and made a RPG. I wanted to sell it, but no other computers could play except for two. Now I now use C++, but I don't know if I can use it in Linux, because I havn't installed it yet.

×
×
  • Create New...