HOME

Tuesday, October 27, 2009

FARMVILLE BOT that works!


FARMVILLE BOT that works!


Bot for FarmVille Site: farmvillebot.net  This bot can automatically: – Plant crops – Harvest crops from land and from trees – Get products from livestock Also, this bot allows you to halve the time necessary for crops to ripen!!! Unlike the rest of bots, this one operates not by clicks, but by sending requests to the game server. It is a more reliable method. Do the following to start the bot: 1. If your default browser is different from Internet Explorer, open Internet Explorer and log in at http://facebook.com selecting the “Remember Me” checkbox. 2. Close Internet Explorer. 3. Run the “farmvillebot” program. 4. Wait till the farm is loaded. 5. Open the “Settings” tab. Specify the necessary settings. That’s all. The bot is ready to work instead of you. You can minimize the program and get down to your business...

galing!!!

Farmville Cheats Tips and Tricks Level Up Fast

Here is a great cheat for Farmville, where you can get a ton of experience points to help you level up fast. All you have to do is click on a friend and chose the “visit/help a friend’s farm” wait for the farm to load, then when it says accept to help don’t click it, instead click the same friends icon again and click “visit/help a friends farm” again.  Keep doing this as many times as you like, I usually do this about 20 times.  Then there will be 20 accept boxes waiting for you to click on.  Each time you click one you will gain 5 experience points, plus you will get 20 coins every time also.

Tuesday, October 13, 2009

Facebook Now Running Over 30,000 Servers

Facebook Now Running Over 30,000 Servers

Shared via AddThis

Sunday, October 11, 2009

Numbers to Roman Numerals Converter - JAVA Programming Sample Codes

Howdy!,

Just wanna share my codes generated for Java Applet (JAVA Programming language) which converts Numbers into Roman Numerals...

import java.applet.*;
import java.awt.*;
import java.awt.event.*;

public class NumberstoRoman extends Applet implements ActionListener
{
    Label line1 = new Label ("_________________________________________________");
    Label title = new Label ("        ROMAN NUMERAL IDENTIFIER                ");
    Label line2 = new Label ("_________________________________________________");
    Label enter1 = new Label("Enter Number [1-3000]:  ");
    Button b1 = new Button("      Compute    ");
    Button b2 = new Button("  Clear ");
    Font big = new Font ("Verdana", Font.BOLD,22);
    Font rodsoft = new Font ("Arial", Font.ITALIC,10);
    Label spcr1 = new Label ("                                                                                                                  ");
    Label result = new Label ("The Roman Numerals are :                   ");
    Label rod1 = new Label ("Developed by:");
    Label rod2 = new Label ("rodsoft:---> http://successum.blogspot.com");
    TextField number = new TextField(8);
   
    public void init()
    {
        title.setFont(big);
        rod2.setFont(rodsoft);
        add(line1);
        add(title);
        add(line2);
        add(enter1);
        add(number);
        add(b1);
        add(b2);
        add(result);
        add(spcr1);
        add(rod1);
        add(rod2);
        number.requestFocus();           
        number.addActionListener(this);           
        b1.addActionListener(this);
        b2.addActionListener(this);

    }
    public void start()
    {
        number.setText("");
        result.setText("The Roman Numerals are:                      ");
        invalidate();
        validate();

    }


    public void actionPerformed(ActionEvent e)
    {
    String romn = "";
        int x = Integer.parseInt(number.getText());       

        {
        if (x>3000)
         {
        result.setText("The Roman Numerals are: out of range!:");
        }   
    }   

    {
    if (e.getSource()==b1)
        {
        while (x > 3000)
            {
                romn += "out of range!:";
                x -= 3000;
            }

             while (x >= 1000)
            {
                romn += "M";
                    x -= 1000;
                }
            while (x >= 900)
            {
                romn += "CM";
                x -= 900;
                }
        while (x >= 500)
            {
                romn += "D";
                x -= 500;
            }
            while (x >= 400)
            {
                romn += "CD";
                x -= 400;
                }
           while (x >= 100)
            {
                romn += "C";
                x -= 100;
                }
           while (x >= 90)
            {
                romn += "XC";
                x -= 90;
                }
           while (x >= 50)
            {
                romn += "L";
                x -= 50;
                }
           while (x >= 40)
            {
                romn += "XL";
                x -= 40;
                }
           while (x >= 10)
            {
                romn += "X";
                x -= 10;
                }
           while (x >= 9)
            {
                romn += "IX";
                x -= 9;
                }
           while (x >= 5)
            {
                romn += "V";
                x -= 5;
                }
           while (x >= 4)
            {
                romn += "IV";
                x -= 4;
                }
           while (x >= 1)
            {
                romn += "I";
                x -= 1;
                }
            result.setText("The Roman Numerals are : "+romn);
           }
   



    else if (e.getSource()==b2)
            {
            number.setText("");
            result.setText("The Roman Numerals are :                   ");
            }
        }
    }
}









//This is only an applet...so you must create html to call on the applet to execute.