XaiL Redux Deluxe - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker XP (RGSS) Engine (https://www.save-point.org/forum-116.html) +---- Thread: XaiL Redux Deluxe (/thread-5773.html) |
XaiL Redux Deluxe - DerVVulfman - 04-21-2016 XaiL Redux Deluxe
Version: 1.6 Introduction This is a revised and enhanced version of the XaiL main menu written by Nicke. Now available for RPGMaker XP, it recreates the main features of his menu system. Game developers can add new options into their main menu and toggle their availability based on game switches. And it can display an information stats window that can hold various pieces of game data at the game developer's discretion. Features
Screenshots Basic Screen Screen with Icons and Faces Visual Graphics Menu Demo Basic system XP Style system Face and Icons system Visual system - Single Background Visual system - Multiple Backgrounds Instructions The configuration sections have comments, but the main header is loaded with them. FAQ It took all day to type the instructions. Compatibility This revision of the XaiL Menu system was designed solely for RPGMaker XP and overwrites the Main Menu itself. As such, it will not function with any other Main Menu script. But it isn't just the Scene_Menu class that was rewritten, but the Window_MenuStatus class as well. But that class is only used by the main menu by default, so no actual conflict should exist. Credits and Thanks Thanks goes to Nicke for the creation of the original script for RPGMaker VXAce, and to RASHIDA12 for the request to convert it to RPGMaker XP. And additional thanks goes to SephirothSpawn who added the color_between method to the Color class, used for gradient bar rendering. Terms and Conditions Free for use, even in commercial games. Only due credit to Nicke, RASHIDA12 and myself is required. RE: XaiL Redux Deluxe - DerVVulfman - 04-22-2016 A few notes of interest: This area is for the Q/A section. I expect it to grow. But if it doesn't, I have some users that are apparently dabbling in Rubyscripting. QUESTION #1: The HP values are centered. How do I make them left-adjusted? RE: XaiL Redux Deluxe - Mel - 04-22-2016 Looks very nice. There are some really cool features. I didn't find any bug so far. RE: XaiL Redux Deluxe - Bounty Hunter Lani - 04-22-2016 I haven't found any bugs with it either, it's really great! The only things I found were 100% my own fault, because I somehow managed to common event some things, and after investigating, it was in all of my backups and backups of backups before I even used this script! I am making my own changes to it, as the magnificent and mighty DerVVulfman already knows, so we'll see how far this script can go! (I haven't broken the script yet, so we're doin' well so far! ) RE: XaiL Redux Deluxe - RASHIDA12 - 07-17-2016 Dear Der VVulfman, I found two bugs in XaiLVisual. Despite the fact that EXP is being added, the bar doesnt show any reactions. If I gain 13 EXP, there is no reaction in the EXP BAR. Btw. I tried to get the XAIl Visual Menu on my project where I have the ATOAS ACBS script by ATOA. Only the two scripts. Whenever I open the menu I get the following bug reaction: Look at my attachment. The Line is here: 1037: draw_actor_name(actor, new_x, new_y, self.contents.font.color) Thanks in advance. RE: XaiL Redux Deluxe - DerVVulfman - 07-17-2016 YOU FELL INTO MY TRAP!!! MWAHAHAHA!!!! URP.... I mis-configured the name of the EXP bar. In the config for the Visual demo, I named it EP_Bar rather than EXP_bar. In that case, you have two choices, either fix the filename in the config, or just rename the bar to EP_Bar. Insofar as the issue with the draw_actor_name command, I guess one of the scripts you are using has its own new variant. Perhaps placing Xail below the battlesystem will fix this issue, so it overwrites the revised one in your battlesystem. RE: XaiL Redux Deluxe - RASHIDA12 - 07-18-2016 (07-17-2016, 08:29 PM)DerVVulfman Wrote: YOU FELL INTO MY TRAP!!! MWAHAHAHA!!!! URP.... Okay, first problem solved. I already tried to place the script below and after the battle system. When I placed it above the battle system, the bug came which I described above. But when I placed it very below the Battle system, the bug didint show up, the menu opened but some things looked very misplaced, it was a mess. Problem is: My Project: I've my project with various scripts: Placing above will result into the bug. Placing above will result in to a mess. I've so far made a new project with only ATOAS ACBS Menu. When I put the scripts above the battle system, the same bug came. Putting it below made it work fine. But I want it to make it work for my project I've tried to put a # before the line 1037: Changed it to: #draw_actor_name(actor, new_x, new_y, self.contents.font.color) Suddenly, it seemed to work. Do you think it will somehow disturb the script or is there any other solution? RE: XaiL Redux Deluxe - DerVVulfman - 07-18-2016 Well, you could copy the actual [b]draw_actor_name[b] method from the Xail script and re-pasted it as a separate script by itself below everything else.... effectively ensuring it takes precedent over the other version. Code: class Window_Base Just post the method in its own Window Base class after the others, and you should be good to go. RE: XaiL Redux Deluxe - RASHIDA12 - 07-18-2016 (07-18-2016, 03:18 AM)DerVVulfman Wrote: Well, you could copy the actual [b]draw_actor_name[b] method from the Xail script and re-pasted it as a separate script by itself below everything else.... effectively ensuring it takes precedent over the other version. Sorry, did I understood you rigth? you mean? Quote:def draw_item_name(actor, x, y, arrayval) as a new script below the other Menuscripts? RE: XaiL Redux Deluxe - DerVVulfman - 07-18-2016 Yep. As in a new script below your menu AND battlesystem scripts, just so the Xail version of the draw_actor_name takes over. To be specific, just paste THIS below it all: Code: #============================================================================== The original version has only three parameters. Mine has four, but it assumes that the color value defaults to the normal text color. Hrm. Oddly, I wonder why the battlesystem script conflicts here. It is as if something else may be rewriting that method. But that would be a separate thread/topic. EDIT: Atoa's system...... You mentioned that. So I took a look at Atoa's system. Paste THIS below everything: Code: #============================================================================== It combines features from both. If you are in battle or have a custom system built into Atoa's system turned on, it uses Atoa based values to change the font. Otherwise, it draws normally (or as normal as the XAIL system goes). |