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

    Localize game

    Localisation in RPG Maker is something I've been thinking about for a while. In the older days of RPG Maker XP many Japanese projects actually put all their dialogue into common events (yes, all of it) and then at the end of development they'd open up the common events manager and translate all...
  2. Xilefian

    Android RPG Maker MV Guide

    Are you sure this grey screen is not caused by you removing the auto-updater? It is my understanding that the auto-updater Plugin replaces some of the default Javascript code and downloads additional files that it depends on, perhaps the process of removing it has left it broken. I'm blaming...
  3. Xilefian

    Android RPG Maker MV Guide

    One of your Plugins is "Desktop Only" - meaning it's not compatible with web browser or mobile platforms. I am guessing it is the "auto-updater" Plugin. Ask the Plugin author to add compatibility so it does not crash.
  4. Xilefian

    You found out your Paid Artist is plagiarizing something?

    The image of the Mona Lisa is in the public domain, so people are allowed to copy it as much as they like. It's a different situation to this one.
  5. Xilefian

    Commonly Accepted Plugin "Stacks"?

    I am a very experienced programmer, I'm not quite sure what you're asking for here. "Commonly accepted Plugin stacks" - what does this mean? Do you mean like a common software stack that Plugins use? Like a standard library and a set of helpers for constructing objects and organising code...
  6. Xilefian

    Android RPG Maker MV Guide

    That's a Javascript error, which indicates a Plugin bug. The author will know how to fix it.
  7. Xilefian

    Android RPG Maker MV Guide

    If the Plugin requires internet, then you may need to add the Android internet permission. Beyond that, you will need to contact the Plugin author; the Android MV Client doesn't do anything special to break Plugins that work normally with vanilla RPG Maker MV. If a Plugin doesn't work in the...
  8. Xilefian

    You found out your Paid Artist is plagiarizing something?

    No, it doesn't matter if your title is freeware or paid software, doesn't matter if it's a poster you stuck up outside a shop or a poster you're selling to hundreds of people - the same copyright restrictions and issues apply. Whether you are chased down for it or not is based on what the...
  9. Xilefian

    You found out your Paid Artist is plagiarizing something?

    First of all I'd review the contract that was written out to see if anything was written there that would help shed light on what to do. A contractor shouldn't be putting your company into legal hot-water. If you're not a limited liability company then it's even more dangerous should the...
  10. Xilefian

    Android RPG Maker MV Guide

    It's free to use for commercial projects, but no support is given for such projects. The copyright covers the runtime code, it's still free to use, but don't pretend you made the runtime and don't try to sell the code itself as your own. You're free to remove the copyright notice, but please...
  11. Xilefian

    Android RPG Maker MV Guide

    If - for some reason - you are unable to set your phone to developer mode and have it appear in Android Studio then copying the file over manually is the only thing you can do. I have found that using Dropbox with the Dropbox app is easiest in this scenario for regular people. The installation...
  12. Xilefian

    Parallax Lag

    I'm guessing when you say "lag" you mean low frame-rate? MV isn't great with large images. I'm exploring the use of parallax maps for my current project, I've actually opted to go a different route; I'm using the TileD Plugin and I'm converting my parallax maps into tiles, so they have the...
  13. Xilefian

    Android RPG Maker MV Guide

    If you've increased the version number, then this error only happens for test-builds, it shouldn't happen for release builds (your users should be able to update normally). As an example; if you've installed a release build on your phone but you're trying to run a test build then this error...
  14. Xilefian

    Android RPG Maker MV Guide

    You need to increase the versionCode in the build.gradle (app) file (see here: https://github.com/AltimitSystems/mv-android-client/blob/7c57c64b7161b24dd7fa791eef3bf071c39d0441/app/build.gradle#L36) In the older versions that code would have been "104", in the new version it is reduced back to...
  15. Xilefian

    Android RPG Maker MV Guide

    I think I'll consider this a bug that needs fixing. The save files are set to backup to your Google account, however I have no idea how this works with updates. Are you using WebView or Crosswalk? I have a feeling this is an issue with Crosswalk..
  16. Xilefian

    Android RPG Maker MV Guide

    This actually highlighted a small cosmetic issue in the code, which I've fixed for future users. App updates must have a greater app versionCode than previous versions, this is what tells Android that this is an "update" and not a "new version". The versionCode is found in the build.gradle...
  17. Xilefian

    Plugin Pixel Movement

    I think you've misunderstood me; I choose to have stupid AI and not smart AI. The reason is because smart AI was "too smart" and ended up being distracting and confusing to witness when it activated. So for followers, if a door closed that trapped the follower at the back, with the current...
  18. Xilefian

    Plugin Pixel Movement

    Getting stuck behind walls is completely intended, that is not default behaviour though (default behaviour is to never allow an opportunity for them to get stuck, which doesn't look as good for pixel-movement, see OrangeMovement's followers for an example of why this looks bad). I did...
  19. Xilefian

    Plugin Pixel Movement

    The follower AI is working as intended. If you are referring to the walking across the world to mount the vehicle then that's intended behaviour, the alternative is to have them vanish (I may even add that as an option). If you're referring to the jump-gather behaviour, that is default RPG Maker...
  20. Xilefian

    Android RPG Maker MV Guide

    You seem to be missing all the important files. Did you accidentally delete the contents of src/main? I also see that you're in "project view", not "android view", it looks like Android Studio can't detect this as an Android project, which again suggests you've accidentally delete important...
Top