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 - XVicarious
Pages: 1 ... 18 19 [20] 21 22 ... 33
286
« on: July 01, 2011, 04:56:20 pm »
Wow. Looks very impressive! God it reminds me I need to start working as well. I'll try the demo later as I have work to do also. Good work so far, keep it up.
287
« on: July 01, 2011, 04:49:52 pm »
Lol. Juju. I use 0.5.3b, just upgraded from 0.5.3, since I got it when it first came out. Can't wait till 1.0
288
« on: July 01, 2011, 04:46:46 pm »
looks interesting. Hopefully you can get it done on time
289
« on: July 01, 2011, 02:41:24 am »
Damn, soooooooo close too... Less than 100 posts... Less than 75.
290
« on: June 30, 2011, 09:36:33 pm »
Wow. Super optimization.
291
« on: June 30, 2011, 09:34:18 pm »
Thanks Runer112, your code works so much (in IRC)
Input "Octodec: ",Str1 length(Str1)->O For(I,1,O) inString("0123456789ABCDEFGH",sub(Str1,I,1))-1->A (A*18^(O-I))+R->R End Disp R Pause
292
« on: June 30, 2011, 09:13:38 pm »
I really didn't know how to do this, so I did it the long way, how could optimizing this be done? Its to convert Octodecimal (Base 18) to Decimal (Base 10):
length(Str1)->O For(I,1,O) sub(Str1,I,1)->Str2 If (Str2="0") R+(0*18^(O-I))->R If (Str2="1") R+(1*18^(O-I))->R If (Str2="2") R+(2*18^(O-I))->R If (Str2="3") R+(3*18^(O-I))->R If (Str2="4") R+(4*18^(O-I))->R If (Str2="5") R+(5*18^(O-I))->R If (Str2="6") R+(6*18^(O-I))->R If (Str2="7") R+(7*18^(O-I))->R If (Str2="8") R+(8*18^(O-I))->R If (Str2="9") R+(9*18^(O-I))->R If (Str2="A") R+(10*18^(O-I))->R If (Str2="B") R+(11*18^(O-I))->R If (Str2="C") R+(12*18^(O-I))->R If (Str2="D") R+(13*18^(O-I))->R If (Str2="E") R+(14*18^(O-I))->R If (Str2="F") R+(15*18^(O-I))->R If (Str2="G") R+(16*18^(O-I))->R If (Str2="H") R+(17*18^(O-I))->R End
293
« on: June 30, 2011, 12:14:09 am »
Thank you SOOO much Runer112. That Helped sooooo sooo much! About my other question? Look either a couple posts up or the edit on the first post please.
edit:
.ROTT GetCalc("appvROTTDATA")->A ClrDraw Pt-On(8,8,A) DispGraph Repeat getKey(15) End
294
« on: June 29, 2011, 11:42:17 pm »
I have tried methods, I can store the contents of an appv to like {A} as described in FinaleTI's tutorial and used his method, but I get two little dots.
295
« on: June 29, 2011, 11:19:04 pm »
Well I'm planning on supporting only three chapters, and maybe after I finish the game add support for more, but that really isn't an issue right now. I could write a loop for any amount of chapters I wanted. The issues that really need to be addressed right here though is the crashing is the biggest issue, and then after that the overlapping of menu items.
edit: in the case people didn't see I edited the first post. 3) How do I get my Pic out of the appv and store it to Pic1? I have tried a variety of methods but none seem to work.
296
« on: June 29, 2011, 11:11:41 pm »
I'm trying to display each chapter (appv) that exists on the calculator. appvBLUTCH1, etc. If it exists, draw a menu item for it. My problems are: the code just crashes, the menu items are drawn near the top of the screen, chapters that do exist are drawn on top of one another.
297
« on: June 29, 2011, 11:03:16 pm »
If you look up, the code I am using (and I think you are referring to) is the code Quigibo gave me. And "appvBLUTCH1" is an appv, which copy uses I believe.
298
« on: June 29, 2011, 10:50:54 pm »
Yeah. I'm having trouble figuring out why my calculator crashes from this code... The menu isn't too important as of now, but it will have to be soon.
299
« on: June 29, 2011, 10:48:02 pm »
EDIT3: it's not in there unless r1=0. you might want to put it in there after that Wink what do you mean by this exactly?
300
« on: June 29, 2011, 07:20:35 pm »
Okay, so then I'd check for drawing almost the same way correct? Or just using that instead?
like
If sub(GET,1) .draw this option end if sub(GET,2) .draw this option end .etc
correct?
or for a more complete version:
..MENU
2→C
If sub(GET,1) C+1→C End If sub(GET,2) C+1→C End If sub(GET,3) C+1→C End
C→[theta]
Repeat getKey(15) ClrDraw Fix 1:Fix 5 Text(1,,"blut") Text(8,C*10,"Quit") Text(8,(C-1)*10,"Help") C-1→C If sub(GET,3) Text(8,(C-1)*10,"Chap 3") C-1→C End If sub(GET,2) Text(8,(C-1)*10,"Chap 2") C-1→C End If sub(GET,1) Text(8,(C-1)*10,"Chap 1") C-1→C End DispGraph End .Input: Arg1 = File number to look up Lbl GET Copy("appvBLUTCH1",L1,9) .Copy the name to L1 r1+'0'->{L1+7} .Overwrite the last character Return GetCalc(L1) .Find the appvar .FULL MENU, STILL NEED KEYPRESSES ETC LOL
And I'm not sure if its my calc or not, this ram clears the thing.
Pages: 1 ... 18 19 [20] 21 22 ... 33
|