Memorie - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Games Development (https://www.save-point.org/forum-4.html) +--- Forum: Upcoming Projects (https://www.save-point.org/forum-15.html) +--- Thread: Memorie (/thread-6151.html) |
RE: Memorie - KDC - 08-31-2020 (08-30-2020, 10:50 PM)DerVVulfman Wrote: Well, line 1321 (as your display shows) indicates this line: That could work. I'll give it a shot. RE: Memorie - kyonides - 08-31-2020 If you fail to make it work, any of us ( staring at Wulfo) can fix it for you. So far there's no sign of needing to ditch any script. RE: Memorie - KDC - 09-03-2020 Huh... Instead of trying to fix it, I'm programming inclined and only remember a tiny bit Visual Basic programming (Which is NOT the programming language used for these scripts), I found a Title Skip for Lycan ABS, which appears to actually work. Huh... Anyway, That aside, after starting a new game, Mog's C-HUD kind of wigs out a little by actually not being there with the Hotkeys HUD, which is also partially because I also have the Lycan HUD enabled at the same time. I'm going to look into that. Oh. and the Chain Commands also are using different keys instead of what would normally be shown on Screen. I was going to edit the image, but it appears I will have to learn what key is what now. ALSO one last thing to note, I gotta figure out how to fix This error, because I don't actually have a plan to use the mouse system Lycan ABS comes with, in fact I didn't copy the mouse system from the demo. That way I don't break the game by accidentally pressing either of the Shift keys on my keyboard(s). Now that I think about it, I might have to replay the second Lycan ABS demo as I couldn't, for the life of me, reload the gun..... and to see what Shift actually DOES. RE: Memorie - DerVVulfman - 09-03-2020 Hrm... I thought I isolated that code with an 'unless $mouse.nil?' block.... Change Code: keycode = Lycan::MOUSE_ATTACK_KEY Code: unless $mouse.nil? The rest of the Lycan code has mouse-related commands encapsulated like that RE: Memorie - KDC - 09-03-2020 (09-03-2020, 03:05 PM)DerVVulfman Wrote: Hrm... I thought I isolated that code with an 'unless $mouse.nil?' block.... Oh thanks! I will do that. RE: Memorie - KDC - 09-11-2020 Welp, before I mess up Lycan ABS by mistake, which would result in some error upon booting up the game, I made a debug map.... actually, I just added events to the initial project map RPG Maker XP usually has users start with, and called it a Debug Map. I also added some BGM so that it isn't completely silent. This Debug map will act as my personal find bugs and fixes before starting to even do story stuff. That way, I won't have to worry about something crashing mid way. Also, the HUD will look different when I get to that, in terms of graphics and positioning. Also Mog's C-Hud, which was going to be in, is now cut out, but I am holding on to the old project file, so I might have a use for that specific script for a different project down the line, if I come up with another one. Kita, Cid, and Kado are in the initial party with Akiko to test out the Companions feature of Lycan ABS. And Emil, for right now, is just there, but I will be using her in this debug map to test certain features, such as hiding and showing the HUD. Welp, time to mess around. Hopefully I can add the Particle Effects Script to this project, as well as some Lighting, maybe. RE: Memorie - DerVVulfman - 09-12-2020 Good idea. Test test test. Make sure you get what you want. Using the particle system? I like seeing particle effect magic spells or flame thrower spray. Well, the hud has on/off and position features, so you should be able to customize it from the customize module alone. RE: Memorie - KDC - 09-12-2020 I thought I'd show some behind the scenes testing footage. Audio (BGM/ME) is muted in the footage above because I was listening to music at the time. And here's a more recent test footage. I, sometime between black screen, turned companion damage on melee hit on, and see how characters(s) react..... and I accidentally attacked Kita with Akiko a couple of times. That was not intentional at all. Also I put in Mousie, but not the window edits for Mousie. So in short, you'll still have to use the keyboard for dialogue boxes and menu navigation. Don't quite know why the HP/MP Icons duplicate themselves upon getting Items. RE: Memorie - DerVVulfman - 09-15-2020 FYI. The area where I suggested to put the 'unless mouse.nil?' code... there is another not too far in the same module. This if you have an automatic or repeating weapon. It's basically the same exact code to fix. RE: Memorie - KDC - 09-15-2020 (09-15-2020, 04:42 AM)DerVVulfman Wrote: FYI. The area where I suggested to put the 'unless mouse.nil?' code... there is another not too far in the same module. This if you have an automatic or repeating weapon. It's basically the same exact code to fix. Noted. |