Search:

Type: Posts; User: rmorris7

Search: Search took 0.24 seconds.

  1. Re: Bullets are not showing up across network client screen in game

    So am im updating this method


    public void processMove(String s){
    // Send command to tank not controlled by
    // this player
    tanks.get(1 - playerID).processMove(s);

    }
  2. Re: Bullets are not showing up across network client screen in game

    Thats what Im trying to figure out, I have been trying to solve this for 3 days now
  3. Re: Bullets are not showing up across network client screen in game

    The game works fine.The code does what its suppose to do. Its up and running however when I fire a bullet it doesnt show up on the other player's screen, just mine.
  4. Re: Bullets are not showing up across network client screen in game

    Let me be more specific. I believe the problem is coming from this class.


    class Tank implements Ball {

    double locX, locY, radius, angle;
    int self; // index of this tank in WarPanel.tanks...
  5. Bullets are not showing up across network client screen in game

    Hi all so I a tank war game thats ran over a network and is multiplayer, however whenever I fire a bullet it shows on my screen but not the other player's screen. Can you help, here's the code:

    ...
Results 1 to 5 of 5