/* CSS Style */


The Dumb Blog v1
Dumbness & Retardedness & Simplicity


Written on :
Friday, February 12, 2010

Hello Guys...i know i know, it's just one day yet other new post :D
Today went to school as usual although it's chinese new year because the concert start at 11:00 am :P
Had a enjoyable day during the concert especially becasue Jackie was our class model for the fashion show and he's funny.
Although didn't get to watch the concert in the hall because i was on P.A Duty. What is P.A. ? Seriously, i oso dunnoe, i only know P.A. Job is to prepare visualiser for assembly to use, it's kinda like a techinician job :D, which is related to computer, that the reason why i join MIC in my school! xD
Alright News Break.
/* Start of SpasticMS Fishball NPC */
var status;

function start() {
status = -1; // start with -1 status
action = (1,0,0);
}

function action(mode, type, selection) {
if(mode == -1) {
cm.sendOk("GoodBye Noob");
} else {
if(mode == 1) {
status++; // +1 to the status making it 0
} else {
status--;
} else if (status == 0) {
cm.sendNext("Hello #h #, I am the Fishball Immigration Authority");
} else if (status == 1) {
cm.sendNextPrev("Now, i will check your inventory for snowball(which looks like fishball)");
} else if (status == 2) {
if(cm.haveItem(2060005 >= 1)) { // Scan for 1 or more fishball
cm.sendOk("Dear #h #, you have 1 or more fishball, so i am afraid i can't let you pass the immigration checkpoint.");
cm.unequipEverything(); // unequip players armour, weapon, etc
cm.clearSkills(); // clear all the skill learn by the player.
cm.changeJob(000); //make your job a beginner
cm.clearKeys();
cm.broadcastMessage(1, "This is what happen when you smuggle fishball in!"); // popup a message tell him the text inside the " ".
} else {
cm.dispose();
cm.warp(100000000, 0); // warp you to henesys
cm.broadcastMessage(1, "Good Job for not smuggling Fishball in!");
}
}
/* Credit : GunZStyler */