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 - Yeong

Pages: 1 ... 230 231 [232] 233 234 ... 276
3466
TI Z80 / Re: Tetris on the calculator - Help?
« on: March 31, 2011, 07:54:18 pm »
Ur welcome.
And try not to double post next time though XP
Use Modify button instead.

3467
TI Z80 / Re: Tetris on the calculator - Help?
« on: March 31, 2011, 07:51:36 pm »
cemetech's sourcecoder 2.0
EDIT: URL Here
http://www.cemetech.net/projects/basicelite/sourcecoder2.php

3468
Computer Projects and Ideas / Re: Kodu Game Lab Games
« on: March 31, 2011, 07:30:24 pm »
Camstudio. XD

3469
Humour and Jokes / Re: OS 2.71 Released
« on: March 31, 2011, 07:29:40 pm »
u can give it to me tomorrow :D
I can wait.

3470
Humour and Jokes / Re: OS 2.71 Released
« on: March 31, 2011, 07:27:52 pm »
if u got a copy, can I haz one?  ;D

3471
Computer Projects and Ideas / Re: Kodu Game Lab Games
« on: March 31, 2011, 07:26:11 pm »
This is the game that im working on.
Download Video here: http://www.mediafire.com/?z90a2y6bk27g9c8

3472
Humour and Jokes / Re: OS 2.71 Released
« on: March 31, 2011, 07:10:30 pm »
Hmm... OS e .....
It's still 2.55 MP XP

3473
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: March 31, 2011, 07:05:13 pm »
1479: You never knew about the existance of Google. The only place for you to ask help was Omnimaga.

3474
Humour and Jokes / Re: We Need More Quadratic Solvers!!!
« on: March 31, 2011, 06:52:20 pm »
Aw mine is still pending...
I wish it would get accepted today D:

3475
Axe / Re: Platformer Help!
« on: March 31, 2011, 07:56:14 am »
but it decrease the speed dramatically D:

3476
Axe / Re: Platformer Help!
« on: March 31, 2011, 07:31:53 am »
So...

Code: [Select]
If K=0 : GetKey->K : End
if K=3 :MOVELEFTROUTINE
if K=2 :MOVERIGHTROUTINE
if K=48: JUMPROUTINE
Like this?

3477
Axe / Platformer Help!
« on: March 31, 2011, 07:23:21 am »
So, I was trying to make a platformer shoot'em up game, but I'm stuck here.
1. This guys should aim up when I press up, but it never happens.
2. How do I make him shoot?(Not 1 bullet at a time)
Here's the code and program:
prgmMSLUG is the executable program.

Code: (Source1) [Select]
:.SPRITELIB
:
:.PROTAGONIST
:.FRONTBUFFER
:.RIGHT1
:[00000F1F1F13110E→Pic1
:[0000804000003F3F1F1F1F1117171B1FC0C0300000000080
:.RIGHT2
:[00000F1F1F13110E0000804000003F3F1F1F1F11254CD271C0C0300000E0C080
:.LEFT1
:[000001020000FCFC0000F0F8F8C8887003030C0000000001F8F8F888E8E8D8F8
:.LEFT2
:[000001020000FCFC0000F0F8F8C8887003030C0000070301F8F8F888A4324B82
:.JUMPRIGHT
:[00000F1F1F13110E0000804000003F3F1F1F1F10E6C9F080C0C030C020987020
:.JUMPLEFT
:[000001020000FCFC0000F0F8F8C8887003030C0304190E04F8F8F80867930F01
:.LOOKUPRIGHT1
:[30303F3F33331D0E00008040000000001F1F1F1117171B1F0000000000000080
:.LOOKUPRIGHT2
:[30303F3F33331D0E00008040000000001F1F1F11254CD271C0C0300000E0C080
:.LOOKUPLEFT1
:[00000102000000000C0CFCFCCCCCB8700000000000000001F8F8F888E8E8D8F8
:.LOOKUPLEFT2
:[00000102000000000C0CFCFCCCCCB87003030C0000070301F8F8F888A4324B82
:
:.BACKBUFFER
:.RIGHT1
:[00000F1F001F1F0E→Pic2
:[0000804000003F3F10101F1F1D1D1B1F3030000000000080
:.RIGHT2
:[00000F1F001F1F0E0000804000003F3F10101F1F3F7FF3713030300000E0C080
:.LEFT1
:[000001020000FCFC0000F0F800F8F8700C0C0C00000000010808F8F8B8B8D8F8
:.LEFT2
:[000001020000FCFC0000F0F800F8F8700C0C0C00000703010808F8F8FCFECF8E
:.RIGHTJUMP
:[00000F1F001F1F0E0000804000003F3F10101F1FFFF9F080303030C0E0F87020
:.LEFTJUMP
:[000001020000FCFC0000F0F800F8F8700C0C0C03071F0E040808F8F8FF9F0F01
:.LOOKUPRIGHT1
:[30303F3F3E3F1302000080400000000011111F1F1D101B1F0000000000000080
:.LOOKUPRIGHT2
:[30303F3F3E3F1302000080400000000010101F1F3F7FF3713030300000E0C080
:.LOOKUPLEFT1
:[00000102000000000C0CFCFC7CFCC84000000000000000018888F8F8B8B8D8F8
:.LOOKUPLEFT2
:[00000102000000000C0CFCFC7CFCC8400C0C0C00000703010808F8F8FCFECF8E
:
:.PROJECTILE
:[0000181818180000→Pic3


Code: (Source2) [Select]
  :.MSLUG
:prgmθA
:
:0→A→X→B→C
:48→Y
:
:Repeat getKey(15)
:
:ClrDraw
:ClrDrawr
:
:sub(DS,X,Y
:
:.WALKING
:If getKey(3)
:X+1→X
:If B
:4→A
:End
:!If B
:!If A
:1→A
:Else
:0→A
:End
:End
:If getKey(4)
:If A≠6
:6→A
:Else
:7→A
:End
:End
:End
:
:If getKey(2)
:X-1→X
:If B
:5→A
:End
:!If B
:If A≠2
:2→A
:Else
:3→A
:End
:End
:If getKey(4)
:If A≠8
:8→A
:Else
:9→A
:End
:End
:End
:
:.JUMP
:If getKey(54) and (B=0
:1→B
:If A≤1
:4→A
:Else
:5→A
:End
:End
:
:If B≠0 and (B≤6
:Y-4→Y
:B+1→B
:End
:If B=7
:Y+1→Y
:C+1→C
:End
:If C=24
:0→B→C
:End
:
:
:DispGraphrr
:End
:
:Lbl DS
:Pt-On(r1,r2,32*A+Pic1
:Pt-On(r1,r2,32*A+Pic2)r
:Pt-On(r1+8,r2,32*A+Pic1+8
:Pt-On(r1+8,r2,32*A+Pic2+8)r
:Pt-On(r1,r2+8,32*A+Pic1+16
:Pt-On(r1,r2+8,32*A+Pic2+16)r
:Pt-On(r1+8,r2+8,32*A+Pic1+24
:Pt-On(r1+8,r2+8,32*A+Pic2+24)r
:Return

3478
Computer Projects and Ideas / Re: Kodu Game Lab Games
« on: March 31, 2011, 07:04:33 am »
I'm just disappointed because its limitedness of coding...D:
(e.g. Blip's damage cannot be upgraded during a game )

3479
Computer Projects and Ideas / Re: Omnimaga Hang-Out
« on: March 30, 2011, 09:56:36 pm »
sure. If u wanna know the reason why I like 64178887622, convert it to base 36!

3480
Computer Projects and Ideas / Re: Omnimaga Hang-Out
« on: March 30, 2011, 09:54:46 pm »
How about when my avatar is around, number 64178887622 randomly appears?
*Yeong loves the number 64178887622

Pages: 1 ... 230 231 [232] 233 234 ... 276