[♥] Kiddo [♥]
_l_ you!
©Copyrighted


Friday, May 1, 2009
HD Playback Youtube @7:43 PM





Tuesday, February 10, 2009
Maphack for those PLB student @6:01 AM

Guys heres the Maphack for u all Maphack
=========================================
Instructions
=========================================
Unzip and Login using the pass and it ^^ pass oni to PLB
==================
Note:
Now on 11 Feb 09 Gerana Patch it i nid to ReCrack


Monday, February 9, 2009
Guys Regarding On Maphack @3:37 AM

Guys I gona implement a system on the maphack and will be allowed only to PLB or friends ^^ Tml is the release Of maphack


Thursday, February 5, 2009
Valentime Gift to All Friends @3:49 AM

Heres the link to download: Valentime Gift

Instructions To Setup if encounter a problem
============================================
Step 0.Download Present And Extract and run
1st. To change the Java JDK path right click the valentime.bat and modify this line
path C:\Program Files\Java\jdk1.6.0_03\bin //Modify the Bolded part
2nd. Enter Only Numbers While Following the Instructions on the CMD.
3rd. Enjoy Your Valentime Message ^^ By Kiddo hahas
4TH. ITS NOT A VIRUS U CAN SCAN ALL YOU WANT
===========================================
Send To Your Love Ones LOL


Wednesday, January 28, 2009
Java Switch Statement with Scanner @1:03 AM

same as below


Java Looping @12:59 AM

For Need the Code Request from Mi


Sunday, January 25, 2009
Java Coding Which i Made @4:51 AM

/**
*
* @author leslie
* From PL0901B
* Simei ITE ICT
*/


public class calculatetest{

public static void main(String[] args){

int marks;
marks= 100;
String grade,remarks,remarks1,fail,range;
remarks="Heres Your Grades";
remarks1="And Your Marks Range Fall Between";
fail="You Failed In Life Please Repeat KinderGarden Man!!! ";

if(marks>=90&&marks<=100){
grade="A++";
range="90-100";
}
else if (marks>=80&&marks<=90){
grade="A";
range="80-90";
}
else if (marks>=70&&marks<=80){
grade="B";
range="70-80";
}
else if (marks>=60&&marks<=70){
grade="C";
range="60-70";

}
else if (marks>=50&&marks<=60){
grade="D";
range="50-60";
}else if (marks<=50){
grade="F";
range="0-49";
System.out.println(fail);
}else{
grade="Invalid Grade Fag";
range="";
System.out.println("You Fail In Life Thats an Invalid Result");
}
System.out.println(remarks+" "+grade+" "+remarks1+" "+range);
}
}