Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 The Lycan ABS
#73
BUMP!
to Version 9.8

Again? Yes... again.

First, let me add that a slight modification was added to the Sprite Code page, particularly the new 'initialize_wrap' (line 53) I added last week. The method originally worked upon Game_Event character graphics for the map wrapping/looping system. However, it neglected other wrapped objects such as companions or treasures. The new additions to that method now include those as well as all traveling ballistic objects.

However, to allow traveling ballistic objects to go beyond the boundaries of a map when the map loops, I had to include a line of code to the 'update_movement_flag_invalid?' method (line 268) in the Game_Ranged_Base class of the Ballistics Code page itself. This allowed the system to stop checking for boundaries when the map looped.

So what does this mean?

YOU CAN NOW SHOOT ACROSS INVISIBLE MAP BOUNDARIES AND HIT YER TARGETS ON LOOPING MAPS!

Now for the rest....

* * *

For the past few weeks, I had been going through the scripts within the ABS system in an effort to break them into smaller modules. This would make attaching code for an add-on script much easier, such as adding code to the player class's update method. The manner in which the player's update method formerly appeared would have forced one to rewrite the entire method to perform a change to the code that handled a confusion or movement state. As it appears now, you can attack a smaller module used within. That was one of the reasons for these changes. Another was that a few methods used the same code. As such, breaking them into smaller components allowed some new methods to be shared and thus reduced some script size.

Well, if it weren't for all the comments I put in place. ^_^


This last venture into breaking the coding into smaller modules targeted the Game Code page, a page which has edits to the default game data handling scripts. Therein, my first target was the Game_Temp class. However, I merely separated the code that defined the wrapped maps from the rest of the initialize method. And the Game_System and Game_Event classes were literally untouched.

For the Game_Battler class, I thoroughly attacked the 'attack_effect', 'effect_skill' and 'effect_item' methods which handled the damage a target suffered when attacked during ABS combat. The routines that handled combo attacks and blue magic/skill learning now exist outside their respective methods. And routines that looked at how effective a skill or item is towards a target were also subdivided. One could now rewrite the method that determines the power or effectiveness of a skill or item merely by changing one of these new methods rather than the whole routine itself.


For thae Game_Actor, both 'can_use_skill?' and 'skill_can_use?' now use the new 'skill_requirement_check?' feature to see if a skill being used requires items stored in the party's grab bag. And the initialize method within the Game_Enemy class has a new 'initialize_enemy_comsume' which simulates the same thing for ABS opponents.

A number of changes were performed to the Game_Party class. Methods were broken off in the systems that kill off or remove actors, but larger changes occurred towards the party cycling method, breaking the system into smaller components. In fact, both 'cycle_forward' and 'cycle_backward' methods have been eliminiated in preference for the new 'cycle_direction' command. This move removed a lot of redundency, though some material handling companion forward/backward cycling couldn't easily be converted into a single method. Meanwhile, additional methods were broken down which handled member checks and refreshing map data.

It erked me, but I had the Game_Map class broken into two parts, one before the Game_Character class code and one part afterwards. SLOPPY on my part. Now both parts are together.

Within the Game_Character class, I broke away some code that affected pose frames and the movement control within the update method itself. I also made a new method that was use to generate new x/y coordinates if the character was going to be involved with looping maps. This new method was much shorter and did the work of several lines of code within the 'move_abs_object' and 'move_object_xy' methods. I broke away some code that handled automated attacking from the move_to_player method. But my biggest change was to the 'passable?' method itself, now having four new methods it calls to check on impassable events, treasure drops, companions and player objects.

Of the classes changed, the largest changes were within the Game_Player class, breaking the massive update method into even smaller chunks, setting up systems that memorized real positions, reset jump data, and handled encounter steps. For naming convention sake, the 'update_pixel_timer' method was renamed to 'update_player_movement_confuse_timer'. And lastly, the event trigger system near the bottom of the script was divided into smaller methods that checked event and companion dialog triggering.

* * *

Oh, and I changed Frank's Multipose one more time to account for the change in the party cycle system. Buhbye cycle forward/backward. Hello cycle_direction.

And that's all for now!

I'm beat...

[Image: Dilgear_by_parsek76.jpg]
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 }


Messages In This Thread
The Lycan ABS - by DerVVulfman - 11-01-2012, 06:30 AM
RE: The Lycan ABS - by DerVVulfman - 11-08-2012, 04:27 AM
RE: The Lycan ABS - by DerVVulfman - 11-23-2012, 06:13 AM
RE: The Lycan ABS - by DerVVulfman - 11-28-2012, 05:49 AM
RE: The Lycan ABS - by DerVVulfman - 05-16-2014, 05:39 AM
RE: The Lycan ABS - by DerVVulfman - 03-14-2014, 05:12 AM
RE: The Lycan ABS - by DerVVulfman - 03-12-2014, 05:21 AM
RE: The Lycan ABS - by DerVVulfman - 07-06-2016, 05:19 AM
RE: The Lycan ABS - by DerVVulfman - 08-07-2023, 04:02 PM
RE: The Lycan ABS - by KasperKalamity - 11-08-2012, 07:55 PM
RE: The Lycan ABS - by DerVVulfman - 11-09-2012, 04:33 AM
RE: The Lycan ABS - by hansiec - 11-25-2012, 09:36 PM
RE: The Lycan ABS - by DerVVulfman - 11-25-2012, 11:58 PM
RE: The Lycan ABS - by hansiec - 11-26-2012, 01:58 AM
RE: The Lycan ABS - by MetalRenard - 11-28-2012, 04:34 PM
RE: The Lycan ABS - by Erechel - 12-05-2012, 09:14 PM
RE: The Lycan ABS - by DerVVulfman - 12-06-2012, 04:27 AM
RE: The Lycan ABS - by DerVVulfman - 12-25-2012, 06:42 AM
RE: The Lycan ABS - by DerVVulfman - 12-26-2012, 07:56 AM
RE: The Lycan ABS - by hanetzer - 12-28-2012, 02:40 AM
RE: The Lycan ABS - by DerVVulfman - 12-28-2012, 05:47 AM
RE: The Lycan ABS - by DerVVulfman - 12-29-2012, 04:42 AM
RE: The Lycan ABS - by MOAL - 01-10-2013, 06:27 AM
RE: The Lycan ABS - by DerVVulfman - 01-12-2013, 04:55 AM
RE: The Lycan ABS - by MetalRenard - 01-12-2013, 10:47 AM
RE: The Lycan ABS - by DerVVulfman - 01-13-2013, 04:01 AM
RE: The Lycan ABS - by MetalRenard - 01-13-2013, 12:11 PM
RE: The Lycan ABS - by DerVVulfman - 01-17-2013, 05:31 AM
RE: The Lycan ABS - by DerVVulfman - 01-24-2013, 04:52 AM
RE: The Lycan ABS - by DerVVulfman - 02-22-2013, 06:23 AM
RE: The Lycan ABS - by MetalRenard - 02-12-2013, 04:11 PM
RE: The Lycan ABS - by DerVVulfman - 03-14-2013, 06:49 AM
RE: The Lycan ABS - by MechanicalPen - 03-31-2013, 03:55 AM
RE: The Lycan ABS - by DerVVulfman - 03-31-2013, 04:58 AM
RE: The Lycan ABS - by DerVVulfman - 03-31-2013, 05:41 PM
RE: The Lycan ABS - by MechanicalPen - 03-31-2013, 07:07 AM
RE: The Lycan ABS - by DerVVulfman - 03-31-2013, 07:15 AM
RE: The Lycan ABS - by MechanicalPen - 03-31-2013, 07:18 AM
RE: The Lycan ABS - by MechanicalPen - 04-05-2013, 03:42 AM
RE: The Lycan ABS - by DerVVulfman - 04-05-2013, 04:01 AM
RE: The Lycan ABS - by xnadvance - 05-04-2013, 03:29 PM
RE: The Lycan ABS - by DerVVulfman - 05-04-2013, 07:01 PM
RE: The Lycan ABS - by xnadvance - 05-04-2013, 08:58 PM
RE: The Lycan ABS - by DerVVulfman - 05-04-2013, 09:13 PM
RE: The Lycan ABS - by xnadvance - 05-04-2013, 11:22 PM
RE: The Lycan ABS - by zephrael - 06-01-2013, 09:12 PM
RE: The Lycan ABS - by DerVVulfman - 06-02-2013, 03:13 AM
RE: The Lycan ABS - by zephrael - 06-02-2013, 07:13 PM
RE: The Lycan ABS - by MechanicalPen - 06-02-2013, 05:10 AM
RE: The Lycan ABS - by DerVVulfman - 06-02-2013, 05:32 PM
RE: The Lycan ABS - by DerVVulfman - 06-02-2013, 07:40 PM
RE: The Lycan ABS - by zephrael - 06-02-2013, 08:04 PM
RE: The Lycan ABS - by DerVVulfman - 06-03-2013, 12:23 AM
RE: The Lycan ABS - by zephrael - 06-03-2013, 07:47 AM
RE: The Lycan ABS - by zephrael - 06-03-2013, 06:00 PM
RE: The Lycan ABS - by DerVVulfman - 06-04-2013, 03:33 AM
RE: The Lycan ABS - by zephrael - 06-04-2013, 06:29 PM
RE: The Lycan ABS - by DerVVulfman - 06-05-2013, 03:47 AM
RE: The Lycan ABS - by zephrael - 06-05-2013, 03:17 PM
RE: The Lycan ABS - by DerVVulfman - 06-06-2013, 03:26 AM
RE: The Lycan ABS - by zephrael - 06-06-2013, 01:23 PM
RE: The Lycan ABS - by DerVVulfman - 06-07-2013, 04:23 AM
RE: The Lycan ABS - by DerVVulfman - 12-05-2013, 05:16 AM
RE: The Lycan ABS - by DerVVulfman - 12-30-2013, 04:36 AM
RE: The Lycan ABS - by JayRay - 02-06-2014, 03:16 PM
RE: The Lycan ABS - by DerVVulfman - 02-07-2014, 04:21 AM
RE: The Lycan ABS - by DerVVulfman - 04-03-2014, 04:17 AM
RE: The Lycan ABS - by DerVVulfman - 04-03-2014, 08:40 PM
RE: The Lycan ABS - by DerVVulfman - 04-18-2014, 05:00 AM
RE: The Lycan ABS - by DerVVulfman - 05-08-2014, 03:21 AM
RE: The Lycan ABS - by DerVVulfman - 05-27-2014, 03:44 AM
RE: The Lycan ABS - by DerVVulfman - 05-28-2014, 04:13 AM
RE: The Lycan ABS - by DerVVulfman - 05-29-2014, 03:34 AM
RE: The Lycan ABS - by DerVVulfman - 10-25-2015, 03:20 AM
RE: The Lycan ABS - by Ahzoh - 06-02-2014, 04:22 PM
RE: The Lycan ABS - by DerVVulfman - 06-04-2014, 06:54 AM
RE: The Lycan ABS - by DerVVulfman - 07-31-2014, 03:25 AM
RE: The Lycan ABS - by DerVVulfman - 12-24-2014, 06:12 AM
RE: The Lycan ABS - by JayRay - 01-04-2015, 12:40 AM
RE: The Lycan ABS - by DerVVulfman - 01-04-2015, 04:59 AM
RE: The Lycan ABS - by JayRay - 01-05-2015, 04:22 PM
RE: The Lycan ABS - by Davesss - 09-10-2015, 04:27 PM
RE: The Lycan ABS - by DerVVulfman - 09-11-2015, 04:36 AM
RE: The Lycan ABS - by Davesss - 09-11-2015, 10:14 AM
RE: The Lycan ABS - by DrHouse93 - 09-20-2015, 07:56 PM
RE: The Lycan ABS - by DerVVulfman - 09-21-2015, 03:42 AM
RE: The Lycan ABS - by DrHouse93 - 09-21-2015, 12:00 PM
RE: The Lycan ABS - by DerVVulfman - 09-23-2015, 04:06 AM
RE: The Lycan ABS - by flynnmichael81 - 09-27-2015, 05:46 PM
RE: The Lycan ABS - by DerVVulfman - 09-28-2015, 04:48 AM
RE: The Lycan ABS - by DrHouse93 - 10-02-2015, 08:53 PM
RE: The Lycan ABS - by cardcafe - 10-06-2015, 08:54 PM
RE: The Lycan ABS - by DerVVulfman - 10-07-2015, 11:36 PM
RE: The Lycan ABS - by DrHouse93 - 10-08-2015, 02:16 PM
RE: The Lycan ABS - by DerVVulfman - 10-09-2015, 02:52 AM
RE: The Lycan ABS - by DrHouse93 - 10-09-2015, 12:11 PM
RE: The Lycan ABS - by DerVVulfman - 10-18-2015, 03:32 AM
RE: The Lycan ABS - by DrHouse93 - 06-23-2016, 12:43 PM
RE: The Lycan ABS - by DerVVulfman - 06-24-2016, 03:40 AM
RE: The Lycan ABS - by swickster - 06-24-2016, 07:36 AM
RE: The Lycan ABS - by DerVVulfman - 06-25-2016, 04:41 AM
RE: The Lycan ABS - by DerVVulfman - 07-09-2016, 08:43 PM
RE: The Lycan ABS - by swickster - 07-10-2016, 07:55 PM
RE: The Lycan ABS - by DerVVulfman - 07-10-2016, 08:44 PM
RE: The Lycan ABS - by DerVVulfman - 08-24-2016, 04:30 AM
RE: The Lycan ABS - by DerVVulfman - 08-25-2016, 10:13 PM
RE: The Lycan ABS - by LiTTleDRAgo - 08-30-2016, 06:04 PM
RE: The Lycan ABS - by DerVVulfman - 08-31-2016, 04:46 AM
RE: The Lycan ABS - by EvilSnowDrop - 08-31-2016, 12:17 PM
RE: The Lycan ABS - by DerVVulfman - 03-04-2017, 04:58 AM
RE: The Lycan ABS - by LiTTleDRAgo - 05-14-2017, 08:25 AM
RE: The Lycan ABS - by DerVVulfman - 05-14-2017, 05:57 PM
RE: The Lycan ABS - by GwenBlanketKnight - 08-13-2017, 07:07 PM
RE: The Lycan ABS - by JayRay - 03-27-2023, 02:54 PM
RE: The Lycan ABS - by DerVVulfman - 08-09-2023, 02:21 AM
RE: The Lycan ABS - by DerVVulfman - 08-11-2023, 02:25 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Lycan Companion Icons DerVVulfman 0 650 08-09-2023, 08:23 PM
Last Post: DerVVulfman
   Lycan Sneak Armor DerVVulfman 0 4,701 10-25-2015, 06:15 AM
Last Post: DerVVulfman
   Lycan ABS / MGC Mode7 Edit Patch DerVVulfman 2 8,413 10-18-2015, 07:12 PM
Last Post: DerVVulfman
   The Lycan ABS Isometric Maps Patch DerVVulfman 1 6,037 06-25-2014, 03:54 AM
Last Post: DerVVulfman
   Lycan Enemy Bars / MGC Mode7 Edit Patch DerVVulfman 0 5,294 06-12-2014, 04:05 AM
Last Post: DerVVulfman
   Lycan Oversized Enemy Targeting DerVVulfman 0 4,460 06-05-2014, 03:42 AM
Last Post: DerVVulfman
   The Lycan ABS Isometric View Patch DerVVulfman 4 9,584 04-23-2014, 04:58 AM
Last Post: DerVVulfman
   Title Skip for Lycan ABS JayRay 3 6,719 04-21-2014, 01:55 PM
Last Post: MetalRenard
   Lycan Attack Fatigue DerVVulfman 0 4,746 03-04-2014, 05:03 AM
Last Post: DerVVulfman
   Meagan's Particles for the Lycan ABS DerVVulfman 0 4,494 06-07-2013, 04:21 AM
Last Post: DerVVulfman



Users browsing this thread: