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

Pages: 1 ... 88 89 [90] 91 92 ... 98
1336
TI-BASIC / Re: TI-BASIC Images
« on: October 31, 2010, 02:42:41 pm »
You can do it using Pt-On( and/or Line(, but it's very slow. If you want something faster, you need to use ASCII characters (or a Pic variable, but they're 767 bytes and fill the whole screen).

1337
TI Z80 / Re: Formulum: Texas Instruments Version
« on: October 31, 2010, 12:29:56 pm »
On this one, the labels for the second menu are used as the ones in the first menu.


Ideas? Thanks much
Menu( and Goto will always skip to the first label that has the correct name. Make sure that there are no labels that share the same same.

1338
TI-BASIC / Re: TI-83+/84+ (SE) BASIC Tips, Tricks, and Routines
« on: October 30, 2010, 03:41:04 pm »
What do you mean by loop control statement in the middle of a line? Could you show a good and bad code example?
Middle of a line:
Code: [Select]
:DelVar AIf A
:Return
Not middle of a line:
Code: [Select]
:DelVar A
:If A
:Return
Not middle of a line:
Code: [Select]
:DelVar A:If A:Return
I think the problem mainly occurs if End is placed in the middle of a line.

1339
TI Z80 / Re: Rule and Conquer: My Game In Progress
« on: October 30, 2010, 03:34:33 pm »
Wabbitemu can convert OSes to ROMs, now? ???
It's able to do that in some weird way... It won't be a 100% accurate ROM, but it'll at least work.

1340
General Discussion / Re: The (new) DJ Omni Music Torrent!
« on: October 30, 2010, 01:04:52 pm »
Also I won't provide a zip file of all songs myself for bandwidth reasons and I do not upload one on Mediafire or the like because they do not keep files forever. After a few months we will need to upload the file again. If someone has enough bandwidth to host a zip file, he can do so.
They do keep the files up if you just access your account every 90 days (or maybe it was every 60 days. idk.)

1341
TI Z80 / Re: Formulum: Texas Instruments Version
« on: October 30, 2010, 08:39:48 am »
Lbl3 should be Lbl 3

1342
Other Calc-Related Projects and Ideas / Re: Animations
« on: October 30, 2010, 08:33:49 am »
What is the purpose of your for loop? Since you're using 2→A at the start of the loop, A will have the same value every time the loop is run, and the only thing that will happen when you run the loop more than once is that the what you've already drawn will be drawn on top on itself.

The code can also be rewritten to save space by using other for loops.

Code: [Select]
:ClrHome
:Output(1,1,"DELETING RAM
:For(A,1,16
:Output(2,A,".
:rand(15
:End
:Output(3,1,"RAM DELETED
:For(A,1,16
:Output(4,A,".
:rand(15
:End
:Output(5,1,"DESTROYING
:For(A,1,16
:Output(6,A,".
:rand(15
:End
:Output(7,1,"VIRUS FINISH
:For(A,1,16
:Output(8,A,".
:rand(15
:End

Or even like this:

Code: [Select]
:ClrHome
:For(B,2,8,2
:If B=2
:Output(1,1,"DELETING RAM
:If B=4
:Output(3,1,"RAM DELETED
:If B=6
:Output(5,1,"DESTROYING
:If B=8
:Output(7,1,"VIRUS FINISH
:For(A,1,16
:Output(B,A,".
:rand(15
:End
:End

1343
Other Calc-Related Projects and Ideas / Re: Animations
« on: October 29, 2010, 03:53:29 pm »
How can I do something like this:

Output(1,1,".

Then, wait a second or two and

Output(1,2,".

A second or two and

Output(1,3,".
If you want to make the program wait a bit, use something like rand(100 to waste processing time.

1344
Humour and Jokes / Re: Ndless 2.0
« on: October 29, 2010, 02:56:28 am »

1345
Gaming Discussion / Re: Any Castlevania player here?
« on: October 28, 2010, 03:56:17 pm »
And if anyone knows how to make it work with WPA, pls help, I am getting desperate..
There is no way to make the DS work with WPA.

1346
General Calculator Help / Re: MSD8x/USB8x
« on: October 28, 2010, 03:52:07 pm »
I have some kinda the same story to tell. I also received an adapter, but nothing I tried worked D: USBTools constantly gives me an error 0500(the first time), and error 0505 (all other times I try). what could be the problem? I tried connecting almost everything! Printers, mice, usb pendrives, but nothing worked! please help me too!
I'm having this problem too... Except, everything results in error 0C00.

1347
Humour and Jokes / Re: Fate approves of my evilness >:D
« on: October 27, 2010, 02:47:28 pm »
You have 42 respect now. :D

1348
Official Contest / Re: [BULLETIN] Cage Matches
« on: October 27, 2010, 09:53:48 am »
That is an awesome theme.

1349
News / Re: Casio Prizm - Color graphic calculator
« on: October 27, 2010, 01:33:27 am »
I wonder if this will have a I/O link port. If so, I wonder if sound would be possible...
I think it has one. However, I'm not sure if it's a port that has the right shape for connecting headphones...

1350
News / Re: Casio Prizm - Color graphic calculator
« on: October 26, 2010, 10:31:13 am »
I read on TI-BANK that it might support videos. Porn on a calc... er I mean game cinematic sequences?
Rickrolls? :D

Pages: 1 ... 88 89 [90] 91 92 ... 98