Page 1 of 6 12345 ... LastLast
Results 1 to 15 of 90
http://idgs.in/591054
  1. #1
    Edy's Avatar
    Join Date
    May 2007
    Location
    Surabaya Big Country Indonesia City
    Posts
    14,862
    Points
    1,744.38
    Thanks: 1,554 / 3,594 / 1,773

    Default Pencet CTRL - V dan post disini

    Pencet CTRL - V dan Langsung post disini

    I dare you.

    Gue pengen tahu terakhir kali loe ketik apaan.



    nb : semua link2 bokep akan di sensor *
    win-win solution adalah anak kecil dibully sama orang gede terus dikasih permen biar diem
    :D

  2. Hot Ad
  3. #2

    Join Date
    Oct 2012
    Location
    She cautioned <3
    Posts
    1,732
    Points
    2.35
    Thanks: 45 / 108 / 94

    Default


  4. #3
    RiXtopia's Avatar
    Join Date
    Dec 2007
    Location
    Western Jakarta Former ID: ∙ ∙ ∙ RiX777
    Posts
    1,736
    Points
    7,206.21
    Thanks: 219 / 769 / 291
    TIDAK MENERIMA BARCEN

  5. #4
    SBY-pOpOLOnG's Avatar
    Join Date
    Mar 2008
    Location
    ¤ • 泗水 • ¤
    Posts
    27,059
    Points
    3,087.51
    Thanks: 756 / 871 / 669
    OFFICIAL PENSI DOTA 1 IDGS - MOVE ON DOTA 2

  6. #5
    fiqicoolz's Avatar
    Join Date
    Oct 2008
    Location
    Diinjek
    Posts
    1,968
    Points
    6,751.05
    Thanks: 51 / 48 / 40
    ded

  7. #6
    amber's Avatar
    Join Date
    Oct 2006
    Location
    earth..
    Posts
    3,212
    Points
    13,050.93
    Thanks: 81 / 52 / 47

    Default

    *NULL*

    clipboard gw kosong

    edit: oh maaf saya emang oon, maksudnya post sebelum ini ya...

    http://forum.indogamers.com/showthre...t=#post7651715
    Last edited by amber; 01-12-12 at 16:39.
    Man, the power of MOE is frightening!



  8. #7
    IndriChan's Avatar
    Join Date
    Nov 2010
    Location
    Perumahan Taman duta Jl Palem 9 No 18/F5 Cisalak - Depok
    Posts
    3,955
    Points
    1,425.54
    Thanks: 155 / 280 / 183

  9. #8
    dexmas's Avatar
    Join Date
    Sep 2007
    Location
    rock city
    Posts
    1,932
    Points
    1,729.70
    Thanks: 302 / 165 / 141

  10. #9
    DARKMASTERs's Avatar
    Join Date
    Oct 2008
    Location
    Under the Westway
    Posts
    7,380
    Points
    11.46
    Thanks: 47 / 199 / 154
    U-N-I-T-E-D
    United are the team for me
    With A knick knack paddy whack give a dog a bone
    Why dont City f*ck off home

    "I have to train with 10 men [to prepare for the Barcelona semi-final], how to play with 10 men, because I go there with Chelsea, I finish with 10, I go there with Inter, I finish with 10 and I have to train to play with 10 men because it can happen again" - Jose Mourinho

  11. #10
    savage's Avatar
    Join Date
    Jul 2009
    Posts
    2,416
    Points
    1,760.15
    Thanks: 356 / 364 / 179

    Default

    -sdabuls6fnd3soos
    free dota2 key! pm me :D

  12. #11
    Dying~'s Avatar
    Join Date
    Dec 2011
    Posts
    9,217
    Points
    11.14
    Thanks: 89 / 311 / 279
    Hidup itu seperti Making Love, Kadang Di bawah Kadang di atas , nikmatin ajalah .
    Life Is Never FLAT
    Hidup Itu Tak Semudah COCOD'e Mario Teguh !




  13. #12
    Janz's Avatar
    Join Date
    Dec 2011
    Location
    Midnight tavern
    Posts
    226
    Points
    0.12
    Thanks: 2 / 3 / 3

  14. #13
    LunarCrusade's Avatar
    Join Date
    Jun 2008
    Location
    Unseen Horizon
    Posts
    8,965
    Points
    30,120.80
    Thanks: 298 / 586 / 409

    Default

    AS:
    BS:
    Agi:
    Ref:
    Conc:
    Judg:
    Luk:


    +Personal Corner | Lunatic Moe Anime Review
    +My Story INDEX
    +GRP/BRP Formula | IDGS Newbie Guide


    The moment you say a word of parting, you've already parted.
    So long as you and I are both somewhere in this world, we haven't parted.
    So long as you don't say it, you haven't parted.
    That is the way of the world:
    The Law of Linkage.

    Shichimiya Satone - Sophia Ring S.P. Saturn VII

  15. #14
    Autowin-_-Hhe~'s Avatar
    Join Date
    Jun 2012
    Location
    Tangerang
    Posts
    1,102
    Points
    1,306.24
    Thanks: 57 / 36 / 33


    Quote Originally Posted by d[-_-d] View Post
    apso seriusan ?
    ***** please !

  16. #15
    gegehare's Avatar
    Join Date
    Oct 2007
    Location
    root@linux:~#
    Posts
    5,365
    Points
    11.50
    Thanks: 153 / 213 / 165

    Default

    package tugassembilanbelasnov;

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    import javax.swing.border.LineBorder;



    public class TicTacToe extends JApplet {


    // Indicate which player has a turn, initially it is the X player
    private char whoseTurn = 'X';

    // Create and initialize cells
    private Cell[][] cells = new Cell[3][3];

    // Create and initialize a status label
    private JLabel jlblStatus = new JLabel(" "+"X's turn to play");


    /** Initialize UI */
    public TicTacToe() {
    jlblStatus.setHorizontalTextPosition(JLabel.CENTER );



    // Panel p to hold cells
    JPanel p = new JPanel(new GridLayout(3, 3, 0, 0));

    for (int i = 0; i < 3; i++)
    for (int j = 0; j < 3; j++)
    p.add(cells[i][j] = new Cell());

    // Set line borders on the cells panel and the status label
    p.setBorder(new LineBorder(Color.red, 1));
    jlblStatus.setBorder(new LineBorder(Color.red, 1));

    // Place the panel and the label to the applet
    add(p, BorderLayout.CENTER);
    add(jlblStatus, BorderLayout.SOUTH);
    }

    /** Determine if the cells are all occupied */
    public boolean isFull() {
    for (int i = 0; i < 3; i++)
    for (int j = 0; j < 3; j++)
    if (cells[i][j].getToken() == ' ')
    return false;

    return true;
    }

    /** Determine if the player with the specified token wins */
    public boolean isWon(char token) {
    for (int i = 0; i < 3; i++)
    if ((cells[i][0].getToken() == token)
    && (cells[i][1].getToken() == token)
    && (cells[i][2].getToken() == token)) {
    return true;
    }

    for (int j = 0; j < 3; j++)
    if ((cells[0][j].getToken() == token)
    && (cells[1][j].getToken() == token)
    && (cells[2][j].getToken() == token)) {
    return true;
    }

    if ((cells[0][0].getToken() == token)
    && (cells[1][1].getToken() == token)
    && (cells[2][2].getToken() == token)) {
    return true;
    }

    if ((cells[0][2].getToken() == token)
    && (cells[1][1].getToken() == token)
    && (cells[2][0].getToken() == token)) {
    return true;
    }

    return false;
    }

    // An inner class for a cell
    public class Cell extends JPanel {
    // Token used for this cell
    private char token = ' ';


    public Cell() {
    setBorder(new LineBorder(Color.red, 1)); // Set cell's border
    addMouseListener(new MouseListener()); // Register listener
    }

    /** Return token */
    public char getToken() {
    return token;
    }

    /** Set a new token */
    public void setToken(char c) {
    token = c;
    repaint();
    }

    /** Paint the cell */
    protected void paintComponent(Graphics g) {

    super.paintComponent(g);




    g.setColor(Color.red);
    if (token == 'X') {
    g.drawLine(10, 10, getWidth() - 10, getHeight() - 10);
    g.drawLine(getWidth() - 10, 10, 10, getHeight() - 10);

    }
    else if (token == 'O') {
    g.drawOval(10, 10, getWidth() - 20, getHeight() - 20);
    g.fillOval(10,10,getWidth() - 20,getHeight() - 20);
    }
    }

    private class MouseListener extends MouseAdapter {
    /** Handle mouse click on a cell */
    public void mouseClicked(MouseEvent e) {


    // If cell is empty and game is not over
    if (token == ' ' && whoseTurn != ' ') {
    setToken(whoseTurn); // Set token in the cell

    // Check game status
    if (isWon(whoseTurn)) {
    jlblStatus.setHorizontalTextPosition(JLabel.CENTER );
    jlblStatus.setVerticalTextPosition(JLabel.CENTER);
    jlblStatus.setForeground(Color.green);

    jlblStatus.setText(" "+whoseTurn + " won! The game is over");

    whoseTurn = ' '; // Game is over


    }
    else if (isFull()) {
    jlblStatus.setText(" "+"Draw! The game is over");
    whoseTurn = ' '; // Game is over
    jlblStatus.setForeground(Color.red);
    }
    else {
    jlblStatus.setHorizontalTextPosition(JLabel.CENTER );
    jlblStatus.setVerticalTextPosition(JLabel.CENTER);
    whoseTurn = (whoseTurn == 'X') ? 'O': 'X'; // Change the turn
    jlblStatus.setText(" "+whoseTurn + "'s turn"); // Display whose turn
    }
    }
    }
    }
    }




    /** This main method enables the applet to run as an application */
    public static void main(String[] args) {
    // Create a frame
    JFrame frame = new JFrame("TicTacToe");

    // Create an instance of the applet
    TicTacToe applet = new TicTacToe();

    // Add the applet instance to the frame
    frame.add(applet, BorderLayout.CENTER);


    // Display the frame
    frame.setSize(300, 300);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS E);
    frame.setVisible(true);
    }
    }

    Who is Trafalgar Law? The Captain and Doctor of the Heart Pirates? a Man with bounty 200.000.000 Beli? Surgeon of Death? No , He is just a Rookie Pirate who know the meaning about "Will of D."

    "I told you, I'm waiting for the right time...Dont get rushed, "One Piece" isn't going anywhere...Now, enough talking, Shut up and follow my orders...I'll be sure, To steal the proper throne" - Trafalgar Law

    GeGeHaRe One Piece Predictions
    New Nakama - Country Of Brigands - Wano Country - X Mark - Fire Sword

Page 1 of 6 12345 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •