Search results

  1. Kratus

    What game(s) are you currently playing?

    GoW Ragnarok and Days Gone. I admit that Days Gone was one of a few modern games that makes me really enjoy a playthrough to the point of starting a NG+, very underrated in my opinion. About GoW, well, a good game in general but with some boring parts and a few unbalanced battles.
  2. Kratus

    Solved Nohithead is working?

    At least in the v4, you can use the same way as I used in my video, changing the Nohithead property in each platform entity at the header. The only parameter I changed in player entities is the "height". I suppose v3 works in the same way too.
  3. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Thank you very much, friend :)
  4. Kratus

    Solved Getting "bor.hi" information?

    Yes buddy, the SOR2X have a custom hiscore script that exports scores to external files using filestreams. @Crimsondeath I suggest taking a look, some things may be useful for you.
  5. Kratus

    Solved Nohithead is working?

    I didn't test it in the v3, but at least in v4 it's working fine using this way. I also made another test changing type none to type obstacle and had the same effect. Buddy, I don't know, but at least in the manual I have it's supposed to work in the platform entity.
  6. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Thanks friend :) I will upload a test build soon, but I still need to finish some things first.
  7. Kratus

    Solved Appropriating Script for Player Index

    According to what I understood in your code, you are trying to get the index number, right? In this case you can just get the "i" number. if(i == 0) //player 1 { doSomething(); } if(i == 1) //player 2 { doSomething(); } Getting the playerproperty "entity" just returns the entity of a...
  8. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Thanks, friend :) I don't know about the cops, but for SOR1 Blaze I'm working to add the black hair as an alternative palette.
  9. Kratus

    Shutdown After Losing All Lives

    @Claudcom According to your log, looks like you have the shutdown() command somewhere in your scripts, since this seems like a normal shutdown and not a crash. This is an example of the engine closing due to an script error. This one is usually how a silent crash looks like, no friendly...
  10. Kratus

    In Progress Streets of Rage X (Windows / Android)

    By default, using the SOR1 combo type you can only change the direction in any attack before the combo ender. In this case you can flip Blaze during the second attack (kick), then perform the combo ender to the opposite side.
  11. Kratus

    Streets of Rage Custom Sprites

    Good job!
  12. Kratus

    In Progress Streets of Rage X (Windows / Android)

    I understand, I believe that this momentum happens more in the last grabbing attack than during the combo ender. For this momentum, the closest sprite the BKM has is this one. In the video we can see that she flips faster during the combo ender, unlike the last grabbing attack where she...
  13. Kratus

    In Progress Streets of Rage X (Windows / Android)

    I don't know if I understood the point, is her attack too fast or too slow? I still need to make some adjustments to match the OG game.
  14. Kratus

    Solved Appropriating Script for Player Index

    The loop is a cool idea, thanks man. I will consider changing it in the SORX in future updates. Yeah, the first versions of my systems worked with comparison of integers and then translated to text only when drawing the menu. However, for some specific things, strings ended up becoming easier...
  15. Kratus

    Solved Appropriating Script for Player Index

    I use both ways, depending on the situation. Usually for global events I prefer to code the script for a single player and declare it multiple times for all players instead of repeating every single line for each player. I try to code things in the most reusable way possible.
  16. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Hi friend. Some time ago I posted instructions about how to run SORX in Batocera system. I strongly recommend using the engine build that comes with the zip file (7612), otherwise you can have problems. Hmm I didn't know that SOR4 allow that, interesting. I will make some tests, liked the idea...
  17. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Yeah, thanks friend :) Currently her moveset still has all the SOR1 Onihime moves, but I'm testing some different ones to not look exactly the same character. As soon as I finish the color separation and some sprite fixes, I will have a more clear idea about how to develop the special moves...
  18. Kratus

    In Progress Streets of Rage X (Windows / Android)

    To be honest I didn't consider it, I checked the OG SOR1 and the black hair is present only in the portrait. Maybe you are remembering from SORR, which in fact have the black hair. However, I can check the possibility of adding it in the color separation, according to my tests I just need to...
  19. Kratus

    In Progress Streets of Rage X (Windows / Android)

    I know I haven't been posting much news but it's due to the amount of work in progress for the next update. About the SOR1 Blaze, I'm reworking the whole sprite sheet. The base is from BKM, but I'm making color separation to allow both original SOR1/BKM palettes. In addition, I'm changing some...
  20. Kratus

    In Progress Streets of Rage X (Windows / Android)

    Friend, I understand your point. But in this case I'm just following a classic mechanic present in the original SOR1 game, like @O Ilusionista mentioned.
Back
Top Bottom