XDO..
I'm finally back into the SDO-X world...

After downloading the full version AGAIN for 3 days...

Now, I'm playing 2 ID's...

ID 1: DeathTeaM [Lvl 21]
ID 2: [SoZai]BlaNc [Lvl 9]

Not bad ehh??

Hahahaha...

Been back in Sandakan for about a week already.. Gonna be back in KK the following Monday...
Time to hit the books again...
Sigh....

Monday, April 28, 2008 [DeathTeaM]†BlaNc† Sprayed.
Frust!!
XDO 's new patch sucks.. Made my whole client corrupt[i think]...

FRUSTRATION...!!!!!


Now I have to download the whole client again... It's been 3.5hours since i started to download and it just reached the 10.5%.. Another 89.5% to go... It'll take me ages to dl... WTFFFF!!!


Stupid XDO.. Next time, create a patch that is problem-free for all users....

Thursday, April 24, 2008 [DeathTeaM]†BlaNc† Sprayed.
last day of exam...
Yay..
Today is the last day of exam..
So happy..
But that paper kan..
I hope to just pass la..
Dun have high hopes on that..
Sigh..
Going back to Sandakan tomorrow...
Another thing to be happy about...
Hahaha...

Saturday, April 19, 2008 [DeathTeaM]†BlaNc† Sprayed.
4th day of exam week..
Yay..
Finished my 3rd paper...
Advanced English...
It wasn't so hard until I ran outta ideas on what to write..
Hahaha...
Ran outta points to include to my essay..
Anyways..
I have a break tomorrow..
Final paper on saturday..
Then I'm totally FREE..
YAY..
Last paper to go..
Intermediate Maths..
Just hope that I don't fail again...
So embarassing..

Thursday, April 17, 2008 [DeathTeaM]†BlaNc† Sprayed.
3rd day of exam week...
Today, I'M FREE..

There's no paper for me to sit today..

But tomorrow I have to sit for my Advanced English paper..

Just hoping for the best tomorrow...

But why does the exam unit place our exam time from 4-7pm??

That'll be the third paper I'll be sitting for this semester at that time...

Sigh...

Wednesday, April 16, 2008 [DeathTeaM]†BlaNc† Sprayed.
Exam 2nd day...
Today is the 2nd day of exam..
After today I get a day's break..
Whooo~~
Today's paper is Introduction to Programming..
In other words, C++ Programming...
Sigh...
Dunno how to write later...
After today, 2 more papers to go...

Tuesday, April 15, 2008 [DeathTeaM]†BlaNc† Sprayed.
EXAM...
OMG.. Exam is finally here...

Tomorrow is my first paper:
INTRODUCTION TO DATABASE

4pm till 7pm lagi tuu.. Don't know if I'm gonna be sleepy or not lerrr...

Mati laa.. WTH subject is this i also dunno...

Ms Lisa ahh.. I'm hoping your exam questions to be easy..

Hahaha...

DIE DIE DIE...

Sunday, April 13, 2008 [DeathTeaM]†BlaNc† Sprayed.
c++
Denise.. You've been asking is C++ Programming hard.. Well, I can't say it's easy or it's hard. But I think I'll let you decide.. Below is the coding for a simple hangman game..



C++ coding:

//HANGMAN GAME


#include


void main()

{
int x=1,h=0,y=1,a;
char Answer[9]="sweater",ccb;
Answer[0]='*';
Answer[1]='*';
Answer[2]='*';
Answer[3]='*';
Answer[4]='*';
Answer[5]='*';
Answer[6]='*';


cout <<"===========================" << endl;
cout <<"Welcome to my hangman game" << endl;
cout <<"===========================" << endl;
cout << "Word=" << Answer << endl;


while((x<7)&&(y<10))
{
cout << "Guess A Letter:" << endl;
cin >> ccb;


switch(ccb)
{
case's':
Answer[0]='s';
cout << Answer << endl;
x++;
break;

case'w':
Answer[1]='w';
cout << Answer << endl;
x++;
break;

case'e':
Answer[2]='e';
Answer[5]='e';
cout << Answer << endl;
x++;
break;

case'a':
Answer[3]='a';
cout << Answer << endl;
x++;
break;

case't':
Answer[4]='t';
cout << Answer << endl;
x++;
break;

case'r':
Answer[6]='r';
cout << Answer << endl;
x++;
break;

default:
if (y==1)
{
cout << " +-----+ " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " ========= " << endl;
y++;
cout << "Chances Left:7" << endl;
cout << Answer << endl;
}

else if (y==2)
{
cout << " +-----+ " << endl;
cout << " | | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " ========= " << endl;
y++;
cout << "Chances Left:6" << endl;
cout << Answer << endl;
}

else if (y==3)
{
cout << " +-----+ " << endl;
cout << " | | " << endl;
cout << " | o " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " ========= " << endl;
y++;
cout << "Chances Left:5" << endl;
cout << Answer << endl;
}

else if (y==4)
{
cout << " +-----+ " << endl;
cout << " | | " << endl;
cout << " | o " << endl;
cout << " | | " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " ========= " << endl;
y++;
cout << "Chances Left:4" << endl;
cout << Answer << endl;
}

else if (y==5)
{
cout << " +-----+ " << endl;
cout << " | | " << endl;
cout << " | o " << endl;
cout << " | /| " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " ========= " << endl;
y++;
cout << "Chances Left:3" << endl;
cout << Answer<< endl;
}

else if (y==6)
{
cout << " +-----+ " << endl;
cout << " | | " << endl;
cout << " | o " << endl;
cout << " | /|\\ " << endl;
cout << " | " << endl;
cout << " | " << endl;
cout << " ========= " << endl;
y++;
cout << "Chances Left:2" << endl;
cout << Answer << endl;
}

else if (y==7)
{
cout << " +-----+ " << endl;
cout << " | | " << endl;
cout << " | o " << endl;
cout << " | /|\\ " << endl;
cout << " | / " << endl;
cout << " | " << endl;
cout << " ========= " << endl;
y++;
cout << "Chances Left:1" << endl;
cout << Answer << endl;
}

else if (y==8)
{
cout << " +-----+ " << endl;
cout << " | | " << endl;
cout << " | o " << endl;
cout << " | /|\\ " << endl;
cout << " | / \\ " << endl;
cout << " |GameOver " << endl;
cout << " ========= " << endl;
cout << Answer << endl;
y++;
}

}


}

cout << "Do You Want To Play Again?" << endl;
cout << "Press 1 for YES" << endl;
cout << "Press 2 for NO" << endl;
cin >> a;

if (a==1)
main();

else if (a==2)
cout << "Thanks for playing" << endl;




}


}


Crappy program as the game is only played with one word... So yeah.. You decide whether it's hard or not... Sorry if the coding doesn't work out.. Clash with HTML codes..

Thursday, April 10, 2008 [DeathTeaM]†BlaNc† Sprayed.
AAAARRRGGGHHHHHH...
Exam's coming soon... Stressed out laaa... Although only for subjects.. But still, it's stressing me out.. Luckily I passed all of my LAN subjects.. If I have to take it again, I'll surely suicide.. Malaysian Studies and Moral Studies are such a bore...

My 4 subjects:
Advanced English
Introduction to Database
Introduction to Programming
Intermediate Maths


OMG.. So stressed out...

Aihzzz.. Someone please save me... I don't think I can stand this pressure any longer...

Wednesday, April 09, 2008 [DeathTeaM]†BlaNc† Sprayed.
updates...
Hahaha... Haven't been updating for quite a long time now.. Nothing much happened actually.. So I haven't been bothered to blog.. Well, I've been playing a couple of new games lately.. Cabal and also XDO.. Well, XDO isn't quite new... Cabal is quite OK lahh.. But I think it's not my type of game.. Baru level 9 in Cabal.. Really slow... On the other hand, XDO is quite fun.. Hahaha.. Level 15 already.. Nt bad ehh??

There is a certain spammer spamming in my cbox these few days.. That person's nickname is Human. Well Human, No matter how much you spam, I can still delete them all.. U think I'm stupid not to administer my cbox?? Anyways, stop spamming as spammers are lamers.. U know what is lame?? Judging by your character, I think you wouldn't know.. Why don't you go get yourself a dictionary, open it up, and then search for the word 'LAME'.

Tuesday, April 08, 2008 [DeathTeaM]†BlaNc† Sprayed.
My wall, my rule.
You don't like my blog, Get lost. You hate me, don't bother to come in. F*ck off my blog if you're a hater. Playa's are welcome.

Twitter


The Owner Of The Wall
The blog is back ON! Not really frequent updates, but you will find updates every week.

Ads!
Help me by clicking on the ads. Thanks.

BlogMalaysia.com




The Wall Of Sprays!
The Chatbox