Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Search results

  1. Xilefian

    It's my 2nd favourite in the series. I'm disappointed with the modern Unity port though, doesn't...

    It's my 2nd favourite in the series. I'm disappointed with the modern Unity port though, doesn't quite feel the same as the PS1 original. The in-game cheat system is telling that Square Enix have little faith in the original game's playability.
  2. Xilefian

    Android RPG Maker MV Guide

    Make sure you're connected to the internet and click "Re-download dependencies and sync project (requires network)". Also try doing File -> Invalidate Caches/Restart If it's still not fixed, try restarting your PC.
  3. Xilefian

    Learning how to navigate the code

    This is inspired by Xyphien's post here: Ask the Owner Anything This guide follows the way I navigate the code, but written from the perspective of someone who has zero coding experience. This is almost exactly what I went through as a 12 year old in 2004 and this is basically the story of how...
  4. Xilefian

    Ask the Owner Anything

    You probably picked one of the most easiest examples you could there. My very, very first foray into programming (literally the first thing I did, with less than zero knowledge of coding) was actually modifying exactly this for RPG Maker XP in Ruby back in the day. I'll make a quick thread...
  5. Xilefian

    Plugin Pixel Movement

    Done a fair amount of stuff today. First thing I did was fix bugs related to wobbly collision with the map. Had some issues of polygons getting stuck if they were too close to the end of a line, rather than sliding past as it should. I modified the collision algorithm a bit to make it 2-pass...
  6. Xilefian

    Plugin Pixel Movement

    Good question. My development machine is very powerful, so I haven't optimised for performance yet (beyond my optimised algorithms), my plan was originally to optimise last (which is standard practise with software development). Most people would probably raise an eyebrow at the idea of...
  7. Xilefian

    .

    Well, no this is mostly wrong. PIXI.js has 3D hardware acceleration when available, that is definitely true. And because of this, it can do full 3D graphics that's at the quality of current 2017 generation games, not pre-PS2 as suggested here. But when it isn't available (which is becoming less...
  8. Xilefian

    Android RPG Maker MV Guide

    Did you try the CrossWalk vs the WebView builds? My suspicion is that your emulator is missing the Chrome WebView implementation, so maybe CrossWalk will work. Otherwise, I'm out of ideas. There isn't much in the code that can actually crash - so the crash is happening somewhere inside the...
  9. Xilefian

    Android RPG Maker MV Guide

    Why can't you use the emulator on Android Studio? Yes, checking without Plugins would help a lot, good idea!
  10. Xilefian

    Android RPG Maker MV Guide

    That could be the issue, it could also be that this Plugin is depending on some behaviour that isn't available in the emulator's web browser and causes a crash. To test if the emulator is the problem: Try on a real device. To test if the Plugin is the problem: Deploy your project to the web...
  11. Xilefian

    Android RPG Maker MV Guide

    Tell us what the error message says (if anything). Tell us what Plugins your project uses (if any). Tell us what device you have (Model number, country of purchase, Android OS version).
  12. Xilefian

    Bot's / Spam?

    The best way to combat forum spam bots is to not use a forum login system but depend on 3rd party registration and login, like "Sign in with Google" or similar; that way spammers would need a real account on one of these services which would then put that account up as a risk if they were to...
  13. Xilefian

    DLC for Mac Purchased via Steam

    These content types that you linked are for the character generator program, which go in the RPG Maker MV\Generator folder in Windows to add these custom pieces into the character generator program. Unfortunately, on macOS it's more difficult to get to this folder as it is inside the app...
  14. Xilefian

    DLC for Mac Purchased via Steam

    Ah sorry, don't quite understand what exactly you wanted to do. Do you want to add "DLC content" for an RPG Maker MV game project that you are creating with RPG Maker MV? Or do you want to add additional resources into the RPG Maker MV creation-program similar to how the official Steam DLCs...
  15. Xilefian

    DLC for Mac Purchased via Steam

    These are Windows directories, not Mac. You'll find the dlc folder for RPG Maker MV here on macOS: ~/Library/Application Support/Steam/steamapps/common/RPG Maker MV/dlc If you want an easy way to get to this folder without doing search, click on the Finder icon (blue face on the far left of...
  16. Xilefian

    Android RPG Maker MV Guide

    Sorry, it was written in earlier posts; I'm not going to provide support for signing release APKs. This is because I'd rather people who used my code and technology went out and learned on their own without my help so they can gain the skills needed for most serious development. If you're...
  17. Xilefian

    Android RPG Maker MV Guide

    WebView is the Android system web browser, it doesn't require internet connection to use (just like any other web browser). CrossWalk is just an Intel-made alternative, it's the same thing functionally. Because WebView is built into Android it doesn't come with any fat libraries (it's already...
  18. Xilefian

    Android RPG Maker MV Guide

    Oh yeah I forgot about the x86 compatibility. Kind of ironic that Intel don't package x86 support for their own crosswalk tools. As a software developer, I recommend the WebView as it will be kept up to date and have the latest security features without you needing to update the app. Crosswalk...
  19. Xilefian

    Android RPG Maker MV Guide

    It looks like you used the CrossWalk build, which adds the entire CrossWalk library and bloats up the app size. The WebView build should be smaller. The reason why this CrossWalk is bigger than the one described in the RPG Maker method is because my method uses the latest build of CrossWalk and...
  20. Xilefian

    Android RPG Maker MV Guide

    Okay, you've convinced me that you've done everything correctly. I think you just need to solve those Gradle errors at the bottom. Did you definitely install the Build Tools from Step 2? This error appears if you haven't installed the latest available Build Tools. Make sure Platform Tools is...
Top