normally I get only 1k in this game. Sometimes I get 0. After using cheat, see the screen shots below. Click on them to enlarge


Tuesday, December 23, 2008
at 12/23/2008 07:04:00 PMProblem!!! I cheated on Word Challenge
Posted by
cxjiek
0
comments, add yours>>
Monday, December 22, 2008
at 12/22/2008 03:42:00 PM"so irresponsible wan you" my sis
"don't be do greedy ah you"quote my sister
Posted by
cxjiek
0
comments, add yours>>
Tuesday, December 16, 2008
at 12/16/2008 08:32:00 PMI miss camp for --- puzzle party at uncle Lee's home
============================
Do you want to know why laugh so easily to the extend that a finger less than 1metre away from my funny bones already poses the full capacity to trigger my laughter box? Well, I believe the goldmine is not in the answer but it is in fact in a Warcraft 3 Melee Map for the goldmine in the answer is only that of 0 gold resources to be acquired by a wisp, peon, acolyte, peasant or any unit in any fan made map with the ability to harvest gold and that is maximum. Too much Warcraft!!!
Posted by
cxjiek
0
comments, add yours>>
Hours spent-Tic Tac Toe batch again UPDATED!!!
Update: The AI is still beatable, but better. I think I'll put random later
I tried to use the choice command but errors keep on coming and not all computers have choice command. My Windows 98 did not have set /p, so I guess this works with XP. The AI is [not] very strong and messy because I wanted to have this work on windows 98 at first and win98 does not have set /a. Only can play as O. You start first. The code is very messy. C++ is not for me as I have yet to get myself a good teacher. I hope blogger(/google)won't mess with my multiple spaces in the code. Blogger hates cheap ASCII graphics in their text form.
Just copy below into notepad (not Microsoft Words) and save it as anything.bat (not anything.bat.txt)
rem start here
@echo off
set owin=0
set xwin=0
set nwin=0
set starter=o
:initialize
set a=7
set b=8
set c=9
set d=4
set e=5
set f=6
set g=1
set h=2
set i=3
set iv=0
set ybla=a
if %starter%==o set move=O
if %starter%==x set move=x
:check
cls
echo ===========
echo Tic Tac Toe
echo ===========
echo by cxjiek
echo.
echo %a% %b% %c%
echo %d% %e% %f%
echo %g% %h% %i%
goto :blue
:board
if %iv%==1 echo Invalid move
set iv=0
if %move%==O goto :Omove
if %move%==X goto :Xmove
:Omove
set /p ybla=Whats your move?
:mark
if %ybla%==1 goto :gO
if %ybla%==2 goto :hO
if %ybla%==3 goto :iO
if %ybla%==4 goto :dO
if %ybla%==5 goto :eO
if %ybla%==6 goto :fO
if %ybla%==7 goto :aO
if %ybla%==8 goto :bO
if %ybla%==9 goto :cO
goto :invalid
set move=X
goto :check
:xs
set starter=x
goto :con
:os
set starter=o
goto :con
:aO
if not %a%==7 goto :invalid
set a=O
set move=X
goto :check
:bO
if not %b%==8 goto :invalid
set b=O
set move=X
goto :check
:cO
if not %c%==9 goto :invalid
set c=O
set move=X
goto :check
:dO
if not %d%==4 goto :invalid
set d=O
set move=X
goto :check
:eO
if not %e%==5 goto :invalid
set e=O
set move=X
goto :check
:fO
if not %f%==6 goto :invalid
set f=O
set move=X
goto :check
:gO
if not %g%==1 goto :invalid
set g=O
set move=X
goto :check
:hO
if not %h%==2 goto :invalid
set h=O
set move=X
goto :check
:iO
if not %i%==3 goto :invalid
set i=O
set move=X
goto :check
:aO
if not %a%==7 goto :invalid
set a=O
set move=X
goto :check
:bO
if not %b%==8 goto :invalid
set b=O
set move=X
goto :check
:cO
if not %c%==9 goto :invalid
set c=O
set move=X
goto :check
:dO
if not %d%==4 goto :invalid
set d=O
set move=X
goto :check
:eO
if not %e%==5 goto :invalid
set e=O
set move=X
goto :check
:fO
if not %f%==6 goto :invalid
set f=O
set move=X
goto :check
:gO
if not %g%==1 goto :invalid
set g=O
set move=X
goto :check
:hO
if not %h%==2 goto :invalid
set h=O
set move=X
goto :check
:iO
if not %i%==3 goto :invalid
set i=O
set move=X
goto :check
:Xmove
set apX=0
set bpX=0
set cpX=0
set dpX=0
set epX=0
set fpX=0
set gpX=0
set hpX=0
set ipX=0
if %a%==%b% if %c%==9 if %a%==X set cpX=3
if %a%==%c% if %b%==8 if %a%==X set bpX=3
if %b%==%c% if %a%==7 if %b%==X set apX=3
if %d%==%e% if %f%==6 if %d%==X set fpX=3
if %d%==%f% if %e%==5 if %d%==X set epX=3
if %e%==%f% if %d%==4 if %e%==X set dpX=3
if %g%==%h% if %i%==3 if %g%==X set ipX=3
if %g%==%i% if %h%==2 if %g%==X set hpX=3
if %h%==%i% if %g%==1 if %h%==X set gpX=3
if %a%==%d% if %g%==1 if %a%==X set gpX=3
if %a%==%g% if %d%==4 if %a%==X set dpX=3
if %d%==%g% if %a%==7 if %d%==X set apX=3
if %b%==%e% if %h%==2 if %b%==X set hpX=3
if %b%==%h% if %e%==5 if %b%==X set epX=3
if %e%==%h% if %b%==8 if %e%==X set bpX=3
if %c%==%f% if %i%==3 if %c%==X set ipX=3
if %c%==%i% if %f%==6 if %c%==X set fpX=3
if %f%==%i% if %c%==9 if %f%==X set cpX=3
if %a%==%e% if %i%==3 if %a%==X set ipX=3
if %a%==%i% if %e%==5 if %a%==X set epX=3
if %e%==%i% if %a%==7 if %e%==X set apX=3
if %c%==%e% if %g%==1 if %c%==X set gpX=3
if %c%==%g% if %e%==5 if %c%==X set epX=3
if %e%==%g% if %c%==9 if %e%==X set cpX=3
if %a%==%b% if %c%==9 if %cpX%==2 set cpX=3
if %a%==%b% if %c%==9 if %cpX%==1 set cpX=2
if %a%==%b% if %c%==9 if %cpX%==0 set cpX=1
if %a%==%c% if %b%==8 if %bpX%==2 set bpX=3
if %a%==%c% if %b%==8 if %bpX%==1 set bpX=2
if %a%==%c% if %b%==8 if %bpX%==0 set bpX=1
if %b%==%c% if %a%==7 if %apX%==2 set apX=3
if %b%==%c% if %a%==7 if %apX%==1 set apX=2
if %b%==%c% if %a%==7 if %apX%==0 set apX=1
if %d%==%e% if %f%==6 if %fpX%==2 set fpX=3
if %d%==%e% if %f%==6 if %fpX%==1 set fpX=2
if %d%==%e% if %f%==6 if %fpX%==0 set fpX=1
if %d%==%f% if %e%==5 if %epX%==2 set epX=3
if %d%==%f% if %e%==5 if %epX%==1 set epX=2
if %d%==%f% if %e%==5 if %epX%==0 set epX=1
if %e%==%f% if %d%==4 if %dpX%==2 set dpX=3
if %e%==%f% if %d%==4 if %dpX%==1 set dpX=2
if %e%==%f% if %d%==4 if %dpX%==0 set dpX=1
if %g%==%h% if %i%==3 if %ipX%==2 set ipX=3
if %g%==%h% if %i%==3 if %ipX%==1 set ipX=2
if %g%==%h% if %i%==3 if %ipX%==0 set ipX=1
if %g%==%i% if %h%==2 if %hpX%==2 set hpX=3
if %g%==%i% if %h%==2 if %hpX%==1 set hpX=2
if %g%==%i% if %h%==2 if %hpX%==0 set hpX=1
if %h%==%i% if %g%==1 if %gpX%==2 set gpX=3
if %h%==%i% if %g%==1 if %gpX%==1 set gpX=2
if %h%==%i% if %g%==1 if %gpX%==0 set gpX=1
if %a%==%d% if %g%==1 if %gpX%==2 set gpX=3
if %a%==%d% if %g%==1 if %gpX%==1 set gpX=2
if %a%==%d% if %g%==1 if %gpX%==0 set gpX=1
if %a%==%g% if %d%==4 if %dpX%==2 set dpX=3
if %a%==%g% if %d%==4 if %dpX%==1 set dpX=2
if %a%==%g% if %d%==4 if %dpX%==0 set dpX=1
if %d%==%g% if %a%==7 if %apX%==2 set apX=3
if %d%==%g% if %a%==7 if %apX%==1 set apX=2
if %d%==%g% if %a%==7 if %apX%==0 set apX=1
if %b%==%e% if %h%==2 if %hpX%==2 set hpX=3
if %b%==%e% if %h%==2 if %hpX%==1 set hpX=2
if %b%==%e% if %h%==2 if %hpX%==0 set hpX=1
if %b%==%h% if %e%==5 if %epX%==2 set epX=3
if %b%==%h% if %e%==5 if %epX%==1 set epX=2
if %b%==%h% if %e%==5 if %epX%==0 set epX=1
if %e%==%h% if %b%==8 if %bpX%==2 set bpX=3
if %e%==%h% if %b%==8 if %bpX%==1 set bpX=2
if %e%==%h% if %b%==8 if %bpX%==0 set bpX=1
if %c%==%f% if %i%==3 if %ipX%==2 set ipX=3
if %c%==%f% if %i%==3 if %ipX%==1 set ipX=2
if %c%==%f% if %i%==3 if %ipX%==0 set ipX=1
if %c%==%i% if %f%==6 if %fpX%==2 set fpX=3
if %c%==%i% if %f%==6 if %fpX%==1 set fpX=2
if %c%==%i% if %f%==6 if %fpX%==0 set fpX=1
if %f%==%i% if %c%==9 if %cpX%==2 set cpX=3
if %f%==%i% if %c%==9 if %cpX%==1 set cpX=2
if %f%==%i% if %c%==9 if %cpX%==0 set cpX=1
if %a%==%e% if %i%==3 if %ipX%==2 set ipX=3
if %a%==%e% if %i%==3 if %ipX%==1 set ipX=2
if %a%==%e% if %i%==3 if %ipX%==0 set ipX=1
if %a%==%i% if %e%==5 if %epX%==2 set epX=3
if %a%==%i% if %e%==5 if %epX%==1 set epX=2
if %a%==%i% if %e%==5 if %epX%==0 set epX=1
if %e%==%i% if %a%==7 if %apX%==2 set apX=3
if %e%==%i% if %a%==7 if %apX%==1 set apX=2
if %e%==%i% if %a%==7 if %apX%==0 set apX=1
if %c%==%e% if %g%==1 if %gpX%==2 set gpX=3
if %c%==%e% if %g%==1 if %gpX%==1 set gpX=2
if %c%==%e% if %g%==1 if %gpX%==0 set gpX=1
if %c%==%g% if %e%==5 if %epX%==2 set epX=3
if %c%==%g% if %e%==5 if %epX%==1 set epX=2
if %c%==%g% if %e%==5 if %epX%==0 set epX=1
if %e%==%g% if %c%==9 if %cpX%==2 set cpX=3
if %e%==%g% if %c%==9 if %cpX%==1 set cpX=2
if %e%==%g% if %c%==9 if %cpX%==0 set cpX=1
if %epX%==3 goto :eX
if %dpX%==3 goto :dX
if %fpX%==3 goto :fX
if %bpX%==3 goto :bX
if %hpX%==3 goto :hX
if %apX%==3 goto :aX
if %cpX%==3 goto :cX
if %gpX%==3 goto :gX
if %ipX%==3 goto :iX
if %epX%==2 goto :eX
if %dpX%==2 goto :dX
if %bpX%==2 goto :bX
if %fpX%==2 goto :fX
if %hpX%==2 goto :hX
if %apX%==2 goto :aX
if %cpX%==2 goto :cX
if %gpX%==2 goto :gX
if %ipX%==2 goto :iX
if %epX%==1 goto :eX
if %bpX%==1 goto :bX
if %dpX%==1 goto :dX
if %fpX%==1 goto :fX
if %hpX%==1 goto :hX
if %apX%==1 goto :aX
if %cpX%==1 goto :cX
if %gpX%==1 goto :gX
if %ipX%==1 goto :iX
:noprio
if %e%==5 goto :eX
if %b%==8 goto :bX
if %f%==6 goto :fX
if %h%==2 goto :hX
if %d%==4 goto :dX
if %a%==7 goto :aX
if %c%==9 goto :cX
if %g%==1 goto :gX
if %i%==3 goto :iX
:aX
set a=X
set move=O
goto :check
:bX
set b=X
set move=O
goto :check
:cX
set c=X
set move=O
goto :check
:dX
set d=X
set move=O
goto :check
:eX
set e=X
set move=O
goto :check
:fX
set f=X
set move=O
goto :check
:gX
set g=X
set move=O
goto :check
:hX
set h=X
set move=O
goto :check
:iX
set i=X
set move=O
goto :check
:Invalid
set iv=1
goto :board
:blue
if %a%==%b% if %b%==%c% if %a%==O goto :Owin
if %d%==%e% if %e%==%f% if %d%==O goto :Owin
if %g%==%h% if %h%==%i% if %g%==O goto :Owin
if %a%==%d% if %d%==%g% if %a%==O goto :Owin
if %b%==%e% if %e%==%h% if %b%==O goto :Owin
if %c%==%f% if %f%==%i% if %c%==O goto :Owin
if %a%==%e% if %e%==%i% if %a%==O goto :Owin
if %c%==%e% if %e%==%g% if %c%==O goto :Owin
if %a%==%b% if %b%==%c% if %a%==X goto :Xwin
if %d%==%e% if %e%==%f% if %d%==X goto :Xwin
if %g%==%h% if %h%==%i% if %g%==X goto :Xwin
if %a%==%d% if %d%==%g% if %a%==X goto :Xwin
if %b%==%e% if %e%==%h% if %b%==X goto :Xwin
if %c%==%f% if %f%==%i% if %c%==X goto :Xwin
if %a%==%e% if %e%==%i% if %a%==X goto :Xwin
if %c%==%e% if %e%==%g% if %c%==X goto :Xwin
if not %a%==7 if not %b%==8 if not %c%==9 if not %d%==4 if not %e%==5 if not %f%==6 if not %g%==1 if not %h%==2 if not %i%==3 goto :draw
goto :board
:Owin
echo You Win!!!
set /a owin=%owin%+1
goto :again
:Xwin
echo You Lose
set /a xwin=%xwin%+1
goto :again
:draw
echo You're closed. It's a draw!!!
set /a nwin=%nwin%+1
goto :again
:again
echo.
echo You won %owin% times
echo You loss %xwin% times
echo You drawn %nwin% times
echo.
set /p p=Play Again?(y/n)
if %starter%==o goto :xs
if %starter%==x goto :os
:con
if %p%==y goto :initialize
echo Thanks for playing!!!
pause
rem end here
Posted by
cxjiek
0
comments, add yours>>
Labels: bat
Monday, December 15, 2008
at 12/15/2008 10:23:00 PMWarcraft 3 map by me - Invading The Elven Fortress
I have uploaded my map at the hive. A map created by a beginner map maker. Approximately 15 minutes of game time. Not very good map I would say. Here goes to my map making days.
http://www.hiveworkshop.com/forums/resource.php?t=110467
Just in case link
Posted by
cxjiek
0
comments, add yours>>
My File Stock
Stuff I've got that filled my hard disk. I am gotta delete some of them soon. You can get more of these from torrent. Comment me below if you want any...
DamnSmallLinux -49MB
Microsoft WINDOWS 98 SE -718MB
Microsoft Windows XP Professional (SP2) -598MB
WindowsXP-KB936929-SP3-x86-ENU -316MB
Windows_Media_Player_11_CRACKED -26MB
Microsoft Office 2003 Professional -568MB
Microsoft Plus! for Windows XP -302MB
Sony Vegas Pro 8.0b -211MB
Sony Sound Forge 9.0e -72MB
Yu-Gi-Oh! Power of Chaos -69MB
Age of Empire Gold-43MB
Hercules Action Game -21MB
After Dark Games -21MB
Warcraft3_121a+worldeditor_crack for Garena Malaysia -39MB
Warcraft1+2 demo -12MB
Virtua Cop 2 -12MB
Sky Roads+Xmas Edition -1MB
Toy.Story.2.Action.Game -59MB
GTA: Vice City Mods(Mods only without game) -462MB
Titanic Adventure out of time tours -8MB
SmallRocket Games Demo -50MB
The Sims 1 Objects,skins,walls,floors,roofs,animation,programs,videos -248MB
ScreenMates -23MB
Robert Kiyosaki Cashflow 101 and 202 -1.78GB
Chocobo Racing+Emulator -194MB
DanceMania+6 Songs -35MB
Command_and_conquer -16MB
ZGames -75MB
Flash8 Trial -107MB
Microsoft Virtual PC 2007 -30MB
Power Rangers Megazord,morphing,opening videos-350MB
vice city radio MP3 Extracted -504MB
MapleStory Video Episodes 1-5 +promo -126MB
Flash OS Parodies Simulators -43MB
2000+ Icons - Ultimate PC Collection for Windows XP -224MB
Final Fantasy Piano Sheet -45MB
Intel Motherboard D945GNT Drivers and Manual -156MB
Batman.BeginsDVDrip.h264.[Eng] -700MB
AH LONG PTE LTD.DVDRip -873MB
Warcraft3 MP3 -79MB
Heroes Season 2 HDTV XviD -4.1GB
MadagascarDvDrip -701MB
Matt Redman - Blessed Be Your Name MP3 -55MB
my sister's old stash of mp3s -784MB
BumpTopInstaller.msi (beta) -9MB
Internet Explorer 8 -16MB
A.Bugs.Life.Action.Game -46MB
Tarzan Action Game -46MB
FF8 Triple Triad Gold -3MB
FF8 Official Guide PDF -197MB
Final Fantasy 7 - Ultima Edition.iso -1GB
Final Fantasy 8 -3.4GB
Warcraft III ROC and FT 1.13MB
RED ALERT CONTERSTRIKE EP -179MB
red alert 2 -202MB
Red.Alert.3.Multi4.Full-Rip -1.99GB
ResidentEvil2 (PC) -1.2GB
counterstrike 16 -299MB
Lego.Island.2 -477MB
Microsoft Windows Vista ULTIMATE x86 SP1 Integrated August 2008 OEM DVD -2.89GB
ubuntu-8.04.1-desktop-i386.iso -694MB
Open Office 3.0.0 Windows -142MB
Microsoft Office 2007 -1.21GB
Posted by
cxjiek
0
comments, add yours>>
Friday, December 12, 2008
at 12/12/2008 11:41:00 PMMade New Warcraft Map and got a bicycle.
I have just created my most sucessful map so far. I have been working on in the whole evening till now. ANd it is BUGLlESS. YAY!!!! Never create a bugless map before. But it is not balance. I think I will balance it tomorow. And add leader board. Then I will share it with more people. I have already test it with a few people at Garena.
=====================
Got a bike. YAY!!!! Go wash dishes now.
Posted by
cxjiek
0
comments, add yours>>
Wednesday, December 10, 2008
at 12/10/2008 01:45:00 PMForward Emails
People have been warning me about the forward emails I send. Ok, I'll stop sending nonse. I'll be considerate of the conservative the easily offended and scroll. I'll stop sending hoax, I am familiar with the nature of hoax but that is the reason I send them. I'll only forward those that are with meaning or are undeniably humorous and are non-offensive. I might take some time to adjust to this habit but I will (I hope). I would like to say-sorry for offending people with forward mails that are offensive.
I must stop this spamming.
Just a tip. Next time, remove all the unnecessary stuff when forwarding emails. People merely delete emails like this when they see the need to scroll 1 million pages down to get to whatever it is you want them to read.-The WallahI'll remove unnecessary stuff.
...one day you may find that your friends will block you or list you as a spammer.-The WallahI really don't want that. I will only spam on my blog. Do complain. Or I will be super blur. Thanks The Wallah.
Posted by
cxjiek
0
comments, add yours>>
Monday, December 8, 2008
at 12/08/2008 05:35:00 PMCompiz!!!Beryl!!!Linux!!!Cube!!!Whatever they call it
Had problems with my burner or something, but still managed.
On linux now. The screenshots may not look too clear. I just hope that linux did not use all my leftover partition space of 70 over GB when I only gave it 10GB.





Posted by
cxjiek
0
comments, add yours>>
Saturday, December 6, 2008
at 12/06/2008 11:10:00 PMMcDonalds- SPLIT YOU GOLDEN ARCHES!
This is dedicated to our very old old friend McDonalds who provided us with bad services as well as an expensively variant choice of unhealthy food. GO! McDonalds. SPLIT!
Posted by
cxjiek
0
comments, add yours>>
Thursday, December 4, 2008
at 12/04/2008 10:54:00 PMLego Universe
Hey, have you heard of Lego Universe? No? It's an Online Game where you play hours and hours non-stop as a lego mini FIG. It is gaining more and more attention from the lego community through its marketing before it will be release. The game is still in the making. Here is a concept art:
While it seems like everybody worshiping lego is praising this MMO, I am not. And I guess the game is gonna be priced high then my internet because of the monopolizing lego people Just like all their old PC games.
I really don't want to be a tiny peuny little minnie-FIG walking around a city like those in GTA. I want to be the Godzilla or the dude with the tank cheat in GTA.
I stand at the side of anti-neopets
and also anti-(kids getting addicted to online games)
But it seems that lego people are trying to make parents have a positive image of the game by saying things like."We understand parents concerns."
If only this can take down neopets and strip neopets of its advertising cost.
I have tried other lego games before like lego island 1 , 2. Lego island 1 is bad, and 2 is even worse. What will this new MMOG belike?
And also, lego people are teaming up with a company called NetDevil. I believe kid should never know the existance of the internet because when I was a kid with my primitive mind, all I know what to do is disney.go.com and neopets. How dare disney.go.com restrict access by people outside america!! Why did'nt neopets do the same?
To me, I think Lego Universe will be just like any other on9 game. It is just anther way of lego people to earn money. Check this out:
Exchanging heads huh?
The only good things about lego is its pieces of plastic with molded with studs and holes.
You can go to the website to check it out yourself.
http://universe.lego.com/en-us/Default.aspx
Posted by
cxjiek
0
comments, add yours>>
Wednesday, December 3, 2008
at 12/03/2008 09:56:00 PMPlaying so much rubiks cube, I came out with the idea of 3D tic tac toe.
The idea worked fine, but it would be very hard for our primitive human minds to proses all the Os and X-es without the assistance of a computer or a guidance sheet
But when I apply pressure to the mouse on the gray color search square with the address bar at http dot dot slash slash www dot google dot com slash
I realized that I was definitely not the first to comae out with the idea(My guess ws correct)
then I realize, It is not that hard to play without a computer.
I guess these people innovate alot(its fun because 2D is 2 easy)
since even an ides like this has already been carried out by people
I wonder if we are ever going to invent any thing new, because anything that seems new is only because it has been marketed
I am afraid these word I write have already been written by someone else
Why do I seem to be syok sendiri wan?
I searched, andi guess this blog post using these selection of words is not invented
I feel so happy, we give thanks
anyways, here is Brainolympics
I feel at risk because "THE BRAINOLYMPICS TEAM" does not know that I post this here. If you want to come, comment here or better if you msg me at live msg or send an email.
I gave up on mountain biking camp just for this ok.
Posted by
cxjiek
0
comments, add yours>>









