Search results

  1. Bloodbane

    Group enemies for 3 and 4 players

    I think I've shared this trick for this question before. The trick is to set big group for 4 players and spawn fake enemies to reduce the group size. These fake enemies will remove themselves based on number active players. Of course, they'll remove themselves when a wait is over (all enemies...
  2. Bloodbane

    Trajectory Bounce against Walls and Z limits (Along with Ground Off Limits Too)

    Have you declared wall on level's edges? Fallen entities lose velocity after landing. You might need to store starting x velocity then reapply it after landing to make the bomb continue moving.
  3. Bloodbane

    Canceled Angel 0

    It's nice to see some progress though it has changed from beatmup to vs game.
  4. Bloodbane

    Solved endlevel item

    If you want to end level by touching end of screen or level, I suggest using something like this: name Exit type none antigravity 100 offscreenkill 4000 anim idle # left/right exit @script void self = getlocalvar("self"); void P1 = getplayerproperty(0...
  5. Bloodbane

    Advanced How to Play Screen

    Technically, the old howto.gif is animated gif which has several graphic files or single gifs compiled into animated gif. It is possible to use multiple animated gifs for how to play screen. Anyways, if you want how to play screen like a book in which player could choose which page to read by...
  6. Bloodbane

    script help

    Do you want to have entities to remove themselves on their own? or do you want to remove certain entities at certain time?
  7. Bloodbane

    Future projects

    Off topic: Shadow Force despite looks like beatm up and has other similarities, technically the gameplay is totally different than regular beatm up. It's more like vs game in beatm up world with more enemies. IOW it won't be easy to replicate that game.
  8. Bloodbane

    Enemy still grabbable after being knocked down??

    What about RISEATTACK? does she has that animation? and if she does, does the animation has bbox?
  9. Bloodbane

    What causes the stage not to end after the certain boss is defeated?

    Does Satano_B spawn anything before it dies?
  10. Bloodbane

    CHANGING SPRITE COLORS

    What is actually are you working on?
  11. Bloodbane

    Projectile not playing all animation

    Try using different OpenBoR build and see if problem is solved or not.
  12. Bloodbane

    Hp Damage

    Hmmm... do you have all required sprites for the HP damage?
  13. Bloodbane

    Complete Helluva Brawl - A Hellaverse Fangame (Ver. 1.0)

    I'm interested in testing this game :D
  14. Bloodbane

    Trajectory Bounce against Walls and Z limits (Along with Ground Off Limits Too)

    Can I see randVel function? I think it would be better to let the grenade to explode when its timer is up, regardless of its position.
  15. Bloodbane

    Projectile not playing all animation

    Hmmm... this is strange. Try setting loop 1 in efireballredex and see what happens.
  16. Bloodbane

    Trajectory Bounce against Walls and Z limits (Along with Ground Off Limits Too)

    Good news, I've expanded the bounce script to work with walls on z axis and zmin + zmax also. Here's the script: anim idle @script void self = getlocalvar("self"); float Vx = getentityproperty(self,"xdir"); float Vz = getentityproperty(self,"zdir"); int x =...
  17. Bloodbane

    scenes question

    First you need to convert each png into a gif. Then animate them by merging into one animated gif. The first step could be done with Photoshop. But for the latter, I use old gif animator but there should be other tools which can do it too.
  18. Bloodbane

    scenes question

    You should declare animated gifs instead of pngs.
  19. Bloodbane

    How long a beat 'em up should be?

    For me, good beat'm up should last for an hour at most. That's for beat'm ups without save feature. With save feature, the length will depend on content. If the content is deep, couple extra hours should be fine. But if it were shallow, another hour might be too much.
Back
Top Bottom