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

    Android RPG Maker MV Guide

    Could you please open up the build.gradle (Project: android) file? If you followed Step 2 then the Build Tools should be installed, so it's strange that you're getting that error. Also, could you please expand the android folder in that list so I can verify you've got everything in there...
  2. Xilefian

    Android RPG Maker MV Guide

    This could also be another case of you selecting the wrong folder to open, you absolutely must not ignore the list of files shown here: See that the "android" folder is selected, not "android_104", and see that app, gradle, .gitignore, build.gradle, gradle.properties, gradlew, gradlew.bat...
  3. Xilefian

    Need mathematical help involving squaring.

    moves = √speed Although that doesn't cover the +1 behaviour for speed > 1, it doesn't look like you'll have a clean formula.
  4. Xilefian

    Need Help. How do you bind a rotating picture to the map?

    Would you mind telling me how this has gone for you? If my solution works fine and solves all your problems then you can mark it as the best answer. I know that pictures anchored to the map is quite a highly requested thing, so it's very likely someone else would also want to know the answer to...
  5. Xilefian

    Android RPG Maker MV Guide

    From the stats I have access to, it's even more than "half of the devices", unfortunately - which makes the problem a high priority for me to hack a fix for, but I don't have the time or budget for such an expensive endeavour. I'm always looking for sponsors to help development, but right now...
  6. Xilefian

    Android RPG Maker MV Guide

    The old Crosswalk had some hacky fixes in to solve the problem. The problem is definitely not the method, if it was the method then I wouldn't be seeing the problem in other projects - even those unrelated to RPG Maker MV - and GPU developers across the planet wouldn't also complain about the...
  7. Xilefian

    Android RPG Maker MV Guide

    Sorry then, both those devices have the bad Mali GPUs, the tile-set problem is from the phone and I don't have the time at the moment to try and write a work-around case. If you can disable linear filtering, texture wrapping and mipmapping from inside RPG Maker MV (Javascript) then you can fix...
  8. Xilefian

    Android RPG Maker MV Guide

    What device is this on? In the future for people reporting problems, please tell me what device it is as well as the Android version number and what country the device is from, for example: Samsung Galaxy S8 Android 7.0 (China) This is because there are known issues with certain devices and I...
  9. Xilefian

    Need Help. How do you bind a rotating picture to the map?

    Pictures don't support being anchored to the map scroll, you will have to use Javascript to implement this kind of functionality. If you absolutely must avoid Plugins, then you can do the following event; In this example, the picture is anchored to the top-left of the map 128 pixels from the...
  10. Xilefian

    Android RPG Maker MV Guide

    You'll need to change the Java code a fair amount. It should be obvious where in the Java code the back-button logic is handled (look for onBackButtonPressed). You have a couple of options here, you can either send the "Esc" key to the runtime and let RPG Maker MV handle it (which gives you the...
  11. Xilefian

    Android RPG Maker MV Guide

    You need to open the extracted android_104.zip project attached to the first post in this thread. The folder you've tried to open is not an Android Studio project.
  12. Xilefian

    Android RPG Maker MV Guide

    Are you using any Plugins? This is not a normal error message and suggests that your phone's web browser is failing with Javascript or this is a bug in RPG Maker MV itself. It's far, far more likely to be a Plugin issue if you have any Plugins. HTML Image Elements are not a normal part of RPG...
  13. Xilefian

    Android RPG Maker MV Guide

    Did you remember to complete Step 2? This image shows the build tools installation part of Step 2. Make sure Android SDK Build-Tools is selected and installed. To re-open this downloader you need to click on Tools → Android → SDK Manager You need to be online to be able to synchronise the...
  14. Xilefian

    Android RPG Maker MV Guide

    Go ahead, but please link back to this thread and state that it is a translation of this guide by Xilefian. You can re-host the project download, but keep in mind that I do update it so your guide may become out of date after I update the project.
  15. Xilefian

    Is this a good plot idea?

    I was writing about this kind of plot on another game development forum a couple days ago. In games, you don't want to surprise the player at all. As soon as they get through the opening of your game, they will have set ideas of what type of game they are in, so if you suddenly change that...
  16. Xilefian

    Bug: Site home links to "rpgmakermv.com"

    Default theme links to "rpgmakermv.com", which is an expired domain. Clicking the RPGMAKERMV text, or the house icon, at the top of the forum will demonstrate this issue - as well as the house icon in the forum bread-crumbs.
  17. Xilefian

    Android RPG Maker MV Guide

    I don't think I understand what you're trying to do. Firebase's test system has audio disabled, you won't be able to hear anything at all through Firebase. If it doesn't crash, then it's working fine. Audio playback issues are related to device and formats supported. Here's all the audio...
  18. Xilefian

    Android RPG Maker MV Guide

    Do you have any Plugins in your project? Any Plugins that depend on files will be broken by the "Exclude unused files" export option in RPG Maker MV, that will cause file not found errors. If possible, could you provide a screenshot of where you see this crash message? If it's a "Stopped...
  19. Xilefian

    Android RPG Maker MV Guide

    Android 4.4 is definitely supported. Sounds like it's not detecting your www folder, did you put it in the correct location? It should be inside the app assets folder and inside the www folder should be index.html
  20. Xilefian

    Android RPG Maker MV Guide

    Sounds like I missed something when testing. I'll probably have to solve this by updating the code. The fix is to open the AndroidManifest.xml and inside the <activity> tag add the property: <activity android:launchMode="singleInstance">
Top