Recent content by Kratus

  1. Kratus

    Help with openborvariants

    For the main menu, you need the openborconstant("IN_SCREEN_MENU") The openborconstant("IN_SCREEN_TITLE") is for the title screen.
  2. Kratus

    Audio and WEBM issue

    I suggest erasing or renaming the saves folder as a test. I don't know what engine version you are using, but try changing it to see if the issue persists.
  3. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Just a small change in the "classic resolution" version related to the logos, since webm videos do not run well in low hardware devices like raspberry pi. I replaced them with a gif version. The only webm remaining is the "press start" screen, but due to it playing only two frames, it runs well...
  4. Kratus

    Music What music are you listening to?

    I have the same feeling but with Beethoven's "Moonlight Sonata", the Adagio sostenuto movement. In second place comes Ennio Morricone's "Once Upon a Time in the West".
  5. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Testing ARM build on a Raspberry pi 3 with a 32 bit O.S., the progress is going well so far. There's some performance issues, like fps drop, but it's related to a lot of game scripts running in a low hardware device. At least the engine is working well with no crashes.
  6. Kratus

    How to edit streets of rage x, data folder the game does not start

    Yes, beta 35 is the latest version. The game has some locks exactly to avoid this kind of behaviour, bizarre changes that will confuse people about the development.
  7. Kratus

    In Progress Streets of Rage X (Windows / Android)

    I can test it, thanks for the suggestion :) Currently the key info corresponds to the action in-game, not a button exactly. In this example, "J" is jump as well as "S" is special and "A" is attack. I applied this logic to keep the same pattern of the Android touch buttons. In addition, it may...
  8. Kratus

    Tintcolor when jugglepoints reaches 0

    This is strange, you can't have the same result with a different script. At least in the SORX it worked fine. Maybe you have other drawmethod scripts conflicting, or something clearing variables in another place. No, it's only necessary for players.
  9. Kratus

    Tintcolor when jugglepoints reaches 0

    Is it something like this? If yes, here's the new code. takedamage file void setJuggle() { void self = getlocalvar("self"); int damage = getlocalvar("damage"); int jugglepoints = getentityproperty(self,"jugglepoints"); int duration = 100; // PUT HOW LONG THE TINT LASTS...
  10. Kratus

    Just here to vent my frustration

    +1, game development is literally one of my jobs.
  11. Kratus

    How to edit streets of rage x, data folder the game does not start

    @Sumegao Hi friend. Here's the instructions to add custom music tracks. PS: It will only work in the VBOX game file. ########## External Musics Instructions ########## - Every music track must be in .ogg vorbis format - Every music track must follow the same file name in the playlist.txt file...
  12. Kratus

    Tintcolor when jugglepoints reaches 0

    @16-bit Fighter I suggest using a combination of takedamage + updatescript in the entity who is taking the damage instead of the didhit event. This is because it's better for each entity to manage himself instead of one attacker managing everyone. It may fail depending on the enemy amount. To...
  13. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Thanks buddy :) Fixed! Thanks for the report.
  14. Kratus

    In Progress Streets of Rage X (Windows / Android)

    @Shiva55 Thank you very much, my friend :) @ty1989 Hmm now I understand, indeed it's an issue that must be fixed. The forward special should be allowed only on the ground. Thanks for the report.
  15. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Hmm I didn't understand the question. I would like to see a visual example. Currently she has the same aerial special as the other Blazes. And the combo ender allows the aerial special only while in the air. At the first/last frames when on the ground, she will be able to perform the forward...
Back
Top Bottom