Author Topic: TJAR game  (Read 4215 times)

0 Members and 1 Guest are viewing this topic.

Offline PC5LeGeND

  • LV3 Member (Next: 100)
  • ***
  • Posts: 54
  • Rating: +0/-1
  • TI-84 asm programmer
    • View Profile
TJAR game
« on: May 31, 2012, 12:40:35 pm »
!!! TI-84/TI-83 !!!

i one lvl pre-release game wooh  :P :w00t:

sure in the future there will be more lvl

-- IMPORTANT --

2nd = jump

arrow keys = move

door = end

 :hyper: --- EVEN MORE IMPORTANT ---  :hyper:

when you start the game go in one of the doors pl means play so go in that door not in the other

AND
after you go in the door type 1 and press enter (this is just a lvl select)

and the game you find in the attachement

the game is in asm Axe



 tell me what you find of it  

Edit By Qwerty: Made it clear that this is written in Axe, not Assembly to avoid confusing people
« Last Edit: June 04, 2012, 02:52:33 pm by Qwerty.55 »
TI-84/TI-83 ASM programmer

TI-84/TI-83 BASIC programmer

Java program





Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: TJAR game
« Reply #1 on: May 31, 2012, 02:19:39 pm »
I have problems running it.
I don't even find the pl door so I tried both but none work :(

edit: Wait, I didn't see you edited your post -.-°
Gonna try to type 1 and press enter
« Last Edit: May 31, 2012, 02:20:57 pm by Hayleia »
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline PC5LeGeND

  • LV3 Member (Next: 100)
  • ***
  • Posts: 54
  • Rating: +0/-1
  • TI-84 asm programmer
    • View Profile
Re: TJAR game
« Reply #2 on: May 31, 2012, 02:22:05 pm »
Oh... **** i think i take the wrong prog this is the lvl editor i will upload the right one in about 20 min
TI-84/TI-83 ASM programmer

TI-84/TI-83 BASIC programmer

Java program





Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: TJAR game
« Reply #3 on: May 31, 2012, 02:23:46 pm »
No, in fact it was the right one, I just didn't see I had to press 1 then enter. It works :)
However, you should not use Input like that, I thought the calculator came back to the homescreen D:

This is great for a beginning though :)
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline PC5LeGeND

  • LV3 Member (Next: 100)
  • ***
  • Posts: 54
  • Rating: +0/-1
  • TI-84 asm programmer
    • View Profile
Re: TJAR game
« Reply #4 on: May 31, 2012, 02:26:23 pm »
Thanks but can you give me a tut to make a menu ??
TI-84/TI-83 ASM programmer

TI-84/TI-83 BASIC programmer

Java program





Offline parserp

  • Hero Extraordinaire
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1455
  • Rating: +88/-7
  • The King Has Returned
    • View Profile
Re: TJAR game
« Reply #5 on: May 31, 2012, 03:08:49 pm »
There is no "Menu" command in axe, so you will have to make a custom menu for your game.

EDIT: is this in axe or asm? Either way it is in the wrong section :P
« Last Edit: May 31, 2012, 03:09:13 pm by parser padwan »

Offline squidgetx

  • Food.
  • CoT Emeritus
  • LV10 31337 u53r (Next: 2000)
  • *
  • Posts: 1881
  • Rating: +503/-17
  • rawr.
    • View Profile
Re: TJAR game
« Reply #6 on: May 31, 2012, 03:10:25 pm »
Why is this in the Axe Project subforum? Moving.

To make a menu I'm guessing you'll have to do it by hand...
Code: [Select]
Loop until 2nd is pressed
if key pressed up
variable decrement
if key down
increment
use variable to draw an arrow sprite/character next to text options
end
if variable = 1
do option 1
if var = 2
etc
« Last Edit: May 31, 2012, 09:57:08 pm by squidgetx »

Offline shmibs

  • しらす丼
  • Administrator
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2132
  • Rating: +281/-3
  • try to be ok, ok?
    • View Profile
    • shmibbles.me
Re: TJAR game
« Reply #7 on: May 31, 2012, 09:11:48 pm »
squidget, whenever you use "code=" instead of just "code," it comes out looking like this for me:

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TJAR game
« Reply #8 on: May 31, 2012, 09:51:46 pm »
You still use IE6? O.O

Offline parserp

  • Hero Extraordinaire
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1455
  • Rating: +88/-7
  • The King Has Returned
    • View Profile
Re: TJAR game
« Reply #9 on: May 31, 2012, 09:57:03 pm »
You still use IE6? O.O
It's the same in firefox :P

Offline squidgetx

  • Food.
  • CoT Emeritus
  • LV10 31337 u53r (Next: 2000)
  • *
  • Posts: 1881
  • Rating: +503/-17
  • rawr.
    • View Profile
Re: TJAR game
« Reply #10 on: May 31, 2012, 09:57:28 pm »
I just realized that with the new code box things, code= doesn't even do anything anymore :(

Offline PC5LeGeND

  • LV3 Member (Next: 100)
  • ***
  • Posts: 54
  • Rating: +0/-1
  • TI-84 asm programmer
    • View Profile
Re: TJAR game
« Reply #11 on: June 01, 2012, 04:29:02 am »
i got firefox but i dont got that problem
TI-84/TI-83 ASM programmer

TI-84/TI-83 BASIC programmer

Java program





Offline aeTIos

  • Nonbinary computing specialist
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3915
  • Rating: +184/-32
    • View Profile
    • wank.party
Re: TJAR game
« Reply #12 on: June 01, 2012, 04:35:21 am »
He edited his post. You better read carefully <_<
I'm not a nerd but I pretend:

Offline PC5LeGeND

  • LV3 Member (Next: 100)
  • ***
  • Posts: 54
  • Rating: +0/-1
  • TI-84 asm programmer
    • View Profile
Re: TJAR game
« Reply #13 on: June 01, 2012, 04:41:45 am »
Really? i didnt see that. XD
TI-84/TI-83 ASM programmer

TI-84/TI-83 BASIC programmer

Java program





Offline AngelFish

  • Is this my custom title?
  • Administrator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3242
  • Rating: +270/-27
  • I'm a Fishbot
    • View Profile
Re: TJAR game
« Reply #14 on: June 04, 2012, 02:52:53 pm »
Moved and edited :)
∂²Ψ    -(2m(V(x)-E)Ψ
---  = -------------
∂x²        ℏ²Ψ