[XP] Blizz-ABS

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

Previous topic - Next topic

Murr

You have to copy the text over from the config program to the script in RPGMVX.

winkio

under Module Skills in BlizzABS part 1, first, under def self.Type(id), make it look like this:

    def self.type(id)
      case id
      when 109 then return [SUMMON, 0.0]
      end
      return [DIRECT, 0.0]
    end


where 109 is the ID of your skill.  you can have other when lines in there, but I'm just showing the particular one for a summon skill.

then, def self.summon(id) should look something like this:
    def self.summon(id)
      case id
      when 109 then return [SUMMONPet, 6, 30]
      end
      return [SUMMONNone, 0, 0]
    end


where 109 is the ID of your skill, 6 is the id of the actor to summon, and 30 is how long (in seconds) the summon lasts.  same deal

Murr

Anyone know how to fix this problem?
I've redownloaded the blizzabs 2 times and copied the script back into RPGXP and it still isnt working.


winkio

yeah, it's a typo, in the code that you copy back (Part 1), near the top (around line 100) it will say INTELLIGENT_PASSABILTY = true/false.

change INTELLIGENT_PASSABILTY to INTELLIGENT_PASSABILITY

Murr

Aha big thanks =) Its been bugging me a long while.

elmangakac

Quote from: Arceus on March 02, 2010, 12:41:31 pm
under Module Skills in BlizzABS part 1, first, under def self.Type(id), make it look like this:

    def self.type(id)
      case id
      when 109 then return [SUMMON, 0.0]
      end
      return [DIRECT, 0.0]
    end


where 109 is the ID of your skill.  you can have other when lines in there, but I'm just showing the particular one for a summon skill.

then, def self.summon(id) should look something like this:
    def self.summon(id)
      case id
      when 109 then return [SUMMONPet, 6, 30]
      end
      return [SUMMONNone, 0, 0]
    end


where 109 is the ID of your skill, 6 is the id of the actor to summon, and 30 is how long (in seconds) the summon lasts.  same deal


Thank you so much... That is the thing that i need ^_^ im so happy!!

You are very useful!

Blizzard

Quote from: Arceus on March 02, 2010, 01:08:22 pm
yeah, it's a typo, in the code that you copy back (Part 1), near the top (around line 100) it will say INTELLIGENT_PASSABILTY = true/false.

change INTELLIGENT_PASSABILTY to INTELLIGENT_PASSABILITY


Didn't I fix that already?
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.

(Hexamin)

Quote from: Champion Blizzard on March 03, 2010, 02:31:08 pm
Didn't I fix that already?


I believe so, I have the latest version of ABS (the one where forced player actions doesn't work) :V andddd I never had that problem.
Max 1111101000; characters remaining: 1110111000

elmangakac

Hello guys! i detect a little crash issue when im going to use a skill in a certain kind of enemy....

the game crash and... give me this message...


"?????"Game_Battler 3??? 139???? Typeerror ????????
false can“t be coerced into fixnum"

anyone have a idea?

Aqua

You misconfigured something.

elmangakac

Quote from: Elite Four Aqua on March 07, 2010, 05:30:00 pm
You misconfigured something.


what do you mean????  :O.o:
how can i fix it?

PD: it happens when a enemy attack and its inside of my skill range...

Landith

March 07, 2010, 07:07:58 pm #3151 Last Edit: March 07, 2010, 07:10:28 pm by Landith
Easy with the question marks and the ... Took me three times of reading your post to understand what you were talking about.

What she means is that you, misconfigured something. If you don't understand, then you shouldn't be using this script.
Use Blizz's Config to configure it so you don't make mistakes. If you can't open it, then you might have to run as administer, or download Microsoft Framework. Make sure it's in the right order. Test it more than once after you re-configure it. Try using different skills that use the same kind of attack(like homing/direct/etc...) and see if you still have this problem. Also make sure your using the right version of Blizz-ABS. After that you can post the problem, otherwise make sure you do those things.

legacyblade

when I get that, the enemy is set to use a skill that you've deleted from the database. That is a configuration error though. no doubt about it.

Ryex

blizz when i use $BlizzABS.get_enemy(id) I get this error


---------------------------
Script 'BABS ADDON (disabled)' line 46: NoMethodError occurred.

undefined method `get_enemy' for BlizzABS:Module
---------------------------

even though the code is strait from the manual
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 />

Aqua

Delete the add-on? XP

Ryex

no it is the $BlizzABS.get_enemy(id) call that is causing the error. I pulled it srait form the manual and it is saying the method is not there. I looed at the code and it IS there.
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 />

Blizzard

That error can only be caused if you typed "BlizzABS" instead of "$BlizzABS" or if you have somewhere "$BlizzABS = BlizzABS".
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.

elmangakac

Quote from: Landith on March 07, 2010, 07:07:58 pm
Easy with the question marks and the ... Took me three times of reading your post to understand what you were talking about.

What she means is that you, misconfigured something. If you don't understand, then you shouldn't be using this script.
Use Blizz's Config to configure it so you don't make mistakes. If you can't open it, then you might have to run as administer, or download Microsoft Framework. Make sure it's in the right order. Test it more than once after you re-configure it. Try using different skills that use the same kind of attack(like homing/direct/etc...) and see if you still have this problem. Also make sure your using the right version of Blizz-ABS. After that you can post the problem, otherwise make sure you do those things.


Ok thanks..... Im sorry but my english its no good.... i think Blizz abs its made for all the people that aprecciate blizz work... even for people that no speak english


Thanks to all

Landith

Sorry I was a little harsh, having a bad day that day :/

But glad that you got your problem fixed (:
(I'm not normally a bad sort of guy)

(Hexamin)

Setting HUD display to off at the start of a game...

Don't hate me 'cause I'm dumb  :(
Max 1111101000; characters remaining: 1110111000