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

Pages: 1 ... 194 195 [196] 197 198 ... 207
2926
General Discussion / Re: I'm going to sing an opera!!!
« on: March 17, 2010, 11:37:08 am »
Congratulations!

2927
TI-BASIC / Re: Ok, I give. I need help.
« on: March 17, 2010, 03:06:04 am »
Thanks, Nyrax. I'll have to go over that later when I have time.

2928
TI-BASIC / Re: Ok, I give. I need help.
« on: March 16, 2010, 08:53:40 pm »
Ya, I think Nyrax knows what I mean. But ya, basically a room by room would be nice. The whole map is a 3x2 of 8x16 screens. I'm not sure how to implement what Nyrax said though into the program (don't fully understand the max( and min( commands yet). Thanks though :)

2929
Other Calculators / Re: Modded Calculator?
« on: March 16, 2010, 04:04:12 pm »
Ya. Agreed.
Personally, I've always wanted to get a junk 83+ or something and just see how much I could do with it. It'd be fun :) (I still have a Mac on my floor that I need to take apart...>.>)

2930
Other Calculators / Re: Modded Calculator?
« on: March 16, 2010, 03:49:18 pm »
Well it only really takes some basic physic knowledge (electrical physics, not the kind of physics we know from Builderboy :P). You would just need to be good with your hands. But over at UTI there is a whole topic, I believe, about modding your calc if you wanna check that out here.

2931
TI-BASIC / Re: Ok, I give. I need help.
« on: March 16, 2010, 03:45:56 pm »
Well I'm trying to avoid ASM Libs right now. Thanks though.

2932
TI-BASIC / Ok, I give. I need help.
« on: March 16, 2010, 01:49:02 am »
So I have been trying to create a walking system that will work for a game I'm creating but I can't get it to work properly and I have tried basically everything I can think of. Basically what I'm trying to do (for the test program) is make it so that it will only move 32 spaces left or right and 24 spaces up and down (basically being restricted to a 24x32 map). I have tried assigning sections of map to not let it move past, I have tried making it so only u can walk over 32 spaces. Nothing has worked. I have gotten close...but not quite.

Code: [Select]
____↓_________________________________________________________________↓
____0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
→0_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|←
_1_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_2_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_3_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_4_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_5_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_6_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_7_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_8_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_9_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_10|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_11|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_12|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_13|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_14|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_15|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_16|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_17|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_18|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_19|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_20|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_21|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_22|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_23|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
_24|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|
→25|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|←
____↑_________________________________________________________________↑

Within those bounds are what I have been able to achieve. The problem though is that it isn't supposed to go into the rows marked with arrows.
Basically, effect wise, what I'm trying to do is that it will wrap around when it gets to row nine and seventeen but stop once you get to row twenty-four. Same basically in the horizontal just stretched out over two screens and only one wrap around. I can post sample code of what I have come up with that has failed (or I can recreate the one that got close), just ask. Thanks for anything :)

I also hope this makes sense haha.

Edit: so I decided I would post the code up that I just created (I thought this would work...not so much :P).

Code: [Select]
ClrHome
DelVar CDelVar DDelVar EDelVar F1→A
1→B
Repeat K=45
Output(A,B,"_
A+D→A
E+(A=9)-not(A→E
If (A=9) and (not(E) or (E=1))
A-8→A
If (A=9) and (E=2)
A-1→A
If not(A) and ((E=2) or (E=1))
A+8→A
If not(A) and not(E
A+1→A
B+C→B
F+(B=17)-not(B→F
If (B=17) and not(F
B-16→B
If (B=17) and (F=1)
B-1→B
If not(B) and (F=1)
B+16→B
If not(B) and not(F)
B+1→B
Output(A,B,"*
Repeat Ans
getKey→K
End
(K=34)-(K=25→D
(K=26)-(K=24→C
End

Note: I realize this is very unoptimized. I also realize that this could potentially contain errors that I just didn't catch. Cut me some slack though, I created this at three in the freaking morning :P (I really need to sleep better...)

Anywho, thanks again for any input/help/anything. :)

2933
Other Calculators / Re: Modded Calculator?
« on: March 16, 2010, 12:10:14 am »
Ah, ok. Thanks.

2934
Other Calculators / Re: Modded Calculator?
« on: March 15, 2010, 11:20:12 pm »
What exactly is the whole 8Mhz, 15Mhz, etc. thing? I can't seem to figure out what you guys are talking about.

2935
Oh ya, I know what you mean. And ya, I saw that post so I know where you're coming from. I wasn't trying to act like someone skipped over that, was just said as a joke. Thanks though :)

2936
Other Calculators / Re: Modded Calculator?
« on: March 15, 2010, 09:42:39 pm »
I don't think many people have (at least I don't think so). It's a really risky thing to do, especially if you don't know what you're doing. I personally don't see any point in it though.

Apparently the 83+SE, 84+, and 84+SE 15MHz mode is already overclocking, just officially by TI.

Really? I've never heard of that. I just always figured that it was that it was better software that was causing the speed boosts.

2937
I wasn't trying to be rude, it was more of a joke. Hopefully nobody took offence :) (I'm sorry if you did.)

2938
The Axe Parser Project / Re: Your Projects - Post and Critique
« on: March 15, 2010, 08:51:45 pm »
Well I only listed one game. 2D sidescroller is the type of game. Check it out if you want. But ya, I think I know what you mean which is a 2D sidescroller.

Edit: This is MapleStory:

2939
Miscellaneous / Re: Why My Activity Has Dropped
« on: March 15, 2010, 08:38:27 pm »
I probably wouldn't get into trouble at mine :p

Well that's always a plus :P I probably would at mine...or at least if it was lunch or the morning (they have even started turning off the vending machines because the school doesn't make enough money from lunch now O.O).

2940
The Axe Parser Project / Re: Your Projects - Post and Critique
« on: March 15, 2010, 08:36:03 pm »
So basically the look of like MapleStory? (2D sidescroller)

Pages: 1 ... 194 195 [196] 197 198 ... 207