Search results

  1. A

    Scripted healing

    I dont know. I only know, no other way I have tried actually works. everything else either crashes the game or does nothing
  2. A

    Scripted healing

    This worked with without editing anything other than the character text file: @script void self = getlocalvar("self"); if(!self) return; int which = getentityproperty(self, "playerindex"); int hp = getentityproperty(self, "health"); int maxHP = getentityproperty(self...
  3. A

    Scripted healing

    I could swear Ive done this before without scripting.
  4. A

    Scripted healing

    Ok. I tested it out and it doesnt crash but it also doesnt heal from inside the characters text(Im assuming thats what 'inline' means) If by function file, you mean the files in the script folder, I can create the heal.c, like you asked and add it in the characters header but then how would I...
  5. A

    Scripted healing

    I tried again anyway and I found the crash was due to my error of putting: @script void self = getlocalvar("self"); //get the self var void health = getentityproperty(self,"health"); // get target's current hp changeentityproperty(self, "health", power+10); @end_script instead of @script...
  6. A

    Scripted healing

    I dont know how to do that. I feel like the mp works only because OpenBor has a built in way to do that. So maybe its something else I dont know how to do. Thanks any way.
  7. A

    Scripted healing

    The mp code works, when its changed to the health I just posted, it crashes.
  8. A

    Scripted healing

    anim run @script void self = getlocalvar("self"); //get the self var void health = getentityproperty(self,"health"); // get target's current hp changeentityproperty(self, "health", health+10); @end_script loop 1 delay 8 offset 80 129 bbox 60 93 20 40 frame data/chars/ken/run00.gif frame...
  9. A

    Scripted healing

    This is the error shown in the log:
  10. A

    Scripted healing

    @script void self = getlocalvar("self"); //get the self var void power = getentityproperty(self,"mp"); // get target's current mp changeentityproperty(self, "mp", power+10); @end_script @script void self = getlocalvar("self"); //get the self var void health = getentityproperty(self,"health")...
  11. A

    Scripted healing

    not to be rude here or nagging here, but I do not know how to make that work. I saved it as heal.c but the script im already using doesnt look like its using anything other than what I showed here. I dont even know how that script is working. This works: @script void self = getlocalvar("self")...
  12. A

    Scripted healing

    I have a script that restores MP: @script void self = getlocalvar("self"); //get the self var void power = getentityproperty(self,"mp"); // get target's current mp changeentityproperty(self, "mp", power+10); @end_script Is there a way I can make this script also restore HP at a slower rate? I...
  13. A

    Complete Strider X

    so the games are all gone?
  14. A

    Character Blinking

    Avengers United Battle Force. I didnt know how but I never share things I edit anyway. Unless the original creator wants something I did.
  15. A

    Character Blinking

    So it wouldnt be possible to use this for a charge animation or specific attack? Edit: I didnt see it in the character file but I looked in the stage files and found it. Thank you. I modded your game a long time ago just to add some colors. but I thought the game was cancelled.
  16. A

    Character Blinking

    Thanks for these. I'll look at them and test. Edit: I looked. all these games have it scripted in. Thanks for the help. I have very little knowledge of scripting but I will try to figure it out.
  17. A

    Character Blinking

    hmm, I dont see that in the characters text files. I wanted to see if there was an example in there already I could use as some bosses have the blinking already but not all of them. Also I was thinking of adding this as an effect of a move or some other maybe a blinking color when being in a...
  18. A

    Character Blinking

    Im editing a game someone stopped making a long time ago. Just want to make a small edit. How do make the characters blink like the classic nes bosses?
  19. A

    Help finding a game

    Does anyone have the Eternal Champions - The Thin Strings of Fate or know where I can get it. I searched and the only thing I ever find is here but the link is 13gigs because its packed with other games.
  20. A

    Complete HE-MAN

    Level with moving platforms seems bugged. Its nearly impossible to get past the hands.
Back
Top Bottom