2221
Humour and Jokes / Re: Our Dear Friend...gone evil? :O
« on: June 06, 2010, 10:05:15 am »
He could just always post in randomness... but yeah, it's too late
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. 2221
Humour and Jokes / Re: Our Dear Friend...gone evil? :O« on: June 06, 2010, 10:05:15 am »
He could just always post in randomness... but yeah, it's too late
2222
The Axe Parser Project / Re: On Calc Documentation« on: June 05, 2010, 08:52:42 pm »
well, we could just create our own app, the only problem being that the catalog hooks are not well-documented.
2223
Axe / Re: How do you read and possibly write to an external program?« on: June 05, 2010, 08:37:35 pm »
No, they'd end up as 48, 49, and so on (the hex, $30, $31, and so on looks much nicer, but anyway), because you're reading characters, not what they represent. Basically, what you see in the BASIC program editor is completely different than what the bytes are. (If you want to know the correspondences, here are token tables) Basically, if you want to use the BASIC editor as an editor, you'll have to implement a mini-parser, otherwise just ignore it.
2224
News / Re: Omnimaga holds Axe Parser Programming Contest (RULES UPDATED ON JUNE 5TH)« on: June 05, 2010, 08:22:05 pm »
I understand the need to specify this, but do you really think people will actually try to do that stuff? Gee, the internet is a funny place... I thought we were better than that.
Have fun fixing the loopholes, DJ. 2225
Humour and Jokes / Re: Our Dear Friend...gone evil? :O« on: June 05, 2010, 08:19:48 pm »
oh noes! well, i only have 175 posts for now, so i'm not evil. (yet )
* calcdude needs a topic so that it can become evil!!111!!11!ONE! j/k 2226
News / Re: Notice about OmnomIRC« on: June 05, 2010, 09:31:21 am »
I typically only browse with one tab unless I'm replying and need to look up other information. So I'm not a big problem, but I like the idea of a button to enable/disable OmnomIRC, with it disabled by default.
2227
Art / Re: Suite Sprites« on: June 05, 2010, 09:27:12 am »
These are mine. Notice they're 7*7 if you ignore the extra white row and column. I'm afraid clubs is not as good as I would like, but, anyway, here you go.
2228
Other Calculators / Re: A calculator game in GOOGLE ADS :O« on: June 05, 2010, 09:06:04 am »
Wow. How dead is CalcG.org, anyway? I haven't noticed any updates in a while and the recent files list is completely empty.
2229
Axe / Re: How do you read and possibly write to an external program?« on: June 04, 2010, 07:49:54 pm »
It does, though that should be "prgm", not "v", since "v" returns appvars in preference to programs, while "prgm" does the opposite. Let me correct that typo...
2230
The Axe Parser Project / Re: On Calc Documentation« on: June 04, 2010, 07:47:52 pm »
yeah, just search for flashbook. The SF link is more useful if you ask me, though.
2231
Introduce Yourself! / Re: 42« on: June 04, 2010, 07:44:27 pm »
Tell us, what is the Ultimate Question? Has the earth given its answer, or will the Vogons destroy us first?
Welcome to omnimaga, btw. Lots of peanuts below. (just a warning) Normal peanuts Rickroll peanuts And the newest addition to the collection, The Game peanuts! * calcdude lost the game. again. 2232
Introduce Yourself! / Re: Hello!« on: June 04, 2010, 07:38:15 pm »
Oh look, new image to annoy people with!
also, welcome to omnimaga, ingalls. (probably should have said that first, but oh well) * calcdude lost the game 2233
The Axe Parser Project / Re: Bug Reports« on: June 04, 2010, 07:35:12 pm »
That's not a lot... Could it be the sort routine's fault? (I'm assuming there's a sort routine)
2234
The Axe Parser Project / Re: On Calc Documentation« on: June 04, 2010, 07:33:55 pm »
I take it you're talking about Flashbook 1.0 beta 4?
I've use it a few times myself. 2235
Axe / Re: How do you read and possibly write to an external program?« on: June 04, 2010, 07:30:52 pm »
as of now, you can only read programs, not create them. (Okay, not completely true, but the exception is you can overwrite an existing program with another one of the same name)
And for detection of levels, there is no nice way to scan the VAT yet, so you'll have to use GetCalc for each level name to see if it exists. (For this, you can just change the last letter of the name string, so you don't need lots of strings. Code below) Code: [Select] .Check for level, with X containing the final character, as stored by 'L'->X Something like this would probably be placed in a loop, with X being what is looped, and possibly with the X->{Str1+8 becoming {Str0+X}->{Str1+8 if X is an index to the list of searched characters.Edit: replaced incorrect "v" with correct "prgm" |
|