Тёмный

Snake Program on the TI 83/84+ 

Patrick Feltes
Подписаться 3,3 тыс.
Просмотров 264 тыс.
50% 1

Опубликовано:

 

28 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 806   
@biglaughs3680
@biglaughs3680 5 лет назад
It would be helpfull if I was able to see the buttons
@jakelater596
@jakelater596 4 года назад
Do 2nd + catalog and search up a code
@subnoticaloutdoorsman
@subnoticaloutdoorsman 3 года назад
Agreed
@donovan30
@donovan30 2 года назад
Did you turn your brain on first?
@boltstrikes429
@boltstrikes429 7 лет назад
do you mind actually explaining what menu's you are going into? 45 seconds into the video and im already lost
@mattjw16
@mattjw16 6 лет назад
Bolt Strikes Yeah, I know right?! Same!
@agentpdx
@agentpdx 5 лет назад
For getting ZStandard, just press "Zoom" along the top bar by the screen.
@ItzzParty
@ItzzParty 5 лет назад
@@agentpdx how do u get cleaned draw
@desmondfromlost
@desmondfromlost 5 лет назад
You can just enter the catalog and look for it there
@vanitar4187
@vanitar4187 5 лет назад
Agentpdx do you know how to make the list
@sethobrien5651
@sethobrien5651 9 лет назад
Can someone just type a list of what i need to do? The annotations throw me off a bit, so I'm not entirely sure about how to do this.
@sandorfogassy3007
@sandorfogassy3007 9 лет назад
This should help a lot of you with problems. As has been mentioned, the code in the annotation "If pix-test(y,x)=1..." does seem to screw things up. This is the piece of code that causes the program to halt if you run yourself over. The program will work without it however. Delete it, and the program should run fine. If you see the two dots, then that is a good sign-it means that the program is mostly working. Press any of the arrow keys, and the game should begin. If an error is thrown, press two or "GOTO" and it will take you to the line of code that caused the error. Code is extremely picky, and the slightest error can cause it to stop working. Come through again and again, line by line, looking for any discrepancies. You will notice that the code is broken into sections of functionality. Knowing what does what will help you greatly in troubleshooting the problem. The first section lays out the basic structure of the program. The end of Line(10,-10... stuff concludes the static layout of the program. You should be able to execute the program with nothing after those four lines like he does in the video. If all you have is that section written, and it doesn't work, then look in there for you error. Beginning with the ":LBL1 :GETKEY" line, is where the coding for the movement starts. If you can load the screen, but move, start there and work your way down line by line looking for an error. Note that the calculator won't always tell you if a code is improperly written. It will tell you if a code doesn't make since, it won't necessary if you told it to do the wrong thing, so long as it is an actually command of some sort. After you've deleted the annotated "pxl-Test" code, you will be abel to run yourself over. I rewrote a section of that code, and it works fine. Here is what I used: " :If pxl-Test(Y,X)=1 and Y≠ A :Stop" This code should be written just under the line that says Pxl-Off(LY(K)...Basically what the code I gave you says is, if the pixel at the coordinate occupied by (Y,X) (the snake) turns off, and that coordinate is not equal to A (which is where the apple is) then stop the program. The reason is, because when there are two "on" signals to the same pixel, the pixel changes to off. The snake is on, but if it runs itself over, there or two "on" signals, which turns on of them off. This indicates that you've run you self over, and thus should stop the game. I am not exactly sure why this is, but if you run the program without this code, you will erase yourself as you run yourself over.
@charlie51135
@charlie51135 10 лет назад
To fix the bottom wall, change the third line to: Line(-10,-10,10,-10)
@bombytetoo
@bombytetoo 5 лет назад
thanks
@Circuitdamage
@Circuitdamage 5 лет назад
You rocks!
@tripskz6829
@tripskz6829 5 лет назад
Wym the third line that says 0->s?
@clay8957
@clay8957 5 лет назад
@@tripskz6829 he means the third one that says :Line( its the 17th line I guess
@trulyalternate3943
@trulyalternate3943 4 года назад
Thank you
@christophermercierjr4717
@christophermercierjr4717 3 года назад
When he gets to the part about the border lines, you will want to put in the following: Line(-10,10,10,10) Line(-10,10,-10,-10) Line(-10,-10,10,-10) Line(10,10,10,-10) The first two numbers after "Line" are the starting X and Y coordinates, and the third and fourth numbers are the ending X and Y coordinates respectively.
@Mahvelous21
@Mahvelous21 6 лет назад
The game works, but all I see is a dot. Not a snake. The dot moves and can collect the apples but doesn’t grow. Can anybody help?
@trulyalternate3943
@trulyalternate3943 4 года назад
Mahvelous 21 I have basically the opposite problem, the snake keeps getting bigger
@PatrickFeltes
@PatrickFeltes 10 лет назад
For all of you who want to make it so you can run into yourself do this: After the x or y is changed, but before you do the drawPixel command, do If pxl-test(Y,X)=1 and Y =/= A and X =/= B Then Stop End
@michaelbaker4575
@michaelbaker4575 10 лет назад
Im not much of a genius on calculators, so i can't figure out exactly where to put that in the code. I thought i put that code in the right spot, but then once i hit a wall it immediately had the pen that looks like a + thing appear and the whole game basically just paused.
@PatrickFeltes
@PatrickFeltes 10 лет назад
That is what should happen. The game stopped and you were just on the graphing screen.
@michaelbaker4575
@michaelbaker4575 10 лет назад
pj6444 I updated the code so that when that happens, instead it clears the draw and just goes back to the regular empty calculator mode. However, there is just one more problem: running into the "apple" also stops the game. Could you do something like store a different number value in the apple or something similar that you could allow the snake to run into? Or is there a way at all to fix that?
@PatrickFeltes
@PatrickFeltes 10 лет назад
I can't remeber what the variables for the position of the apple were, but if you know those you can add this to the if statement that you added. != is does not equal If pxl-test(y,x)=1 and (x!=appleX or y!=appleY) The appleX and appleY are A and B I believe, but I am not entirely sure.
@Agentleader1
@Agentleader1 10 лет назад
***** He meant for you to replace the ! and the = into a not equal sign, he basically used ! because it's commonly used in coding to represent "not".
@CreeperKid43
@CreeperKid43 10 лет назад
It's awesome, but when i go into the wall, it says ERR:DOMAIN 1:Quit 2:Goto Please help.
@PatrickFeltes
@PatrickFeltes 10 лет назад
Please like this so it gets up top: For everyone who has the error with the sides of the screens do this after you change the x and y position of the snake: If X=62 or X=1 or Y=1 or Y=94 Stop That should fix your problem
@PatrickFeltes
@PatrickFeltes 10 лет назад
After the x or y is changed.
@Agentleader1
@Agentleader1 10 лет назад
pj6444 if you do the following code, the boundaries have been greatly reduced invisibly. Are you sure? Try a remake of that boolean. I crashed and died when I headed too right
@MrDiscopogo69
@MrDiscopogo69 10 лет назад
Agentleader1 its happening to me
@Agentleader1
@Agentleader1 10 лет назад
Sidra Knox I'm still trying to get the source code up. Hold on, be patient...
@Dre_13345
@Dre_13345 4 года назад
He's that type of guy that will program everything in 0,0000000000000000000000000000001 nanoseconds, but as it comes to explaining it.... it's the type of guy that is very good at written exams, but when it comes to oral exams..... :-p
@samuelstuff4557
@samuelstuff4557 4 года назад
People are saying how hard it is to follow your instruction but if you have ever programmed anything on a calculator it is super easy.
@kaniyahwms
@kaniyahwms 2 года назад
do you want a cookie?
@samuelstuff4557
@samuelstuff4557 2 года назад
@@kaniyahwms yes please
@noahtaylor9635
@noahtaylor9635 5 лет назад
How do I make the snake speed up or slow down? Mine goes pixel by pixel, which isn't bad, but I would like to speed it up a bit.
@seanmoran4549
@seanmoran4549 8 месяцев назад
Did you figure this out? 4 years later lol
@Drew_64
@Drew_64 5 лет назад
I can’t see what menu you go into to get the graph settings, and does this work on a TI-83?
@hannahwolfe9775
@hannahwolfe9775 6 лет назад
This is so cool! It makes sense too. Thank you for teaching me programming
@jacobknop6787
@jacobknop6787 8 лет назад
How are the arrows assigned to the code? As in what code allowed you to use your arrows to move the snake?
@vinnyray4453
@vinnyray4453 4 года назад
Jacob Knop I don’t knoe
@Coco_EC
@Coco_EC 4 года назад
It's the getkey command, which basically checks what key is pressed and returns the value assigned to this key.
@bubbles4600
@bubbles4600 5 лет назад
this man types faster on his calculator than i do on a phone...
@braydenhodgson7342
@braydenhodgson7342 5 лет назад
Bruh he’s on a computer
@koostopyy
@koostopyy 3 года назад
WHEN U SAID, "THAT'S WHAT SHE SAID " I DIED MAN! SO OUT OF NOWHERE, I LOVE IT ! 10/10 tutorial
@cedoucini4703
@cedoucini4703 8 лет назад
I made a list of all the options in your video. Great job by the way! (I have a question, if I want to make the pixels bigger, how do I do that?) (Press read more for the whole thing) : ClrDraw : ZStandart : 1 -> D : 0 -> S : 5 -> dim(LX) : 5 -> dim(LY) : 1 -> K : 10 -> X : 10 -> Y : randInt(1,93) : randInt (1,62) : Horizontal 10 : Horizontal -10 : Vertical 10 : Vertical -10 : : Lbl 1 : getKey ->G : : Pxl-On(A,B) : If G=26 and D!=2 : 1 -> D : If G=24 and D!=1 : 2 -> D : If G=25 and D!=4 : 3 -> D : If G=34 and D!=3 : 4-> D : If D=1 : X+1-> X : If D=2 : X-1-> X : If D=3 : Y-1-> Y : If D=4 : Y+1-> Y : : Pxl-Off(LY(K),LX (K)) : If pxl-test(Y,X) and Y != A and X!=B : Stop : If X=62 or X=1 or Y=1 or Y=94 : Stop : Pxl-On (Y,X) : X-> LX(K) : Y-> LY(K) : If X=B and Y=A : Then : S+5->S : dim(LY)+5-> dim(LY) : dim(LX)+5-> dim(LY) : : randInt(1,93)->B : randInt(1,61)->A : End : : K+1->K : If K=dim(LX) : 1->K :Goto 1 You are welcomed!
@tztinfinity6573
@tztinfinity6573 8 лет назад
Thanks, but at the beggining of the video, he did LX Then he pressed Enter and it appers "Error" but me it is {0 0 0 0 0}. After entering all the "codes" shown in the video in the program, when I going to start it, my graphing calculator say: ERR:SYNTAX 1:Quit 2:Goto Why?
@cedoucini4703
@cedoucini4703 8 лет назад
press goto and tell me where the line of error is? because i did exactly what he did in the video and it worked out even if its really slow and small
@cedoucini4703
@cedoucini4703 8 лет назад
TzT Infinity
@tztinfinity6573
@tztinfinity6573 8 лет назад
+Cedric Comte it's at Pxl-Off ( LY(K) , LX2K))
@cedoucini4703
@cedoucini4703 8 лет назад
TzT Infinity its not a 2 its a ( but if you typed it wrong only here then its okay just try to delete the line, run it, then when it gives you an eror just type it back it might work cause sometimes its just a calculator proplem not you
@KalebC4
@KalebC4 6 лет назад
Collisions and scoring help? I’d like to have the game end and show my score when I hit my tail/a wall
@Hiro-pk2lh
@Hiro-pk2lh 2 месяца назад
For some reason my snake is really slow how do I make it faster?
@ianthemedian4847
@ianthemedian4847 5 лет назад
The Correct Code for the Walls are :Line(-10,10,10,10 :Line(-10,10,-10,-10 :Line(10,-10,10,10 :Line(10,-10,-10,-10 ------------------------------- oh and tip if you wanna crate your own games try to learn to code python on the computer, ti-84 code and python are pretty similar
@mazerrackham8128
@mazerrackham8128 5 лет назад
Thanks man. That fixed the problem.
@Syvarnal
@Syvarnal 2 месяца назад
Hey, so when I try to test it at around 4:20 it shows up for a second without the diagonal then it says: ERR: SYNTAX 1:Quit 2:Goto This is my code: :ClrDraw :ZStandard 0>S 5>dim(ʟY) 5>dim(ʟY) 1>K 10>X 10>Y randInt(1,93)>B randInt(1,61)>A Line(-10,10,10,10) Line(-10,10,10,10) Line(-10,10,-10,-10) Line(10,10,10,-10) I am using a TI-83+ and I dont really know what to do here as I have tried basically everything.
@weredoughz
@weredoughz 3 года назад
Thx man now I'm not gonna be bored in math class
@hannahlewis8636
@hannahlewis8636 8 лет назад
How do you change it to a smaller window? ITs really hard to see on my Calculator and is only 1 pixel wide to hit making it obvious that I am playing a game.
@zenomeurrens2566
@zenomeurrens2566 5 лет назад
Hannah Lewis n
@Ivan_builds
@Ivan_builds 8 лет назад
I'm having troubles with this program. when I execute, it generates two random apples, but no snake, and no error. Any tips?
@mhs.oliver
@mhs.oliver 2 года назад
Same
@naokiheginbotham3263
@naokiheginbotham3263 8 лет назад
Awesome! Thanks for this tutorial, It works great! Can someone tell me what all of the variables are though? Thanks
@ThePantstealer
@ThePantstealer 8 лет назад
How do you make the snake and apple bigger?
@triforceofcourage100
@triforceofcourage100 10 лет назад
For everyone having trouble with controls hit a-lock before hitting the enter to start the program and then use the arrow buttons
@thomascombs1531
@thomascombs1531 7 лет назад
diddnt work
@jerry8826
@jerry8826 5 лет назад
Thank you❣️
@simondenholm325
@simondenholm325 10 лет назад
It's pretty easy to make a pause button (I chose the enter button but change the number to whatever you want for other buttons). Put the following under the part where you change direction 1-->p If G=105 and p=1 Then Pause 0-->P End If G=105 and p=0 Goto 1 Also, how would you make it so that you die when crash into your body? I tried to use the pxl-test but I couldn't get it to work. Where would you put it? And what would you write exactly? Thanks
@luvyouaugust
@luvyouaugust 11 месяцев назад
any reason why my snake doesn't stop growing whenever it moves, the pixels at the end not deleted
@jeangcheng
@jeangcheng 9 лет назад
Whenever I try to program it, it says ERROR: DOMAIN and it shows that I have a problem in the area it says: Pxl-Off (LY(K), LX(K)) .... I'm so confused, does anyone know why?
@crpalo755
@crpalo755 5 лет назад
Same here
@Alex-us2vw
@Alex-us2vw 9 лет назад
Coo! Never knew graphing calculators can do so much stuff!! I'm going to buy one for g12 math. Just curious could the snake and eggs have been programmed thicker?
@Itachi-ub4iw
@Itachi-ub4iw 6 месяцев назад
Please reply to this... My calculator keeps getting an invalid dim error where you made the pxl-on and pxl-off mistake
@Itachi-ub4iw
@Itachi-ub4iw 6 месяцев назад
Also a argument error
@darraghcooley5591
@darraghcooley5591 7 лет назад
My snake doesn't grow when I eat the apple. I must have messed up when you were adding that. Do u know where in the video that happened?
@KalebC4
@KalebC4 6 лет назад
Darragh Cooley If X=B and Y=A Then S+5->S Either this line dim(LY)+5->dim(LY) This line dim(LX)+5->dim(LX) Or this line has an error randInt(1,93)->B randInt(1,61)->A End
@kiumhwangbo5140
@kiumhwangbo5140 2 года назад
the l shaped thing isnt coming up on my screen
@dario-viva
@dario-viva 9 лет назад
the second line should be like this: :Line(-10,-10,10,-10)
@mnMrBobnm
@mnMrBobnm 10 лет назад
Whenever i start it up, it just has a floating plus sign. I try to move the snake but insteadthe plus sign moves(when i use arrow keys). Whenever i try to use numbers, itpulls me out of the game
@Armanthe92
@Armanthe92 10 лет назад
SAME!
@AyeOca
@AyeOca 7 лет назад
What i did to fix that problem is I deleted the stop after "If pxl-Test(Y,X)=1 and Y=/=A and X=/=B"
@thomasholtrey7721
@thomasholtrey7721 6 лет назад
Run the program don't hit graph
@Harryk7988
@Harryk7988 8 лет назад
I get an error data type and brings me to line where it says If Pxl-off(Ly(K),Lx(K))
@timothynaff2663
@timothynaff2663 8 лет назад
It wouldn't let me control the snake, and I have a letter version of the calculator , and there are more pikers, causing the snake to be very small. How do I fix this
@clysmo_
@clysmo_ 8 лет назад
It's pretty hard, I have tried a few times but failed each time. Just lessen the borders to make the "playing field" smaller.
@yeehaw1639
@yeehaw1639 6 лет назад
How do you control the snake?
@LynjaTheNinja_rl
@LynjaTheNinja_rl 2 месяца назад
7:23 he is crazy for that
@koibo1
@koibo1 9 лет назад
How much RAM does this take up, and also is it more or less than Pong; if more, how much does Pong take up?
@Odysseusfields
@Odysseusfields 9 лет назад
I've followed everything to a T and the only difference is that my calf is silver edition and yours doesn't appear to be. Everything displays right but the snake doesn't move and pressing any key takes me out of the program. Help maybe?
@123Sushichef
@123Sushichef 9 лет назад
Odysseusfields You have to delete the code he told you to add in the annotation in the video, and then add it after you tell the code to draw the snake. I haven't quite figured out where that is, but I will keep you updated when I do.
@dereksalas7856
@dereksalas7856 9 лет назад
Hey how do you fix it, if it all that shows up is a plus sign and the one dot you're supposed to get?
@EpoxyResin-x3s
@EpoxyResin-x3s 4 года назад
So, I tried this, but the buttons don't do anything. It just goes is a straight line and says ERROR:DOMAIN. Do you know what I'm doing wrong?
@broddestrand
@broddestrand 7 лет назад
I am getting an "error syntax" and it is taking me to the 4:th "Line" row
@poobastank3475
@poobastank3475 10 лет назад
I own a Ti-84 Plus C silver edition, and cannot get the controls to work. How do I fix this?
@TLGWdeck56
@TLGWdeck56 10 лет назад
As far as i know, I've been able to run and input all commands and code correctly, but for some reason the apple isn't appearing. (TI-84 Plus)
@gabedamangames
@gabedamangames 3 года назад
ik you commented 7 years ago but i dealing with same issue in 2021 any help could you maybe help me figure it out lol your prob like 25 now or something so i doubt you even use this any more
@jacklazzaro9820
@jacklazzaro9820 6 лет назад
I replicated this on TI-84+, only one problem. There's no collision detection when the snake hits itself
@Alunae
@Alunae 6 лет назад
@Sega Sonic do you know how to add or change color of either the snake or the apple on TI 84? Cause my snake never shows up and I’m guessing it’s because it’s on color white. If I could make the snake green or something I should be able to see it then. Also, my apple is very very tiny, like an almost invisible dot. I would very appreciate it if you could tell me how to make it bigger if you know by any chance. Thank you very much.
@spqcebuns5065
@spqcebuns5065 4 года назад
Can some help. I typed all of the stuff but when i click run There is no snake,just an apple
@bigbomb5904
@bigbomb5904 6 лет назад
First program _drawclear_ is under {(2nd)(program)} Second program _zstandard_ is help I want to know what is it under
@jacksonkelley1641
@jacksonkelley1641 9 лет назад
I have a ti 82 plus c silver edition and the snake is tiny and you can't see the apples any way to fix
@Harmoniou-s
@Harmoniou-s 8 лет назад
no only t 83 and above work correctly
@ArdsLillix
@ArdsLillix 8 лет назад
lol I found out why the bottom border didn't work This is how it should be Line(-10,10,10,10) Line(-10,-10,10,-10) This is line you messed up on, the one in the vid=Line(-10,10,-10,-10) Line(-10,10,-10,-10) Line(10,10,10,-10)
@oscarquezadagamer6702
@oscarquezadagamer6702 6 лет назад
ArdsLillix how do u put the comma
@AF-jx7hz
@AF-jx7hz 6 лет назад
The comma is a regular button
@dedc_sailor
@dedc_sailor 6 лет назад
You done it wrong
@PeterPan-eh8hp
@PeterPan-eh8hp 6 лет назад
ArdsLillix he said it he just didn't press the key
@Olssontheone
@Olssontheone 10 лет назад
When i hit the apple it says ERR:ARGUMENT and when I press goto it points at the randInt part but I have completely compied your work. Do you have any tips for me?
@timothyharveyjr.1531
@timothyharveyjr.1531 7 лет назад
I really just wished you'd show your fingers so we knew exactly what you were putting in
@Churr0s.
@Churr0s. Год назад
Btw the barrier isn’t the black around it, the barrier is the abyss that kill u, so u can actually just eat the wall but it doesn’t give points
@hudinator4206
@hudinator4206 8 лет назад
my snake still makes a line where he was and and doen't just move normaly any help?
@ErikNilsen1337
@ErikNilsen1337 10 лет назад
I copied your code into my calculator exactly, but it still only makes an ever-growing snake. Would you type out all the code so I can double-check that I didn't make a mistake?
@luvyouaugust
@luvyouaugust 11 месяцев назад
same :(
@ianpoe8704
@ianpoe8704 8 лет назад
5:18 everytime i program ever
@ianpoe8704
@ianpoe8704 8 лет назад
5:47 dosn't work because you didn't close off the last line(..) with a )
@ianpoe8704
@ianpoe8704 7 лет назад
oh wait no i'm just stupid
@brandonneal2147
@brandonneal2147 7 лет назад
end parentheses arent necessary, just optional if youre focused on aesthetics
@ianpoe8704
@ianpoe8704 7 лет назад
yeah this was before i was good at it
@BentleyKingToebeansOwenRhett
@BentleyKingToebeansOwenRhett 3 месяца назад
How do you make it so the game ends when the snake hits itself?
@drewgalbraith3821
@drewgalbraith3821 9 лет назад
Hey, I'm not getting errors, but my paddles refuse to move. Ideas?
@alphagaming6585
@alphagaming6585 10 лет назад
I don't have any errors, but my snake won't appear. Just the cursor of the graph.
@elenabosack1185
@elenabosack1185 10 лет назад
Everything works, except I can't move up. What did I miss?
@CorbynJacobsen
@CorbynJacobsen 2 года назад
I accidentally broke my snake, this helped me get it back. It would’ve been helpful to see the buttons
@Sacuto34
@Sacuto34 10 лет назад
it doesn't work on my calculator. it comes the message "ERR:DATA TYPE" if I want to start it.
@Allenrythe
@Allenrythe 10 лет назад
Just delete the lists in your calculator's memory. (2nd + mem + lists) run the code again and it should work.
@skaarlner
@skaarlner 7 лет назад
Allenrythe Thanks
@kentalynn2
@kentalynn2 9 лет назад
I have a question about the code. How does the code display multiple white pixels moving at a time?
@blaynetruman4741
@blaynetruman4741 7 лет назад
It says EROOR:SYNTAX when I press "go to" it takes me to "1>D" How do I fix it!
@cocowzw6243
@cocowzw6243 6 лет назад
works perfectly but sometimes it stops and shows the corrds?
@pvp_ends733
@pvp_ends733 6 лет назад
Is there anyway to program it so that you lose when the snake hits itself?
@Kittygrl513
@Kittygrl513 Год назад
i have a ti 83 and it crashes with a syntax error when it starts and when i press goto it brings me to lbl 1
@bewareme4282
@bewareme4282 6 лет назад
How do you get the CTL screen
@ctg8563
@ctg8563 5 лет назад
Why when I ran a test where you ran a test with the diagonal line at like 4:28 in the video I get err:Archived 1: quit 2:go to ?
@melissasharpe9476
@melissasharpe9476 4 года назад
CTG85 I got that to. I have no idea why that happens.
@nauticaltoast8920
@nauticaltoast8920 9 лет назад
my snake tail won't go away after I start. it just stays in one place and the head drags from it got any suggestions???
@Mrburnxminecraft
@Mrburnxminecraft 9 лет назад
Seth Garris how to you store the 0 in the s
@Kaiser_Kenny
@Kaiser_Kenny 9 лет назад
@Christos Karamanos he's using an emulator on the pc. I had to pause. The video multiple times, but I learned a lot while doing it.
@sophiebeadle1009
@sophiebeadle1009 6 лет назад
I'm using a TI-84 PLUS CE, can it still work for me?
@Zypic
@Zypic 4 года назад
Does anyone know what the code would be to make the snake die if they hit their own tail?
@kghumrawi42
@kghumrawi42 10 лет назад
I am trying to do this on a Ti-82, but it doesnt like pxl-on(A,B), also im using L1(with number under) and L2 instead of LX and LY.. so i changed A,B to X and Y..it liked it but then didnt like pxl-on(L2(K),L1(K)) it says its a domain error...any help please?
@synexe4399
@synexe4399 6 лет назад
How do make borders dissappear
@handlesarecringe957
@handlesarecringe957 9 лет назад
I have it play normally but if I run into myself I don't die. Any way to fix?
@superspinosaurus1
@superspinosaurus1 10 лет назад
Can't get the snake to move left... constantly going right, but can go up and down... Any suggestions?
@liamsouth1511
@liamsouth1511 5 лет назад
having the same problem someone help
@ryanhammonds6449
@ryanhammonds6449 7 лет назад
I don't know what buttons to press in the making
@Darkblaze129
@Darkblaze129 9 лет назад
Please how can we make the snake go faster ?
@ciaranvgool
@ciaranvgool 9 лет назад
Does it work on ti84 plus ce-t
@beastypie99
@beastypie99 10 лет назад
It takes a while to load. I waited like a minute. It displays the borders and the food things that u are supposed to collect. But the snake's body isnt visible and i cant control it. Its stationary
@bannanacorn23
@bannanacorn23 5 лет назад
"that's what she said, heh heh"
@leonard.rossanoalerendrodu459
@leonard.rossanoalerendrodu459 8 лет назад
hey! i dont understand why but my snake would'nt turn ... can you help me please? ^^
@chrisiyer2967
@chrisiyer2967 10 лет назад
How do I start the game? I have the program and when I execute it and press enter, the walls and two dots show up. I assume one is the snake and one is the apple, but what do I press to start controlling the snake?
@chrisiyer2967
@chrisiyer2967 10 лет назад
Please help?
@kylemonahan6918
@kylemonahan6918 10 лет назад
Chris Iyer same is happening to me does anyone have the answer?
@kylemonahan6918
@kylemonahan6918 10 лет назад
just figured it out hit enter
@chrisiyer2967
@chrisiyer2967 10 лет назад
Yeah I tried that...
@willemvandenborne7451
@willemvandenborne7451 10 лет назад
Chris Iyer it doesn't work with me either
@johnspilker5097
@johnspilker5097 9 лет назад
What exactly is the first annotation... the one that is like -->D? how do i put that into a calculator
@dannycarson3352
@dannycarson3352 8 лет назад
+John Spilker 1->D. You press 1, then just above the on button it a store button that says STO->. Press that, then Alpha D
@dsdom2
@dsdom2 9 лет назад
how do you run it? im using the same calc as him what did he press to run
@maoteddy5879
@maoteddy5879 9 лет назад
Press the enter button
@mamasmiley2124
@mamasmiley2124 3 года назад
hi. so its not working it keeps going to the 'getkey' part
@dylansmith6555
@dylansmith6555 8 лет назад
How do I make an arrow??? I'm using ti nspire 84? (Simple keyboard, have another but haven't practiced with it)
@dragonwildgaming5404
@dragonwildgaming5404 4 года назад
Above the on button where it says STO with an arrow next to it
@benfrankioresi8731
@benfrankioresi8731 9 лет назад
What button do I press to turn
@aryansawhney925
@aryansawhney925 8 лет назад
i have a ti 84 plus ce, the color one, and my snake just stops at the end of the boundary and then gets stuck, then when i try to move with my arrows it starts using the pointer. Can u please tell me how to fix this issue. and can u also tell me where you got the basic code form so i can check through, thnx
@sirtow4190
@sirtow4190 8 лет назад
Same Problem.
@kendalldenos6169
@kendalldenos6169 5 лет назад
when i try to play it says "err: domain" if i press goto it says i typed in "Pxl-Off(LY(K),LX(K))" wrong.. as far as i know i typed it in correctly
@nietyoeri1481
@nietyoeri1481 4 года назад
I had this problem too but i put a ( infront of the LX and it was fixed try this
@jtort6480
@jtort6480 7 лет назад
Did it on my ce, and the play screen is very tiny in the top left. Help?
@sirbearrington9796
@sirbearrington9796 7 лет назад
My snake game works very nicely the only issue is that there are individual points that appear in a grid-like pattern across screen with around 4 point spaces in between. I can play, it is just difficult to see the spawned fruit and if i run into the stray points It is game over.
@Pryogen
@Pryogen 3 года назад
Press 2nd, format, then turn grid off
@zionburdick
@zionburdick 8 лет назад
So I don't understand the part at 10:47 about adding the stuff in can you help me?
@Boxman487
@Boxman487 6 лет назад
How do you store a number
@blip3178
@blip3178 7 лет назад
I'm on ti 84 plus ce and the apple only spawns in the top left quadrant how do I fix this
@grantcarlson7523
@grantcarlson7523 5 лет назад
Where do you find lable
Далее
Pong Program on the TI 83/84+ Calculator
13:50
Просмотров 125 тыс.
Brawl Stars expliquez ça
00:11
Просмотров 7 млн
Calculator Gaming: Minecraft
11:53
Просмотров 696 тыс.
Raytracing on a Graphing Calculator (again)
13:38
Просмотров 1,9 млн
Pong for ti-84 and ti-83
12:09
Просмотров 128 тыс.
TI-BASIC Snake Program Part 1
21:23
Просмотров 95 тыс.
Calculator Gaming: Grand Theft Auto
8:17
Просмотров 1,6 млн
Flappy bird on ti 84
17:03
Просмотров 14 тыс.
Why Do Calculators have a Headphone Jack?
9:06
Просмотров 1,8 млн
The Slow Death of Windows
17:22
Просмотров 1,1 млн
TI-BASIC Snake Program Part 3
27:13
Просмотров 13 тыс.
Brawl Stars expliquez ça
00:11
Просмотров 7 млн