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

Pages: 1 ... 15 16 [17] 18 19 20
241
TI Z80 / Re: [Project] Sniper 101.
« on: October 22, 2010, 05:09:35 pm »
I changed the ammo/time displaying. What do you think about it?

242
TI Z80 / Re: [Project] Sniper 101.
« on: October 22, 2010, 04:35:23 pm »
so are you going to be a co-programmer?  because you should have the newest version of the program to get all the optimisations in and everything.
Ok, I downloaded AXSNIPE3 and Ill post some suggestions here soon.

243
TI Z80 / Re: [Project] Sniper 101.
« on: October 22, 2010, 04:20:49 pm »
Did you ever hit the guy in that GIF?
I had to let him live to show what happens if he reaches the right screen bound.

Aichi,  You are not using the current version of sniper 101
I added the story system into AXSNIP2A.

Edit: Looks like there are already stories in the new version.

244
TI Z80 / Re: [Project] Sniper 101.
« on: October 22, 2010, 04:08:27 pm »
As I said erlier, it would be nice if you make use of the full screen height.
If there is just one story, youre able to wait until the guy comes again as you can see in the
screenshot in the first post of this topic.
When the guy starts again left, he must be going to be moved on a random story.

245
TI Z80 / Re: [Project] Sniper 101.
« on: October 22, 2010, 02:59:01 pm »
This game is really fun.  ;D
Are you going to let the guys just walk on the ground?
What about guys with parachutes or some different stories?

246
Axe / Re: Lock programs with Axe?
« on: October 22, 2010, 12:31:37 am »
@ Quigibo
Ah, thanks. Using Free Ram works.

247
Axe / Re: Lock programs with Axe?
« on: October 21, 2010, 11:36:46 pm »
Wait, why are you going back to using programs? This isn't a problem inherent in the fact that level data is stored in appvars, it's a problem inherent in the fact that your main program is compiled as an application.
I wanted to output the entry name as a string to dont get pen moving problems like in the screenshot.
Program names are just Uppercase, so all font sprites would be have a defined width of 4pxl, so I could
output program names char by char without having to use strings. I think everything else would be not as efficient as this way, especially because I have to take a look on my remaining memory size.

248
Axe / Re: Lock programs with Axe?
« on: October 21, 2010, 11:17:24 pm »
Oh, I see. I will probably go back to use programs for storing level data like I did at the start of this topic.
Thank you, Runer.

249
Axe / Re: Lock programs with Axe?
« on: October 21, 2010, 10:10:08 pm »
@ Runer
Yes, thats what Im trying to do, but currently Im having trouble by copying the entry name into a string.

Code: [Select]
For(X,0,{P-6}-1)
{P-7-X}->{Str9+X} . This doesnt work. :/ It should copy the entry name into Str9
End

Seems like this code does nothing.

250
Axe / Re: Lock programs with Axe?
« on: October 21, 2010, 09:53:27 pm »
first, I notice "{P-7-X+1}->{Str9+X}" should be "{P-7-X}->{Str9+X}" since P-7 is the first entry, not P-6, which is what yyou got by adding 1 back at the end...
Youre right. I removed the mistakes from the code in the last post.
Here is a screenshot showing what happens if I output appvar names character by character with 4 pxl gaps.

251
Axe / Re: Lock programs with Axe?
« on: October 21, 2010, 05:29:28 pm »
Ok, Ill use the VAT data pointer instead of Getcalc( .
I am having still trouble by outputting an Appvar Entry with the small font.
I thought this is possible:
Code: [Select]
.VAT2STR

{e9830}r -> P . VAT start Pointer

Repeat getkey(15)

ClrDraw
""[CE]"       "->Str9 . [CE] is the "..." Character for representing loading, then Space character by seven times

If {P}=21 . If current entry has type 'appvar'

For(X,0,{P-6}-1)
{P-7-X}->{Str9+X} . This doesnt work. :/ It should copy the entry name into Str9
End

Else . If the type isnt 'appvar' then Str9 is still "..."

P-{P-6}-7-> P . Go to the next entry

End

If getkey(3) and (P>=VAT end
P-{P-6}-7-> P
End

Fix 5
Text(1,1,Str9) . Str9 is always "..."

Dispgraph

End . Loop End

Fix 4
Return

252
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: October 21, 2010, 01:32:24 pm »
no, I meant "p", on my browser, "p" auto completes to omnimaga.org.  :P
With me too. Firefox is looking for "P"s in the Url and in the page title.

253
OmnomIRC Development / Re: Omnomnom.tk, nommm.tk, or other?
« on: October 20, 2010, 10:19:44 pm »
What about omniurl.tk? :)

254
TI Z80 / Re: Pugluna v0.4 Beta
« on: October 20, 2010, 05:20:57 pm »
@ All
What are you thinking about the difficultly? Was you someday able to defeat the boss? If yes, let me know you highscore please. If no, I have to make it easier before I release 1.0 on Ticalc.

@ztrumpet

The storage of the highscores and increase of the heart bonus (+6 HP instead of 5. :P) are the most important changes in 0.4b.

My highscore system is designed for calculate a score after beating the boss.
The played frames and the remaining HP are important for it.

If I increase the score through 100 points by defeating an enemy,
the score at the end would be the same, just added 100*all enemies.

255
Axe / Re: Lock programs with Axe?
« on: October 20, 2010, 04:02:07 pm »
I use just Str9. The name I need to store into Str9 is [Pointer - 7] until [Pointer - 6 - Name lenght] .
But I think I found a solution already. Thanks anyway. :)

Pages: 1 ... 15 16 [17] 18 19 20