376
Humour and Jokes / Re: Funny #omnimaga quotes (NSFW)
« on: October 25, 2011, 10:13:06 pm »
minecraft is always the topic
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. 376
Humour and Jokes / Re: Funny #omnimaga quotes (NSFW)« on: October 25, 2011, 10:13:06 pm »
minecraft is always the topic
377
Humour and Jokes / Re: Funny #omnimaga quotes (NSFW)« on: October 25, 2011, 09:41:28 pm »
"*Netham45 explodes."
nergam45 is a creeper. 378
Axe / Re: Axe Q&A« on: October 25, 2011, 03:28:24 pm »
not sure what you mean.
if you mean this... "It looks like you could store L1 as a variable like J and then use {J} later on." then No. L1 is a constant number, but you can use it's location {L1} as a variable. ____________________________________________________________________________________ if you mean this... "It looks like you could store L1 to a variable like J and then use {J} later on." then i would say... well you don't need to. L1 is a constant. (34540 if i remember correctly), I would suggest you just keep using L1. So you can do stuff like this for further locations: {L1 + J} 380
Axe / Re: Axe Q&A« on: October 24, 2011, 11:52:17 pm »
Well what is really cool about it is that you can give each block an addressed X and Y
each block will take 2 bytes, one for x and one for y. Block 1 will take memory locations {L1+0} and {L1+1} Block 2_______________________{L1+2} and {L1+3} Block 3_______________________{L1+4} and {L1+5} and so on. Since you know the location of each of these variables, you can save allot of code by jumping to the next byte. so instead of doing Pt-On(A,B,Pic1) Pt-On(C,D,Pic1) Pt-On(E,F,Pic1) Pt-On(G,H,Pic1) Pt-On(I,J,Pic1) Pt-On(K,L,Pic1) and so on... you can do this... For(A,0,N) Pt-On({A*2+L1},{A*2+L1+1},Pic1) End This will also let you easily change the number of blocks in THE GAME by just changing N 381
Introduce Yourself! / Re: Heya! as you can probably tell, im new here!« on: October 24, 2011, 04:39:11 pm »
hello :)
382
News / Re: Reflash your Nspire Diags without RS232!!!« on: October 24, 2011, 04:04:06 pm »How? Or does it not actually have cas available? 383
Miscellaneous / Re: Movies. Help me please.« on: October 24, 2011, 07:55:34 am »
now I have to find and convince the principal. Might be difficult, at least if he says no, I can ask the Middle School's. The schools are connected, and Mega Watt (principal's Nickname) is tightish with me.
384
Miscellaneous / Movies. Help me please.« on: October 23, 2011, 11:43:34 pm »
Ok, so after a little thinking, and googling, it might not be the best idea to ask my principal to play a R rated film in the auditorium...
So there is a girl who I am not sure if i am dating or not. Its one of those weird things that just happens :\ Well I was thinking of convincing our principal to play Paranormal Activity 2 in the auditorium just for us after school someday soon. Sounds weird, but that would be the absolute best movie. Problem is, its rated R... In the US R means 17 and older (not sure about other counties). She is still 16, and the fact that it is R, might be an immediate no. What I am requesting of you all, who i consider quite close friends, is what movie would be the best for just being friends, but amazingly romantic at the same time if she feels more than that towards me. Oh and it will also be a surprise. Here are a few ideas I have had. In no particular order... * Hercules (Disney version) * Beastly * Wall-E * a poorly done ninja movie that is funny because it was supposed to be good, but is considered bad these days. _____________________________________________________________________ Note: I moved this here from private matters because i didn't want the 100+ post count limit on this topic. 385
News / Re: Reflash your Nspire Diags without RS232!!!« on: October 23, 2011, 07:51:30 pm »
Should i download something quickly just in case?
386
Art / Re: Angel-My succubus« on: October 23, 2011, 07:49:02 pm »
Maybe have some questionable pictures (first glace questionable) be in a spoiler?
387
Miscellaneous / Re: Random YouTube Videos« on: October 23, 2011, 07:45:32 pm »[ Invalid YouTube link ] thank you so much for that. You helped me on the 'date' i just had. (that commercial played in previews at the theater) 388
Gaming Discussion / Re: Omnimaga Starcraft tournament« on: October 23, 2011, 01:02:57 pm »
never played :p
is it free? 390
Computer Programming / More C++ help plz« on: October 23, 2011, 12:29:25 pm »
nvm. i might be stupid
#ifdef __cplusplus #include <cstdlib> #else #include <stdlib.h> #endif #ifdef __APPLE__ #include <SDL/SDL.h> #else #include <SDL.h> #endif #include <iostream> #include "SDL.h" using namespace std; int main () { int A=5; cout << "Hello World!" << "\n" << A; return 0; } |
|