[XP] Blizz-ABS

Started by Blizzard, January 09, 2008, 08:21:56 am

Previous topic - Next topic

RoseSkye

Quote from: Blizzard on August 16, 2009, 01:15:38 pm
This doesn't seem to be happening because of your event or else the error message would be different. :/


HA! I found out what was wrong.. and it was so easy that I face palmed.

I checked the hp BEFORE I dealt the damage. Meaning that it would hit the enemy after it checked the hp. When I switched the hp check I didn't error out anymore :D

Blizzard

August 19, 2009, 03:42:00 am #2381 Last Edit: August 19, 2009, 03:49:44 am by Blizzard
v2.57 is up.

@winkio: I checked the charging sprites and they work as intended. When you move, the normal moving animation is displayed. If you sneak or run, the normal animation is displayed. Only when you stand still, the charging animation is displayed.
IDK what cause the moment of lag.

@Rose:

Quote from: RoseSkye on August 05, 2009, 08:26:38 am
http://www.mediafire.com/file/dogmzgjzga0/Test.rar


It's telling me that the download is private and can only be accessed by the owner. -_-
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

winkio

Then it probably has to do with my script that animated the defense sprites.  Because when you normally move, it doesn't change from charging to walking.  Thanks for checking :)

Blizzard

Took me a while to finally find some time to check on it since you posted the problem. xD
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

RoseSkye


Blizzard

Downloaded. I'll check it out ASAP.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

stripe103

I have downloaded Berans Piano Script. To use it you need Tons of Addons.
If I have the Blizz-ABS script in the game too there comes up an error dialog(below)



I have checked inside Tons of Addons and it sais that it is compatible with Blizzabs.

Here is my complete list of Script I use.

Script List: ShowHide
Skip Title Script
Runes CMS #5
Ccoa Weather
Sephi LightCones
DTS Timewindow
JT's DTS Setup 5.1
Slipknot Message System 3.0
Blizz-ABS 2.56
Exp in HUD for Blizz-ABS Plug-in
Blizz-ABS Kill Counter
Save file System 1.12b by Shdwlink1993
Key Simulator 0.1 by Fantasist
Leons'Shopping System 1.0
Berans "Interactive Piano" script v1.12
Tons of Add-ons 6.56b by Blizzard



I believe that was all
Please take a look at it because there is no text anywhere that thay aren't compatible with eachother.

Ryex

Bizz gets tired of asking thing so I'll do it for him.

did you use the Proper script order?
I no longer keep up with posts in the forum very well. If you have a question or comment, about my work, or in general I welcome PM's. if you make a post in one of my threads and I don't reply with in a day or two feel free to PM me and point it out to me.<br /><br />DropBox, the best free file syncing service there is.<br />

G_G

Quote from: Ryexander on August 21, 2009, 10:52:17 am
Bizz gets tired of asking thing so I'll do it for him.

did you use the Proper script order?


Dont you mean answering? LOL!!

Be sure you're using the latest version of Tons of Add Ons and Blizz ABS. Also Tons of Add ons custom controls cant be used with blizz abs. So turn off custom controls. You can still however use Berans Piano Script because Blizz ABS uses the same custom controls.

stripe103

Quote from: Ryexander on August 21, 2009, 10:52:17 am
Bizz gets tired of asking thing so I'll do it for him.

did you use the Proper script order?


The exact placement of my script is in the spoiler in my last post

Colinoliver

Unfortunatly with using Equap Skills from Tons of Add-ons v7.32 and using Blizz ABS v2.57
I get this error message:

Here is that portion of the script
Spoiler: ShowHide


I'm positive that Equap skills is configured correctly. Any help on fixing this?
Thanks  :)

shdwlink1993

Not your fault. Blizz just added that support in this version, and it's not quite right yet. You'll need to replace this:
        ap += BlizzCFG.gainap(enemy.id)

With this:
        aps += BlizzCFG.gainap(enemy.id)
Stuff I've made:




"Never think you're perfect or else you'll stop improving yourself."

"Some people say the glass is half full... some half empty... I just wanna know who's been drinking my beer."

Colinoliver

Boo! I get the exact same error message even with changing that line.
:(

shdwlink1993

Oops. I need to make sure I know what I'm talking about first. :^_^': Try this instead:

      # if Tons of Add-ons there and EQUAP active
      if $tons_version != nil && $tons_version >= 7.32 &&
          TONS_OF_ADDONS::EQUAP_SKILLS
        # get AP result
        ap = 0
        ap += BlizzCFG.gainap(enemy.id)
        # add AP to each actor who can gain them
        $BlizzABS.battlers.each {|battler|
            battler.battler.add_ap(ap) if !battler.battler.dead? || GAIN_DEAD}
      end
    end


There. That should fix it.
Stuff I've made:




"Never think you're perfect or else you'll stop improving yourself."

"Some people say the glass is half full... some half empty... I just wanna know who's been drinking my beer."

Blizzard

Sorry about that. I accidently put += instead of = there. I uploaded a fixed version. It's pretty much the same thing that shdw posted so you don't have to redownload it again, just fix it in the script.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

G_G

Quote from: stripe103 on August 22, 2009, 05:34:03 am
Quote from: Ryexander on August 21, 2009, 10:52:17 am
Bizz gets tired of asking thing so I'll do it for him.

did you use the Proper script order?


The exact placement of my script is in the spoiler in my last post


Umm hello none of the scripts are in the order, why do you tihnk he linked you there? =

Colinoliver

Oh no! Now I get this message  :^_^':

G_G

Quote from: shdwlink1993 on August 22, 2009, 08:39:42 am
Oops. I need to make sure I know what I'm talking about first. :^_^': Try this instead:

      # if Tons of Add-ons there and EQUAP active
     if $tons_version != nil && $tons_version >= 7.32 &&
         TONS_OF_ADDONS::EQUAP_SKILLS
       # get AP result
       ap = 0
       ap += BlizzCFG.gainap(enemy.id)
       # add AP to each actor who can gain them
       $BlizzABS.battlers.each {|battler|
           battler.battler.add_ap(ap) if !$BlizzABS.battler.dead? || GAIN_DEAD}
     end
   end


There. That should fix it.


I think I fixed it.

Blizzard

August 23, 2009, 04:33:11 am #2398 Last Edit: August 23, 2009, 04:37:06 am by Blizzard
      # if Tons of Add-ons there and EQUAP active
     if $tons_version != nil && $tons_version >= 7.32 &&
         TONS_OF_ADDONS::EQUAP_SKILLS
       # get AP result
       ap = BlizzCFG.gainap(enemy.id)
       # add AP to each actor who can gain them
       $BlizzABS.battlers.each {|battler|
           if battler.valid? && (!battler.battler.dead? || GAIN_DEAD)
             battler.battler.add_ap(ap)
           end}
     end
   end


And I put up a version with this fix.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

Colinoliver

That done it! Equap skills/Blizz ABS is working perfecly now.
Thanks again!