Wednesday, July 30
8:11 PM
less and less time to blog.. been going out to take photos! muahahahah my camera so gd everyone wans to borrow it from me to take photos... so i went with those who borrowed my camera.. choon yee... jiamin... isnady... went to bugis, southern ridges and also suntec past few days.. photos photos photos.. dpm dpm dpm...
Sunday - went to southern ridges with jiamin and hong ching.. to take photos for jiamin's DPM.. so hot so tiring so many mosquito bites!! zz =X but was fun though! aiyo but then hong ching n jiamin take turns to emo =.=
Monday - stayed in school to help choon yee and nimrod PDA.. managed to help them do their entire piece of code... thx nimrod for treating me to KFC =) found out that nimrod is a musician after a chat with him o.O grade 8 piano n noe how to sing opera (or something like tat.. dunno wad it realli is..) he got a diploma for some music thingy from london o.O...
Tuesday - FINALLY LAST LESSON OF COMMT AND IAC..
for (var i:Number = 0 ; i<999999999 ; i++)
{
trace ("WOOT")
}
(for those who dont know actionscript 2.... the above code is to display "WOOT" 999999999 times.)
FINALLY NO COMMT N IAC SIA... =) glad its all over.. btw after IS, stayed back in school to play Devil May Cry 4!~!~ thanks hong ching for the game! i am addicted to it now!! =) finally a game that is so fun =)
WHILE i am playing DMC4.. oran came in n persuaded me to join them to play COD4... lol.. A teacher begging you to play game with him and his clan? Priceless. ok so i joined them.. and got owned. THEY ARE LIKE SO PRO LA... give me time and i shall own u all back.. just u all wait.. =) LOL!
Wednesday - went to suntec with isnady in the morning.. to take his DPM photos... in the end took only a few.. as theres like nothing to take over at suntec... then, went to meet up with birthday boy choon yee at bugis.. he too borrowed my camera to take some photos.. after taking photos, we went to shop..
HAPPY BIRTHDAY CHOON YEE! btw sorry tat i didnt accompany u for the whole day and left with isnady instead.. =X

Taken this at henderson waves.. me taking hong ching taking jiamin taking henderson waves.. o.O
P.S. HAPPY BIRTHDAY CHOON YEE!! AND JEREME!!!! choon yee u happy now liao ar.. can officially smoke.. o.O
Sunday, July 27
11:36 AM
my game.. its more or less finalized.. i hope.. added powerups.. so tat it will be easier.. the super food will spawn every 5 levels.. also, make the cover thingy blink, so that you can see what is underneath it.. everything should WORK now... no bugs.. i hope... its finally a more or less completed game now..
ENJOY.
THE GAME!for those out there who wants to see the codes.. i guess nobody would like to see.. 384 lines of codes.. nearly ALL the codes have been taught in PDA.. except for a few here n there i learned myself.. abit messy.. never really organised it.. nor have time to add comments..
var manSpeed:Number = 15
var mySpeed1:Number = 15
var mySpeed2:Number = 12
var mySpeed3:Number = 10
var mySpeed4:Number = 8
var myRotation:Number = 0
var attached1:Boolean = false
var attached2:Boolean = false
var attached3:Boolean = false
var attachedBlock:Boolean = false
var attachedFood:Boolean = false
var gamePlaying:Boolean = false
var monsterMoving:Boolean = true
var pacMoving:Boolean = true
var pausing:Boolean = false
var invul:Boolean = false
var foodSpawn:Array = new Array()
var foodOnScreen:Boolean = false
var foodNo:Number = 0
var munch:Sound = new Sound()
munch.attachSound("myMunch")
var munchPlaying:Boolean = false
var death:Sound = new Sound()
death.attachSound("myDeath")
var deathPlaying:Boolean = false
var intro:Sound = new Sound()
intro.attachSound("myIntro")
var introPlaying:Boolean = false
var invulSound:Sound = new Sound()
invulSound.attachSound("myInvul")
var invulPlaying:Boolean = false
for (var i:Number = 5 ; i<999 ; i+=5)
{
foodSpawn[foodNo] = i
foodNo ++
}
attachMovie ("pacMan","pacMan",5,{_x:445.9,_y:314.2})
_root.pacMan._visible = false
attachMovie ("myStart","myStart",1,{_x:0,_y:0})
{
_root.myStart.onRelease = function()
{
_root.myStart.removeMovieClip()
startGame()
gamePlaying = true
_root.pacMan._visible = true
}
}
function startGame()
{
attachMovie ("myBackground","myBackground",2,{_x:0,_y:0})
_root.myBackground.onRelease = function()
{
if (pausing == false)
{
attachMovie ("pauseSymbol","pauseSymbol",9999,{_x:0,_y:0})
monsterMoving = false
pacMoving = false
pausing = true
_root.myReplay._visible = false
pauseMunch = munch.position
munch.stop()
pauseDeath = death.position
death.stop()
pauseIntro = intro.position
intro.stop()
pauseInvul = invulSound.position
invulSound.stop()
} else {
_root.pauseSymbol.removeMovieClip()
monsterMoving = true
pacMoving = true
pausing = false
_root.myReplay._visible = true
if (munchPlaying == true)
{
munch.start(pauseMunch/1000)
}
if (deathPlaying == true)
{
death.start(pauseDeath/1000)
}
if (introPlaying == true)
{
intro.start(pauseIntro/1000)
}
if (invulPlaying == true)
{
invulSound.start(pauseInvul/1000)
}
}
}
attachMovie ("myScore","myScore",12,{_x:550,_y:400})
attachInit()
}
function attachInit()
{
noSound()
intro.start()
introPlaying = true
pauseTime = 0
pauseStart = 0
pausing = false
pacMoving = true
monsterMoving = true
attachMovie ("myGrass","myGrass",3,{_x:random(550),_y:random(400)})
attachMovie ("food","food",4,{_x:random(550),_y:random(400)})
attachMonster1()
}
function endGame()
{
_root.myGrass.removeMovieClip()
_root.food.removeMovieClip()
_root.myMonster1.removeMovieClip()
_root.myMonster2.removeMovieClip()
_root.myMonster3.removeMovieClip()
_root.myMonster4.removeMovieClip()
_root.superFood.removeMovieClip()
_root.myBlock.removeMovieClip()
_root.myScore.myScore.text = 0
_root.pacMan._x = 275
_root.pacMan._y = 200
_root.pacMan._rotation = 0
attached1 = false
attached2 = false
attached3 = false
attachedBlock = false
attachedFood = false
invul = false
}
function noSound()
{
stopAllSounds()
deathPlaying = false
introPlaying = false
munchPlaying = false
invulPlaying = false
}
_root.onEnterFrame = function()
{
if (_root.myScore.myScore.text == 5)
{
if (attached1 == false)
{
attached1 = true
attachMonster2()
}
}
if (_root.myScore.myScore.text == 10)
{
if (attached2 == false)
{
attached2 = true
attachMonster3()
}
}
if (_root.myScore.myScore.text == 15)
{
if (attached3 == false)
{
attached3 = true
attachMonster4()
}
}
if (_root.myScore.myScore.text == 10)
{
if (attachedBlock == false)
{
attachMovie ("myBlock","myBlock",11,{_x:random(550),_y:random(400)})
attachedBlock = true
}
}
for (var i:Number = 0 ; i
{
if (_root.myScore.myScore.text == foodSpawn[i])
{
if (attachedFood == false)
{
foodOnScreen = true
attachMovie ("superFood","superFood",6,{_x:random(550),_y:random(400)})
attachedFood = true
_root.superFood.onEnterFrame = function()
{
if (this.hitTest(_root .pacMan))
{
noSound()
invulSound.start()
invulPlaying = true
munch.start()
this.removeMovieClip()
foodOnScreen = false
invul = true
_root.pacMan._alpha = 50
}
}
}
}
}
invulSound.onSoundComplete = function()
{
invul = false
_root.pacMan._alpha = 100
}
}
function attachMonster1()
{
thisMov = attachMovie ("myMonster","myMonster1",7,{_x:0,_y:0})
thisMov.speed = mySpeed1
thisMov.onEnterFrame = MoveMonster
myMonster1._alpha = 50
myMonster1._xscale = 150
myMonster1._yscale = 150
}
function attachMonster2()
{
thisMov = attachMovie ("myMonster","myMonster2",8,{_x:550,_y:0})
thisMov.speed = mySpeed2
thisMov.onEnterFrame = MoveMonster
myMonster2._alpha = 50
}
function attachMonster3()
{
thisMov = attachMovie ("myMonster","myMonster3",9,{_x:0,_y:400})
thisMov.speed = mySpeed3
thisMov.onEnterFrame = MoveMonster
myMonster3._alpha = 50
myMonster3._xscale = 50
myMonster3._yscale = 50
}
function attachMonster4()
{
thisMov = attachMovie ("myMonster","myMonster4",10,{_x:550,_y:400})
thisMov.speed = mySpeed4
thisMov.onEnterFrame = MoveMonster
myMonster4._alpha = 50
myMonster4._xscale = 25
myMonster4._yscale = 25
}
_root.pacMan.onEnterFrame = function()
{
if (gamePlaying == true && pacMoving == true)
{
if (Key.isDown(Key.UP))
{
this._y -= manSpeed
this._rotation = 270
myRotation = 270
this.play()
}
else if (Key.isDown(Key.DOWN))
{
this._y += manSpeed
this._rotation = 90
myRotation = 90
this.play()
}
else if (Key.isDown(Key.RIGHT))
{
this._x += manSpeed
this._rotation = 0
myRotation = 0
this.play()
}
else if (Key.isDown(Key.LEFT))
{
this._x -= manSpeed
this._rotation = 180
myRotation = 180
this.play()
}
}
if(this._x > 550)
{
this._x = 0
}
if(this._x < 0)
{
this._x = 550
}
if(this._y > 400)
{
this._y = 0
}
if(this._y < 0)
{
this._y = 400
}
if (this.hitTest(_root.food))
{
munch.start()
munchPlaying = true
_root.food._x = random(550)
_root.food._y = random(400)
_root.myScore.myScore.text = Number(_root.myScore.myScore.text) + 1
_root.myGrass._xscale += 10
_root.myGrass._yscale += 10
_root.myBlock._xscale += 50
_root.myBlock._yscale += 50
if (foodOnScreen == false)
{
attachedFood = false
}
}
if (this.hitTest(_root.myGrass))
{
manSpeed = 3
}
else if (this.hitTest(_root.myBackground))
{
manSpeed = 15
}
}
function MoveMonster()
{
if (monsterMoving == true)
{
if (this.hitTest(_root.myGrass))
{
this._x -= (this._x-_root.pacMan._x) / 22
this._y -= (this._y-_root.pacMan._y) / 22
} else {
this._x -= (this._x-_root.pacMan._x) / this.speed
this._y -= (this._y-_root.pacMan._y) / this.speed
}
if (this.hitTest(_root.pacMan) && invul == false)
{
if (gamePlaying == true)
{
noSound()
_root.pacMan._visible = false
gamePlaying = false
death.start()
deathPlaying = true
attachMovie ("pacDead","pacDead",_root.getNextHighestDepth(),{_x:_root.pacMan._x,_y:_root.pacMan._y})
_root.pacDead._rotation = myRotation
attachMovie ("myReplay","myReplay",_root.getNextHighestDepth(),{_x:275,_y:200})
_root.myReplay.onRelease = function()
{
_root.pacDead.removeMovieClip()
_root.myReplay.removeMovieClip()
endGame()
attachInit()
gamePlaying = true
_root.pacMan._visible = true
myRotation = 0
}
}
}
}
}
intro.onSoundComplete = function()
{
introPlaying = false
}
munch.onSoundComplete = function()
{
munchPlaying = false
}
death.onSoundComplete = function()
{
deathPlaying = false
}
invulSound.onSoundComplete = function()
{
invulPlaying = false
}
Saturday, July 26
11:29 AM
did more programming... now 306 lines of codes and counting! its much harder now.. especially after level 10... pause is now working perfectly...
ENJOY!
Link.now i m trying to make a super food which when u eat, it grants you temporarily invulnerability... BUT I DUNT NOE HOW TO DO FREAKING TIMER CRAP!.. zzzzzz i shall research on timer once i got the time.. =X
Friday, July 25
8:44 PM
my game! made this game during my PDA lesson today... some noob shit game.... simple.. but yet requires skill to get a good score... so far my best is 34 =(
just found out that this simple crap consists of 234 lines of codes... LOL... i wonder how complex the real pacman is...
Link.ENJOY!
5:20 PM
sorry.. busy this few days.. no time to blog =( and also no time to blog EVEN on IS day.. lol this few days been going to bugis after school...
Tuesday - go bugis to print GDF stuff
Wednesday - go bugis to print remaining GDF stuff
Thursday - go bugis to get back ivory's pencil case and choon yee's wallet
Friday - NEARLY... NEARLY went to BUGIS AGAIN to lend choon yee camera to take his DPM photos.. i backed out last minute.. cos noone to accompany me there.. =(
well... on thursday i found out really cool stuff bout my friends LOL... choon yee is a pro at basketball.. actually dunno la... i nvr see anyone played previously before.. but then at arcade, wad he did really wow-ed me.. he like get 200 or so points for the hoop game... dam zai sia.. keep scoring again n again... also... he DAM PRO AT DRIVING... drifted like nobody's business in daytona... drop gear n pick up dam fast... hope he doesnt do tat on the streets as now he got his driving lesson.. if not very dangerous.. AND ALSO... as for beng boon... HE IS LIKE A DAM FREAKING PRO in those fighting games... he played the entire marvel game (dunno wad they call it.. i noob sia =() with just 1 credit. ONE credit. finished the boss 2... and killed 2 challenger along the way... lol dam funny sia.. isnady purposely challenge beng boon without him knowing.. n he got owned badly.. LOL
here are the pictures!~

YEAH! wednesday... fcp day.. presentation day.. got a bit bored halfway through.. photo booth time!

wednesday at bugis... bought drinks from cheers with matthias.. then we swap the labels LOL... RED GRAPE JUICE OMG!

Boon the pro at work. haiqal's hand at the side =)

Final boss in the game.. boon totally kick its ass... if theres an ass anyway... lol big slimy boss monster coming from underneath the water....

Choon yee caught this... the grabber machines.. LOL... he dam tyco sia... 2 tries to get it.. tat means $2!
Monday, July 21
10:52 PM
today suppose no school 1... PP1 anita dun wan see us cos module finish liao... and DPM melvin still at states.... BUT THEN... went to school anyway.. to show eric the packaging and leaflet.. leaflet eric say ok! i think i am happy with it.. gonna print tmr... i guess..
whole day in school... mostly playing games.. and playing loud songs LOL =.= went for dinner at bpp mac with isnady ivory n jiamin.. after that followed isnady to Lot 1 for his couple lab "ROCKET" ;) happy early anniversary to u and ur girl! looking forward to ur wedding dinner nxt yr =) LOL.. then after that went to causeway point.. to look look at the arcade there =.= then go home! then CHIONG IS! then dun feel like chionging! then wan to blog! then blogging! then going to bed soon wooohooo!!! i sleep alot LOL..
P.S. look forward to my post tmr.. the usual IS day post!~ LOL.. sian sia tmr 2 presentation.. IAC n COMMT.. gd luck to me n my team!~ lol =)
Sunday, July 20
4:57 PM
super sian..
with nothing to do.. with nothing i want to do... so went to take a picture of my phone stock earphones... lol.. thought that somehow today i must post at least a picture.. LOL.. ok so here it is..

taken with my camera as usual.. and edited ALOT with photoshop ;) this pair of earphone is similar to those u get with ipods.. only that it has an extra mic =) (btw.. the earphone is resting on my phone... but edited too much until cant see LOL... all black black 1..)
4:32 PM
at home now.. rotting.. been playing back all the games.. its like been so long since i touched them... BIOSHOCK! woot! lol... seriously dam sian la.. got games to play, but then i still feel sian.. dunno y... lost my interest in games? come to think about it... i used to like play WoW 10hrs straight n still able to keep going... now is like... play bioshock for 1hr.. then sian le... WAD HAD HAPPENED TO ME?? I WANT TO BE ADDICTED TO GAMES AGAIN!!! ARRRGGHHH...
btw.. iPhone firmware 2.0 is now finally jailbroken! good job iPhone Dev Team! they are fast... jailbroke it like only less than 10days of release.. however, i think i m keeping my current firmware... i scared later games cannot run.. but then.. APPSTORE in 2.0! OMG... SUPER MONKEY BALL!! ARR.... should i go the legal way and pay for quality games that is created by big companies? or should i stick with homebrew games for now... tough choice sia... think i remain for now...
and btw.. my earphone spoil liao =( the contact or something got problem.. need to keep adjusting for it to work... sian sia.. think i use back the stock earphone tat comes with my phone... but i prefer in-ear earphones =( oh well.. guess i shall buy a new pair when i got tat $500 frm ngee ann! WOOT!
sorry no pics... =( and also quite a lengthy post this time round.. o.O
Friday, July 18
8:49 PM
on bus to school today, i helped danial to mod his new psp.. it was official firmware 3.90 at 1st, but then i used my pandora battery and magic memory stick and changed it into 3.80 M33-5! WOOT! homebrew kick ass! lol... at 1st got problem... his new psp unable to play iso/cso games.. found out after like 15mins of wondering why it is unable to play even though its in M33 firmware... found out i forgot to set to use no-umd... haha =.= i so long nvr mod and play psp le... now skill loose liao lo.. LOL btw anyone nid to
upgrade/unbrick/mod psp... can find me haha...
today got PDA!~~ haha... today oran showed us demo of the upcoming game from electronic arts - "Spore". he play around and make a creature.. or should i say MONSTER with the character creator.. after that, we did nothing related to work LOL... in the end played COD4 with him... ours different version cant play with him.. in the end he give us patch to play!~ woot! thanks oran! lol.. playing games with a lecturer in the middle of lesson? Priceless. =) oran so pro la... 2v1 he own us... =(
after that.. i CHIONG my 1500 words essay.. during lunch break... 1hr+... done 1800 words HAHAHA... mostly copy and paste using my own words! ;) anyhow bomb 1... hope out of that 40% i can at least get a pass.. major assignment sia.. but i still like tat.. zzz my FCP hopeless la..
at home now... jus downloaded the spore creature creator trial version myself.. and started playing with it.. FUN! cant wait for the game to come out sia.. been anticipating it for like past 2mths or so leh... iPhone also got its own version coming soon! TOUCHSCREEN CUSTOMIZATION OF CHARACTERS!!! FTW!!!! CANT WAIT!! OMG! haha...
Pictures~

lol... the PSPs..... my one... danial's one.. danial's new one... black white black.... OREO! haha lol... PSP-OREO muahahah! hungry lo...

haha.. thx ivory for introducing me to curry sauce + mayo! lol addicted to it liao... decided to add tomato sauce in it too... (actually not purposely add 1... jus happen that i squeeze my mayo on tomato 1st.. then accidentally also dump inside curry HAHA..) looks sick.. and its sick.. stomachache after that LOL.. seriously... dun try it.. =(
Thursday, July 17
9:20 PM
today drf and gdf... at the start of drf lesson, we have to draw circles.. LOL... FINALLY. SOMETHING I COULD DRAW. RELATIVELY WELL. woot! CIRCLES!~ haha... lol... dunno wads the reason.. but it sure is fun drawing circles using charcoal onto my paper! kinda reminds me of me when i am young LOL...
as for gdf....... HAIZZ.. aiyo... dunno leh.. i keep trying to produce good work for eric... he keep saying if my packaging put nxt to others my 1 wont stand out =(... aiya... guess i have to make use of my last-minute-suddenly-think-of-something-great process again.. dunno why.. but always.. i TRY VERY HARD.. eric not happy. BUT... i LAST MINUTE WORK.. eric will like the idea.. LOL.. tats wad i had been doing for my past few assignment.. hope i suddenly get an inspiration for my work soon.. =X btw for the previous few assignments... overall i got A+!~ 100 marks 90 marks 90 marks.. MUHAHAHAHAHAHHA.. hope i score well for this final assignment too.. woot i love eric!

this picture was taken on monday.. forgot to post it up...
from left: ME! xueli, shikin, madeleine, jiamin
all wearing shirts with camera!!! hahaha! cos monday is DPM day lol... but in the end no DPM lesson =.= anyway my camera best! MUAHAHHA! lol.. btw bought mine in malaysia during the school break.. haha
Wednesday, July 16
6:22 PM
now at national library.... supposed to be looking for books for packaging design.. in the end used this time to do photoshop and blogging =.= before that, we went around bugis... choon yee has to take his photos here for his DPM...
some of the pictures taken with choon yee's camera... mine no batt lo! haha lol =.= used photoshop extensively in both shots..

some "artistic" shot of me by choon yee... photoshopped.... "abit" ;)

NOOOOO... i am caught smoking... =( no la.. jkjk... i wont smoke 1... stinks sia... at least for me.. no offense to all the smokers out there... this is posed shot... cigarette courtesy of choon yee.. sorry choon yee for wasting your smoke... less 30 seconds of smoking for you... I HELPING YOU QUIT SMOKING LEH!~~ haha... i don't see the coolness in this shot... cigarette = cool? dun quite think so... at least for me la....
9:36 AM
after our DEAD BORING SIAN IS, i went to clarke quay with choon yee to take photos of singapore river for my DPM. it was RAINING!!!! NOOOOO... but it stopped soon... =) haha... took like 300+ photos... chosen like 20 photos.. edited 15.
56Kb WARNING.
HERE COMES THE PICTURES!~
Taken with my PowerShot A650 IS and edited with Photoshop CS3
Hope they look professional enough for melvin... enjoy!~

Bumboat coming from under the bridge

Bumboat near Riverside Point

Night Scene with reflection on the water, and the back view of a bumboat with a clear blue night sky

2 Bumboats crossing each other paths, with 1 bumboat having more passengers than the other, thus balancing the picture

Fountain captured with slow shutter speed, therefore having a silky effect

Pathway exiting the underground tunnel

Riverside Point at its best at night, with its reflection on the water

Unique looking shelter opposite the river, at the area with all the bars

Night skyline of singapore, with bridge in the foreground

Tunnel taken from a low angle
Now... enough of those serious shots... now come the not-so-serious shots... that i don't plan to hand in to melvin..... i hope they look professional too.. =) i am so pro LOL... no la.. not exactly..

Entrance of a tunel... with choon yee "artistically" walking out of the tunnel

foreground section of bridge focused, with background blurred.. choon yee squatting in the background taking pictures of the river

Danger sign. Tells us not to jump into the river. taken it after raining

Tree in foreground focused, with choon yee in background blurred

photos of signs taken at the entrance of the underground tunnel... and photoshopped it extensively... =)

fun photo... choon yee helped me to take this... my shoe VS the water... = splash! dam wet after that...
Tuesday, July 15
10:06 AM
IS DAY again.... sian... ok stop. i noe i hv wrote the same thing over and over again for every tuesday. i shall now skip the boring stuff and skip straight to the point. PHOTO BOOTH DAY!!!!
Without further ado... HERE COMES THE PICTURES!~

Superman!~ LOOK MUM! I M FLYING!~ lol. taken this photo with a blue wall as background.. finally a good looking "Please step out of the frame" picture....

NEON-ey! my black and white striped shirt makes a good photo subject for this scene...

I AM A GHOST!~ Boo. you are scared.

Twist!~

green lines..... wooooo...

Film Stock. Take 2. GO!

Me and matthias!

Thermal...

Kok. x4~

I AM HEADLESS... muahhahahahahaha.... wait.. i shouldnt be laughing now... WHERES MY HEAD? anyone seen it?

i am pixelated.... my iSight camera.... so noob.... quality so lousy...
Sunday, July 13
5:33 PM
Kok.

Film Stock.
Yesterday went to sunshine plaza to print my PP1 book... total printing costs = $13 including binding. soooo much cheaper than printing in school... and somemore the paper quality is much better.... after that, went to changi airport with hong ching to take his photos... followed him cos i have nothing to do...
Today went to j and jas to cut hair in the afternoon... or should i say not much of cutting.. only noticeable change is that i have rebonded my fringe.... total costs $30... quite ok... cos the guy trim my hair n rebonded my fringe... and had to shampoo my hair twice LOL... now my hair got tat rebonding cream smell + strong strawberry smell from the shampoo.. haha... well... lucky i don't need to wait for long b4 my turn... about 1/2hr only... normally it takes bout 2hr or so... guess its because its lunch time.... took bout an hour and half to do my hair.. trimming and rebonding...
PICTURES!~

airport control tower... taken from terminal 3.. great sky... great sunset... great picture! =)

TROLLEYS!!!!! lol....... theres like a whole bunch of them in the arrival hall =.= I HAD TO TAKE THIS PHOTO..... LOL!

something interesting that caught my eye.... fire extinguisher displayed in a glass box on a raised metal platform... i am like... wad the? now its really break glass for fire extinguisher...

beautiful sunshine streaming into the viewing mall...

rebonding halfway... lol... didnt noe my fringe is that long.. longest strand was like touching my nose then... then it was trimmed...

me at home with my newly rebonded fringe LOL....

do i look like someone familiar?? o.O

Retro! lalala!~
10:37 AM
THE GAME! woot!~muahhahaha now is nearly done... most of part done.. we have total of 3 endings now.. some fine tuning i did here and there... and now in living room... u can change the background music!... btw the round round thing in living room tat changes the music is supposed to be a vinyl record.... LOL... HONG CHING WHEN CAN I GET THOSE ILLUSTRATIONS!!!??!!?!?!?
EDIT: the game is more refined now... arrows now will be always at the side.... and theres voice feedback when u enter the "hidden" room..
Friday, July 11
11:18 AM
my NEAR completed work... lol... keep updating =.= keep refining =.= keep adding features =.=......
THE GAME LOR.now passcode is needed to enter hidden room.... ADDED LIKE SO MUCH MORE LINES OF CODE JUST FOR THE PASSCODE. hope its good now =)
Passcode =
781227btw... try right clicking anywhere in the game... theres something special there! advertising of me n hong ching's blog..
P.S hong ching wheres my illustration? lol... jkjk jus take ur time...
EDITED: The game now is much more improved... with 3 easter eggs now... see if u can find them... and theres a alternate to the ending we have now =) so theres 2 ending... see if u can find both of them =) IT IS HARD.
Thursday, July 10
9:47 PM
wanted to do a calculator code... to ADD into our text-based adventure game... LOL act smart =.= do both choices of project.. =.= in the end... converted my dear calculator into a pin-entering kinda device, to use pin and unlock the door.... this is wad i have got... should be the final version of it.. took me quite a while to type the code... cos its repetitive... have to do code for all the numbers... the graphic also took me some time too... hope it looks good in my final game..
ENJOY!
hahahahahah dun tell u the password!~ the password is 999... MUAHHAHAHA U ALL WILL NEVER GUESS WADS THE PASSWORD!!!! =)
6:55 PM
4th day of elearning. DRF n GDF. in drf we have to do 2 sketches of ppl dancing... they have provided us video of ppl dancing, and we have to choose a pose n draw........ i.hate.drawing. aiyo... so hard la.. have to draw boxes n what not... turned out to be ugly... see below for my ugly pics.
As for gdf, we have to submit the logo that we had done long ago... and also start doing our packaging template (or is it start handing in? i just started it... =.=)... eric say my logo ok... so i plan to keep it tat way... as for packaging.... i slack around for 2hrs before i actually START doing it... sorry eric... went to bathe... then went to find something to eat... then take lame shit photos that you can see below.... then edit those photos... then think about my PDA..... then went to find something to eat AGAIN.... then FINALLY started doing the packaging...
well ok... here are the photos!!~

1st DRF drawing... anita says no perspective... me thinks so too... and the hand is like so weird and sucky lor... i totally am a drawing noob.

2nd DRF drawing... anita says better... but the hand is like CHOPPED OFF... i give her perspective and she gives me CHOPPED OFF.... =.= well my drawing itself aint that good either... I AM A IM STUDENT... BB 3D!~

this is my hair. after bathing. and not combing. and after thinking too much PDA. and with.... whats with the sunlight so strong in my room??
Now... the photos i taken during the time i am suppose to do gdf.... =X wanted to keep my camera after using it for DRF... but had some fun with it 1st!
everything below taken with my Powershot A650 IS and edited with Photoshop CS3.... looks professional! LOL... to me at least... =.= DPM PUT TO USE!!~ i love the macro mode!~ comments pls!

my macbook pro... with the screen having part of my PDA codes! LOL!! I AM A CODE-FREAK!

my phone on its dock... charging... sleek black iphone!~ sian la... tmr 11th July... iPhone 3G coming out in U.S....... I WANT ONE TOOO... >.<

my mouse... with a whole row of frames with actionscripts!~ actually we arent supposed to use frames... we are supposed to use arrays... but i think its easier by using frames... =X Oran I am sorry.

my earphones! audio technica earphones! had them for about 6mths liao... going to spoil soon... buying new pair soon!!! these costs $30 then.... =X quality quite okok...

my macbook iSight! with a blurred background.... this is the webcam that took all of my photo booth pics!

close-up shot of my macbook keyboard... COMMAND OWNS!!! WINDOWS KEY SUCKS!!! well not exactly... windows rocks too! just that mac rocks more!~