Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - yunhua98

Pages: 1 [2] 3 4 ... 184
16
News / Re: Several members' post counts re-synced
« on: February 07, 2012, 09:54:29 pm »
darn.  I just got pwned off the top ten list.  :P
And wow.  I think kalan_vod is the only member on that list who is no longer active.

17
News / Re: All posts from 2005 to 2008 back online!
« on: February 04, 2012, 04:41:10 pm »
The discovery was made after Jonius7 was searching Google and stumbled upon one of the revived boards. They were only restored by Invisionfree recently, because I checked a month ago and they were still gone.
Just want to point out a mistake.  HOMER-16 found it, not Jonius.  ;)
http://ourl.ca/15092/282643

18
Other / Re: $820 in 3d softwares for free!
« on: February 04, 2012, 04:36:16 pm »
Sweet.  I have no idea why I would ever use it.  But in case I want to use it in the future, I don't want to regret not getting it now.  ;)

19
Miscellaneous / Akinator, the Web Genius
« on: February 04, 2012, 12:40:50 pm »
I can't believe I just found this site.  :o
Although I've pretty much figured out the theory behind it, it never ceases to amaze me how often it guesses my character.
See for yourself.
When you have to put in a username, anything will do.
http://us.akinator.com/
If you defeat it after letting it use all 40 questions, screenshot it and post it here!

20
Miscellaneous / Re: Puzzles of the Twisty Variety
« on: February 04, 2012, 12:26:31 pm »
I have two 3x3x3s, a 2x2x2, a rubiks 360, 3 rubiks twists (24 links, 36 links, and 48 links), a 3x3x3 mirror cube, a 4x4x4, a broken 5x5x5, and a V-Cube 7 that I never learned how to solve.  Oh, and the rubiks cube app on my iPod that has 2x2x2 through 7x7x7, I think.

EDIT:  I also taught myself how to solve the pyraminx in my math teacher's room, but I don't actually own it.

21
News / Re: All posts from 2005 to 2008 back online!
« on: February 04, 2012, 12:03:22 pm »
wow, this is great.  You you think the posts can be integrated into the new forum?

22
News / Re: CGPN: The Calculator Game Programming Newsletter
« on: February 02, 2012, 08:41:59 pm »
Yeah.  We were going to do some kind of weakly news recap though.  Idk what happened to that.  And later it seemed to just be copies of the news articles.  :/

23
Miscellaneous / Re: What is your avatar?
« on: January 30, 2012, 09:19:10 pm »
New Avatar!  Samus Aran, from Metroid.  Who doesn't know that?  :D

24
Miscellaneous / Re: What is your signature?
« on: January 30, 2012, 09:17:57 pm »
I'm pretty sure I had one of the, if not the, longest signature that actually had information in every spoiler instead of nested spoilers.  :P

25
News / Re: nDoom 2.1 adds PWAD support for thousands of games!!!
« on: January 29, 2012, 09:09:35 pm »
Holy crap.  This takes epic to a new level.  O.O

26
Web Programming and Design / Re: RFG Image Uploader
« on: January 28, 2012, 11:58:41 am »
the home page still says hacked for me.  The image uploader is fine though.

27
General Calculator Help / Re: scrolling and tilemapping tutorial?!?!
« on: January 21, 2012, 04:47:23 pm »
huh.  I'll check it out on my calc later.

28
General Calculator Help / Re: scrolling and tilemapping tutorial?!?!
« on: January 21, 2012, 04:36:07 pm »
changed the map routine.
I really have no idea why it shouldn't display the entire screen though...

Code: [Select]
:.TILES
:Full
:Lbl TMAP
:ClrDraw
:[01010101010101010101010101]→GDB1
:[01000000000000000000000001]
:[01000000000000000000000001]
:[01000000000000010101010101]
:[01000000000000000000000001]
:[01000101010000000000000001]
:[01000000000000000000000001]
:[01010101010101010101010101]
:[7E81A581A599817E]→Pic1
:0→R→C
:[3C429581818D423C]→Pic1MAN
:[003C7E7E7E7E3C00]→Pic2MAN
:[3C42A98181B1423C]→Pic3MAN
:45→X:45→Y:0→J:1→D
:Repeat getKey(15)
:
:Pt-On(X,Y,Pic2MAN)r
:If getKey(2) and (pxl-Test(X-1,Y+6)=0) and (pxl-Test(X-1,Y+1)=0)
:C++
:2→D
:End
:If getKey(3) and (pxl-Test(X+8,Y+6)=0) and (pxl-Test(X+8,Y+1)=0)
:C--
:1→D
:End
:If getKey(4) and (pxl-Test(X+1,Y+8) or pxl-Test(X+7,Y+8)
:18→J
:End
:If (J>0)
:R++
:J--
:End
:If (pxl-Test(X+6,Y+8)=0) and (pxl-Test(X+1,Y+8)=0) and (J=0) or (pxl-Test(X,Y) or (pxl-Test(X+7,Y)
:R--
:0→J
:End
:If getKey(1) and (pxl-Test(X,Y+8)=0)
:R--
:0→J
:End
:If (D=1)
:Pt-Change(X,Y,Pic1MAN)
:End
:If (D=2)
:Pt-Change(X,Y,Pic3MAN)
:End
:Pause 25
:DispGraph
:DispGraphr
:ClrDrawr
:If (D=1)
:Pt-Change(X,Y,Pic1MAN)
:End
:If (D=2)
:Pt-Change(X,Y,Pic3MAN)
:End
:sub(MAP)
:End
:
:Lbl MAP
:For(B,0,9)
:For(A,0,13)
:{B+(R/8)*12+A+(C/8)+GDB1}→T
:If T
:T--
:Pt-On(A*8-8+C^8,B*8-8+R^8,T*8+Pic1)
:End
:End
:DispGraph
:

29
General Calculator Help / Re: scrolling and tilemapping tutorial?!?!
« on: January 21, 2012, 04:22:18 pm »
hmm...  I'm not sure what's wrong.  Its hard to do this without a calc sitting in front of me.  :/
I left it at school this weekend.  :o

30
General Calculator Help / Re: scrolling and tilemapping tutorial?!?!
« on: January 21, 2012, 04:13:54 pm »
I edited the code in my earlier post.

Change line 67 into what it is now.
Its the 8th row from the bottom, I think, with the part where it stores the stuff into T.
and then in line 70, remove the "*8" in the "T*8"

Pages: 1 [2] 3 4 ... 184