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 - Thomas the Death Machine

Pages: [1]
1
TI Calculators / Challenge thread!
« on: December 06, 2014, 11:52:25 am »
I want to try and make a thread where people will post ideas for seemingly challenging programs/ games.


Ill start with polybus (bonus points if CSE)


The main goal is to kick start some awesome projects!
Happy coding!  :)

2
Gaming Discussion / Re: Post your video game bucket list here
« on: December 05, 2014, 08:53:24 pm »
Not sure if his post is meant to be serious or not, but I would sure like to give Half Life 3 a try one day if it happens during my lifetime. :P
If he dies, his blood is in your hands, GabeN

3
someone needs to make a patch for this that can be sent over a link cable. just to piss people off

4
TI-BASIC / Re: TI-BASIC Q&A
« on: October 28, 2014, 04:13:54 pm »
is there a way to store variable inside a code or modify the code itself using ONLY ti basic?
If you only want to store variables between runs of the program, I'd suggest you look into lists. You can create lists with custom names, and they can hold a lot of information (999 numbers to be exact)

If you do 55->dim(LLIST), then you create a list named LIST that can hold 55 numbers. If the list already exists, it will be cropped to the correct size with zeros being added for elements that didn't exist previously (this also means that executing this code when the list already exists doesn't modify the list). A newly created list will be automatically filled with zeros.

An alternate way of creating a list is like this:
{0,1,2,3,4,5,6,7,8,9}->LLIST, which will store all those elements into a new list of the correct size. If the list already existed, it will be completely overwritten.

Every one of those can be used as a variable like this:
LLIST(5) will return the value of the variable, kinda like simply using A. You can also modify variables like this: 8->LLIST(5)
It even works when you use a variable inside the brackets: LLIST(A) will return the Ath element in the list.
Thanks! I was going to use this to make a game that could store a "cash" variable that couldn't easily be erased

5
Introduce Yourself! / a little late i guess
« on: October 28, 2014, 02:20:25 pm »
this would be my 7th post, I think. I am somewhat proficient in ti basic and have the nspire cx cas running os 3.6

6
Gaming Discussion / Re: Post your video game bucket list here
« on: October 28, 2014, 02:17:05 pm »
Half life 3

7
TI-BASIC / Re: TI-BASIC Q&A
« on: October 28, 2014, 02:07:41 pm »
is there a way to store variable inside a code or modify the code itself using ONLY ti basic?

8
General Calculator Help / TI 84 CSE bug
« on: October 22, 2014, 04:50:45 pm »
Hey guys, I have a bug on my calculator that i need fixed within about an hour. I put my TI 84 CSE on the charger last night, and when I woke up, It wouldn't do anything! the screen is locked on doors 8.1

9
TI Calculators / Re: I need help!
« on: August 14, 2014, 07:28:49 pm »
It's not required to update at my school

10
TI Calculators / Re: I need help!
« on: August 14, 2014, 07:28:27 pm »
Yeah but im trying to get 3.6

11
TI Calculators / I need help!
« on: August 14, 2014, 07:10:50 pm »
Ok, I'm new to this forum, I have no clue what i'm doing. lets start there.
I got a TI nspire cx cas a while back and recently learned about endless. the problem is that i haven't updated my calc so it is currently at 3.2, and since the most recent os is 3.9 I dont know where to get the os or how to upload it. school starts in a week for me so I would like to finish this soon.

Pages: [1]