Search results

  1. MysticalMist

    Helluva Brawl - NEW MAJOR UPDATE/REVAMP OF HELLUVA BRAWL!!

    Finally, after so long, I can finally redeliver Helluva Brawl in a drastically improved manner that I hope everyone can enjoy! Please be sure to check the Readme. Thank you all so so much, especially those here who helped me with my millions of obnoxious coding struggles lol.
  2. MysticalMist

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

    MysticalMist updated Helluva Brawl with a new update entry: NEW MAJOR UPDATE/REVAMP OF HELLUVA BRAWL!! Read the rest of this update entry...
  3. MysticalMist

    Enemy still grabbable after being knocked down??

    SOLUTION (Thanks to @Kratus for his time and help): It turns out that one of the scripts in the entity header had nograb set to 0, instead of NULL() whenever they enter a specific animation as shown on the screenshot below.
  4. MysticalMist

    Enemy still grabbable after being knocked down??

    delay 4 landframe 7 @script if(frame==0){ void vSelf = getlocalvar("self"); int Flee = getglobalvar("L0"); int MHealth = getentityproperty(vSelf,"maxhealth"); int Health = getentityproperty(vSelf,"health"); if(Health <= MHealth/4 && Flee != "X"){...
  5. MysticalMist

    Enemy still grabbable after being knocked down??

    I can send you the enemy's txt file or their folder if you'd like, probably.
  6. MysticalMist

    Enemy still grabbable after being knocked down??

    Not really. In the RISE animation, there's a check for if the health's a certain amount to go into a desperation move, but there's not even a bbox in that animation either, I think.
  7. MysticalMist

    Enemy still grabbable after being knocked down??

    void throw(int damage, int type, int Vx, int Vy, int Vz, int face) {//Damage as throw finisher void self = getlocalvar("self"); void target = getentityvar(self,"grabbed"); int z = getentityproperty(self,"z"); int tDir = getentityproperty(target,"direction")...
  8. MysticalMist

    Enemy still grabbable after being knocked down??

    The player uses grabbackward/grabforward for a scripted throw. @cmd grabStart @cmd slamstart 9999 @cmd position 1 20 12 1 0 delay 12 offset 59 123 sound data/sounds/Millie1.wav frame data/chars/Millie/grab/3.png delay 7 offset 59 123 @cmd...
  9. MysticalMist

    Enemy still grabbable after being knocked down??

    Here's a quick unlisted clip showing the glitch.
  10. MysticalMist

    Enemy still grabbable after being knocked down??

    When the enemy is on the ground, it is able to be normally grabbed. The fall animation is the standard one. The second frame is when they bounce to the ground, without a bbox.
  11. MysticalMist

    Enemy still grabbable after being knocked down??

    I have one particular enemy where whenever they're knocked down, the player is still able to grab them? It makes for an easily exploitable loop where the player can just endlessly throw them and for some reason, it only seems to happen with that particular npc. Here is their stats and the fall...
  12. MysticalMist

    Animated screens - the easy way.

    I came across a new, particularly odd issue. Whenever I return the main menu and after the hall of fame screen, there's an odd chance of the menu BG animation flickering out and the title one completely taking over. Here's what I have thus far: void main() {...
  13. MysticalMist

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

    HELLO EVERYONE!! Wow, I finally post on here again. But I do have some great news for those interested! I have finally entered the playtesting phase of the latest Helluva Brawl update in the works and just making sure everything is ok before I drop a public release. If interested, would...
  14. MysticalMist

    Solved "Not Responding"/Freezing during level transitions

    I am in sheer disbelief, I probably spent 10 minutes straight repeating the fade and couldn't believe it was literally just that. Thank you SO much for your help in patience. I just hope in a cruel twist of irony that I come back to this thread again 😵‍💫
  15. MysticalMist

    Solved "Not Responding"/Freezing during level transitions

    I have just looked back at my endlevel.c file and all I have is this: void main() { changeopenborvariant("slowmotion", 0); setglobalvar("L0", NULL()); setglobalvar("V0", NULL()); } That being said though, I do have a VERY busy update.c and updated.c file. Should I share them both here?
  16. MysticalMist

    Solved "Not Responding"/Freezing during level transitions

    Thanks for the suggestion. I downloaded your latest version. Though unfortunately, the issue still persists.
  17. MysticalMist

    ChronoCrash Modders Tools

    I know I've posted about this before but I figured it was fair to also share it here. Something odd tends to happen as I progress through my current project when using CMT. When I finish or exit a level, or anything that essentially warrants "fade-out" transition, it freezes very briefly with...
  18. MysticalMist

    Solved "Not Responding"/Freezing during level transitions

    I'm actually to have to come back here, I somehow came across this issue again, BUT there's no CMT settings inside the data folder. I have also cleaned up any back-up files and tried to purging the old save files. I feel like something is cluttering up the data that makes the fade freeze up just...
  19. MysticalMist

    Character-specific Endings??

    Seemed to do the trick! Thank you!! (DISREGARD THE INITIAL REPLY, TURNS OUT THAT CMT (or myself unwittingly) DID SOMETHING REALLY WEIRD TO ONE OF THE PLAYER FILES SOMEHOW BUT I FIXED IT!! Sorry about that.)
Back
Top Bottom