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

Pages: 1 ... 16 17 [18] 19 20 ... 385
256
Site Feedback and Questions / Re: Site Mods
« on: November 02, 2011, 07:51:05 pm »
Weird they're still intact for me ??? (on the forum, that is)

Or do you mean when you move a topic, it moves back to its original location? O.O


No, it was just a rather bad pun. :P

257
News / Re: Omnimaga introduces instant quick-reply and enhanced CODE tags
« on: November 02, 2011, 05:01:42 pm »
Netham, I didn't realize you added so many things.  Thanks again! :D

Edit: test

258
TI Z80 / Re: zStart - an app that runs on ram clears
« on: November 02, 2011, 04:56:49 pm »
i have a ti84+SE, and whenever i have zStart try to compile an axe prog (ON + ENTER on edit page), it causes a ram clear, which is annoying. I always keep everything archived though, and encounter many ram clears.
I think you may be encountering the same problem I have with zStart right now.  After each RAM Clear, try opening zStart's App and then closing it again.  I know it sounds crazy, but it works for me for most stuff.

259
Site Feedback and Questions / Re: bug with instant Quick Reply?
« on: November 02, 2011, 07:19:47 am »
Deep thought: http://ourl.ca/13758/258204

I have no clue what browser does he use, though.
Deep uses Chrome.

260
Site Feedback and Questions / Re: Site Mods
« on: November 02, 2011, 07:18:47 am »
Remove MOVED topics from feeds
Yes as long as it doesn't remove all MOVED redirects from the forums too, so new members won't think their topic got deleted because they can no longer find it. Also make the OmnomIRC post notifier so it doesn't notify of MOVED links or at least make it so it says a topic was moved.
I just realized that Moved topics get Re-Moved with this mod... >.<

261
Miscellaneous / Re: New Emoticon
« on: November 01, 2011, 06:18:26 pm »
Guess what, guys?
Code: [Select]
:ninja:
:ninja:

262
TI Z80 / Re: Parallex
« on: November 01, 2011, 06:10:19 pm »
That looks pretty awesome.  I'm glad you figured out how to speed it up. :D

263
News / Re: Omnimaga introduces instant quick-reply and enhanced CODE tags
« on: November 01, 2011, 05:43:03 pm »
Great job, Netham!  Thanks for the effort. :D

Code: [Select]
code test

264
TI Z80 / Re: Robo-Gun: My first big axe game
« on: October 30, 2011, 10:18:34 pm »
Do you have to give A a number or something, or does copy do that for you.
Whoops, I fail.  I just blindly copied and pasted without double checking what I was doing.  This will actually work:
Code: [Select]
[Pic0]->Pic0
Copy(Pic0,L3,768) // Fixed this line
DispGraph^r
Repeat getkey(15)
End

265
TI Z80 / Re: Robo-Gun: My first big axe game
« on: October 30, 2011, 09:51:28 pm »
Store your image to either L3 or draw sprites using Pt-On()^r (2nd, angle, 3), then use DispGraph^r.  This displays them in greyscale.
For example:
Code: [Select]
[Pic0]->Pic0  //Uses the OS Pic0 in the program
For(A,0,755)  //756 time loop
{Pic0+A}->{L3+A}   //Stores the info in the Pic to the greyscale buffer
End
DispGraph^r
Repeat getkey(15)
End
try that
Actually this would be much more efficient with the Copy command:
Code: [Select]
[Pic0]->Pic0
Copy(A+Pic0,A+L3,755) // Also, put constants at the end of equations for a small optimization
DispGraph^r
Repeat getkey(15)
End

266
Axe / Re: Some questions: Toggle button, Buffers, Appvars
« on: October 30, 2011, 07:22:41 pm »
Code: [Select]
For(A,L?,L?+767)
 {A} or {A?L?+L?}?{A}
End

This is much faster!
Edit: even faster!
I believe this would do it even faster:
http://ourl.ca/4050/123594

267
The Axe Parser Project / Re: Axiom Requests
« on: October 30, 2011, 03:57:41 pm »
Just so this doesn't get lost to time, here's a 8.8 fixed point square root Axiom: http://ourl.ca/9165/257366

268
Axe / Re: Collisions...again
« on: October 30, 2011, 01:10:40 am »
Adding in some parenthesis will definitely help here :)
He has parenthesis. ;)

Axe uses left to right order of operations.  Make sure you're using your parenthesis correctly.
Instead of "(R-1)<(X)<(R+9)," try "R-1<X and (R+9>X)."

269
TI Z80 / Re: zStart - an app that runs on ram clears
« on: October 30, 2011, 01:06:05 am »
Also, would Dcs7 screw it up?
Yes, but you can set Doors up not to.  Just go to Doors' options and uncheck the "hooks" option.  If you don't, it won't cause anything bad to happen, just that some of zstart's features won't work.  Oh, and I believe that the statrup picture will never work with Doors because DoorsCS acts stupid.

270
Axe / Re: What the heck just happened?
« on: October 29, 2011, 10:52:35 am »
If you don't garbage collect when the calc asks you to, you're going to have very little memory left. Try garbage collecting and see if that fixes the issue.
It will.

All GarbageCollecting does is rearranging your ROM.  Basically, the calculator makes an extra copy of programs that you archive that was also archived a while ago.  All GarbageCollecting does is it deletes these extra copies.

Pages: 1 ... 16 17 [18] 19 20 ... 385