181
TI Z80 / Re: Snak'11
« on: August 06, 2013, 07:27:06 pm »
You should probably consider giving an option to skip the intro animation; it's probably going to be annoying.
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. 181
TI Z80 / Re: Snak'11« on: August 06, 2013, 07:27:06 pm »
You should probably consider giving an option to skip the intro animation; it's probably going to be annoying.
182
Miscellaneous / Re: Awesome pictures thread« on: August 02, 2013, 02:11:57 pm »Using multiple monitors is cool, but isn't 6 a bit too much? You can't possibly watch them all at the same time , can you? Besides, it'll probably take up a lot of RAM and CPU.Maybe if you want to look epic? 183
Humour and Jokes / Re: Invasion of the Fish« on: August 02, 2013, 03:40:14 am »
Can I see a screenshot?
184
Humour and Jokes / Re: Invasion of the Fish« on: August 02, 2013, 03:22:35 am »
And there's a cartoon of someone saying "You just lost the game!" (#25).
* blue_bear_94 lost
185
Site Feedback and Questions / Re: (Poll) Can anyone access this URL?« on: August 01, 2013, 03:31:55 pm »
I got ERR_NAME_RESOLUTION_FAILED on Chrome.
186
Humour and Jokes / Re: Invasion of the Fish« on: July 30, 2013, 08:51:17 pm »
After searching "blue_bear_94" up on Google Images, most of the pictures after the fourth are from MC Forums.
187
Humour and Jokes / Re: Invasion of the Fish« on: July 30, 2013, 08:32:04 pm »
The Sorunome fish!
188
TI Z80 / Re: Elvyna 4 - For the 83/84+!« on: July 29, 2013, 12:05:59 pm »
Well, here's an update.
This consists of all the work that I've done in the past seventeen days, and adds inventory. To open up the menu, use prgmR. Use the arrow keys to navigate, and 2nd to use an item. The inventory files are R and Q. There is a technical item that never shows up in the screen, and is not usable. So next, I have spells, and then I can finally complete the battle engine! 189
Computer Projects and Ideas / Re: 75 lines Binary Puzzle in php and ncurses« on: July 29, 2013, 12:55:26 am »
How'd you get the funky syntax coloring?
190
Miscellaneous / Re: What is your signature?« on: July 28, 2013, 11:48:31 pm »
I only have basic project and calc info on my sig now.
191
Miscellaneous / Re: "What If" Discussion« on: July 28, 2013, 07:20:21 pm »
What if I got a TI-Nspire instead of a TI-84 + SE?
I'd cry over myself at first, but later start learning Lua for games. And I wouldn't express my hate over them as much. 192
Computer Programming / Re: Best random map generating technique [lua]« on: July 28, 2013, 07:17:59 pm »
Well, Minecraft uses Perlin noise for most of the terrain, but since the map will be finite, you could potentially use some other way.
193
Miscellaneous / Re: "What If" Discussion« on: July 28, 2013, 06:53:14 pm »
What if I had been born in 1991 instead of 1997?
By the time I reach high school, it would have been 2005, instead of 2011. In 2005, Omnimaga was four years old and had never closed. I would have been a member of United-TI. The math checklist wouldn't have listed the Nspire as a possibility. Being 22, instead of 16, by now, I would have lost interest in programming. 194
TI-BASIC / Re: Check if two "occurences"« on: July 28, 2013, 03:10:57 pm »I misunderstood the question at first, so I edited my previous post.sum(not(abs(LX-LYIt doesn't work (both examples return 1) and it doesn't surprise me : doing LX-LY (and adding some commands after) would check if there is an equality X(n)=Y(n), but not (X(n),Y(n))=(X(m),Y(m)). 195
TI-BASIC / Re: Check if two "occurences"« on: July 28, 2013, 02:58:48 pm »
The best I can think of right now is:
DelVar ZFor(I,1,dim(LX For(J,1,I) If (LX(J)=LX(I)) and (LY(I)=LY(J 1->Z End End |
|