Search results

  1. S

    Space Dodger

    Well, the main problem would be resizing all the graphics (as Quiest suggests) and making them be 8bit. It could get really annoying to make all that work lol And I don't think it can run at constant 40fps on the gp32... :(
  2. S

    Code Structure

    program car; global gfx; rot=1; begin set_mode(640,480,8); gfx=LOAD_FPG("C:/dev/fenix/bkg.fpg"); put_screen(gfx,1); car(); cloud1(); end process car(); begin X=90; Y=40; loop; If(key(_left)); rot +=1; End If(key(_right)); rot...
  3. S

    Code Structure

    Well you have some serious problems yeah lol Let me re-arrange the structure, I'll post it here.
  4. S

    Good News About Pituka: Already Chatboard Support!

    Yup, its true. This is not a good day to release anything anyway lol
  5. S

    How Usefull Is Undocumented Sourcecode?

    It seems Mr. Belmont, aka God for his friends and family (and specially himself), isn't too happy with the idea that Franxis ported MAME to the GP32, as he even said it was a "rather lame university project"... Maybe he could be annoyed that he didn't release the code, thus breaking the rules of...
  6. S

    Fenix Tutorial, Chapter 2

    Yup, you can get it here http://www.gp32x.de/board/index.php?showtopic=16909&st=0
  7. S

    Question Regarding 'cyclone Bugs'

    Hm sounds strange, I dont think you can get transparency problems in the Megadrive (if you mean translucency instead of non-drawn sprites). Sounds pretty much like, for example, the drawing priority errors you get in Story of Thor. If I understood Squidge's post right (in the other thread, and...
  8. S

    Shots And Text Help

    Let's see... The shot is called from the ship, so the ship is shot's father ^_^; When you call a process like this: idprocess=myprocess(); you're actually storing that process' unique id number in the variable idprocess. Now you can access it's parametres likes this: idprocess.x...
  9. S

    Shots And Text Help

    Ah I forgot. It sounds easy, but it might not work too well... Just put this inside the shot's main loop: x=father.x; //Only works if the shot process is called from the ship code Or you can make the ship's x coord. global: shipx=x; //Inside the ship's main loop ... x=shipx; //Inside the...
  10. S

    Shots And Text Help

    It's as easy as using this function :D SET_TEXT_COLOR ( INT color ); Hope it works fine
  11. S

    Using The Write Command

    You can get the id number of the text this way: textid=write(...); and then get rid of it using this: delete_text(textid); It's that easy! :D (If I understood you right) PD: and the let_me_alone()-style command for texts is just delete_text(all_text);
  12. S

    Best Raceing Game On The Gp32

    PowerDrive for the MD is a pretty cool racing game but I haven't tried it yet on any emulator.
  13. S

    Where Do You Live?

    Centre of Madrid, Spain, EUROPE. (No, not Mexico)
  14. S

    16 Bit Fpg -> 8 Bit Fpg

    I guess that's the only problem, it doesn't change. I don't really think you'll have to make all those changes. If I got what you meant right, you have two fpg's with two different palettes. Have you tried loading the new palette after the second fpg (the in-game one) is loaded? I mean...
  15. S

    Palette Troubles

    Palettes FPG Edit can handle, and that becomes really useful.
  16. S

    Colour Transparency

    That's true, as long as you're on 16 bit mode. A lot of people have experienced problems with that and it can get really annoying. I highly recommend that you start using 8 bit modes as soon as you get enough experience. You will be able to change the transparency color, and do some nice...
  17. S

    Drmd Version 2.0

    And you just stole the words from my mouth! I saw the news in gp32spain and I sweared so much from the happiness half of what I posted was censored! ^^; Amazing speed and ass-kicking sound! You deserve having a monument or something lol. Really, you and other programmers are giving us so many...
  18. S

    Code To Restart Fenix?

    Unfortunately (or luckily, who knows) there's no "goto" instruction in Fenix, so try to keep the program well structured and do as Moogle suggests, cause there's no other way.
  19. S

    Question About Flamebird

    The same happens to me... Maybe it won't work under W98?
  20. S

    Any Point In Making More Tutorials?

    OMG lol really sorry, I didn't want to ignore anyone... Well what you've written seems pretty useful. Any suggestions about what you'd like to see are welcome then.
Back
Top