Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 AnimBat! - Animated Battlers - Comprehensive
Animated Battlers VX? Not really supported. The help file can cover MOST of the material. But some content in the help file doesn't work with VX because XP's is way more advanced.

And there's limited VX usage. People either went back to XP or forward to VXAce.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
You see, Holder, there are very few scripters that would ever support VX nowadays or even years ago. I'm one of those, but I don't recall wulfo publishing VX adapted scripts in a long time so don't get used to it. Laughing + Tongue sticking out

To be honest, XP tilesets and mapping and VX Ace's new DB improvements tend to catch people's attention and make them ignore VX that is just a messy version that doesn't even deserve to be called an intermediate step. VX ended up being VX Ace's loser cousin. Laughing You can keep your VX projects if you like, though you'll have a hard time trying to get things adapted, ported, fixed, improved and so on.
"For God has not destined us for wrath, but for obtaining salvation through our Lord Jesus Christ," 1 Thessalonians 5:9

Maranatha!

The Internet might be either your friend or enemy. It just depends on whether or not she has a bad hair day.

[Image: SP1-Scripter.png]
[Image: SP1-Writer.png]
[Image: SP1-Poet.png]
[Image: SP1-PixelArtist.png]
[Image: SP1-Reporter.png]

My Original Stories (available in English and Spanish)

List of Compiled Binary Executables I have published...
HiddenChest & Roole

Give me a free copy of your completed game if you include at least 3 of my scripts! Laughing + Tongue sticking out

Just some scripts I've already published on the board...
KyoGemBoost XP VX & ACE, RandomEnkounters XP, KSkillShop XP, Kolloseum States XP, KEvents XP, KScenario XP & Gosu, KyoPrizeShop XP Mangostan, Kuests XP, KyoDiscounts XP VX, ACE & MV, KChest XP VX & ACE 2016, KTelePort XP, KSkillMax XP & VX & ACE, Gem Roulette XP VX & VX Ace, KRespawnPoint XP, VX & VX Ace, GiveAway XP VX & ACE, Klearance XP VX & ACE, KUnits XP VX, ACE & Gosu 2017, KLevel XP, KRumors XP & ACE, KMonsterPals XP VX & ACE, KStatsRefill XP VX & ACE, KLotto XP VX & ACE, KItemDesc XP & VX, KPocket XP & VX, OpenChest XP VX & ACE
Reply }
Ah right, I was just updating the script list that my battlers could be used with and some of them I couldn't find anymore. Animated VX was one of them, I had a house slasher link but it's not there anymore. I'm not making anything kyonides I am just wanting to get people to find whats available for whatever engine they're using.
Reply }
Oh, it's configurable. And there is a linkie over here for the VX version.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
Got an actor transparency problem. Tried looking through the configuration section, altering a few values but not having any luck.
Basic problem is that all my actors are slightly transparent, enemies aren't. There's no numbers in the array for transparent actors and I've tried altering that value to 0 and 255 to see if it makes a difference.


.jpg   transprob.jpg (Size: 516.79 KB / Downloads: 3)
Reply }
Configuration Page 1: Basics

Line 99 is the TRANSLUCENCY value setting how translucent/solid battlers may be if they are not fully solid on the screen. I have it set to 127, a middle-range setting.

Line 100 is TRANSLUCENT_ACTOR, an array to fill with the IDs of actors that are semi-solid or Translucent.
Line 101 is TRANSLUCENT_ENEMY, an array to do the same thing, but with enemies by their ID in the enemy database.

Or as the help file reads
Quote:TRANSLUCENCY = numeric integer value

The TRANSLUCENCY setting doesn't make all of your actors or enemies transparent. However, it does define how transparent or solid certain actors or enemies will be. If an actor is defined as one that is transparent, and an enemy is likewise defined as a transparent enemy, both will use this setting. Valid values for the TRANSLUCENCY setting are from 0 to 255, which is the same range that the RPGMaker line of engines use for the transparency/opacity settings.



TRANSLUCENT_ACTOR = array (numeric)

If you do not have any actors that are transparent, you can leave the brackets [] for this array empty. However, if you have any actors that can be seen through, it is here where you list them within the TRANSLUCENT_ACTOR setting by their ID values. If, for example, you decide that Cyrus (default Actor #3) and Dorothy (Actor #4) are transparent, you would list them within the brackets thus: [3,4]. How transparent your actor or actors will be is defined by the TRANSLUCENCY value above. No Actor or Enemy can have separate TRANSLUCENCY settings.



TRANSLUCENT_ENEMY = array (numeric)

The TRANSLUCENT_ENEMY setting mirrors that of the TRANSLUCENT_ACTOR setting, except it identifies which enemies are transparent and which that are not. Again, it is an array which you can fill, and you do so with the IDs of your enemies that you want to be transparent. And again, the level of transparency is defined by the TRANSLUCENCY value above.



HOWEVER!!!!
What you may not realize is that ... the default battlesystem reduces the opacity of any battler when the battler is NOT engaged in action. In Sprite_Battler's update method, lines 69-71 show the in-battle adjustment. This is not part of AnimBat! but part of the way the default system is written. If it is in use with another battlesystem that does not use this effect... well... hehe.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
Configuration Page 1: Basics is where I tried altering it but it's as you say, it's when they're not in use. I honestly never realised that, is there a way to disable them being transparent when not engaged? I've been looking to see if I can just toggle a number to not reduce the transparency but failing quite spectacularly.
Reply }
Laughing Yeah, it's the default battlesystem. Just attack that block of code in the original Sprite_Battler class. Tongue sticking out My system doesn't alter or change built-in effects like that. I leave that to end-users. Winking
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
Took those lines out but copied them into a notepad incase i need them back in. Cheers :)
Reply }
After all this time, someone at RPGMakerWeb delivered an accurate bug report for a real coding error.

The member, redtri17, attempted to configure a specific weapon to render a pose not-standard. His alteration/edit was correct and proper. And his expectation of it changing the pose based on the weapon as he configured was accurate. So yes, there is a bug in version 1.0.

Simple to track, the ATTACK_WEAPONS value only works within the following page of the system:
4 - Battle Engine Classes. The error within the code can be corrected by a simple change to line 926 within the animbat_function_update_phase4_step3_pose_attack method.

Merely change
Code:
temp_pose = hash_obtain2(battler, nil, temp_hash)
to
Code:
temp_pose = hash_obtain2(battler, battler.weapon_id, temp_hash)


This essentially allow the feature that changes the weappn to recognize which weapon by its ID.

While I have not as yet updated the demos, this does change the system to version 1.1 on today's date of September 14, 2019. And now redtri17 will be included in the credits.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
   Brenda's Paperdoll Battlers DerVVulfman 2 6,926 04-18-2023, 02:05 AM
Last Post: DerVVulfman
   Animated Battlers - VX DerVVulfman 23 46,066 02-28-2019, 09:11 PM
Last Post: Holder
   DoubleX RMMV Linked Battlers DoubleX 3 7,765 01-29-2016, 04:15 PM
Last Post: DoubleX
   DoubleX RMVXA Linked Battlers DoubleX 1 5,558 11-08-2015, 04:29 AM
Last Post: DoubleX
   Victor Engine - Animated Battle Victor Sant 4 13,603 03-10-2012, 06:42 PM
Last Post: Victor Sant
   Victor Engine - Automatic Battlers Victor Sant 0 4,608 01-19-2012, 01:33 AM
Last Post: Victor Sant
   Victor Engine - Actors Battlers Victor Sant 0 5,284 12-21-2011, 07:50 AM
Last Post: Victor Sant
   Full Animated Side View Battle System Cybersam 6 23,104 03-18-2011, 04:31 AM
Last Post: Ashbane
   Animated Tileset kingartur2 5 10,524 02-08-2010, 04:26 AM
Last Post: DerVVulfman
   Trickster's Animated Gradient Bars for Limit Break (DVV) DerVVulfman 2 8,764 09-15-2009, 04:43 AM
Last Post: DerVVulfman



Users browsing this thread: