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. Essy

    What are you listening to right now?

    I see there's plenty of Fire Emblem fans and another AmaLee fan here.
  2. Essy

    Split Screen? (Aka. Multiple Scenes?)

    Unfortunately I don't know of an actual script for this. The idea shouldn't be too hard though so long as we can multi-thread in JS in RMMV. While we could make a custom scene that encapsulates all the behaviors you're looking for this is not the ideal solution. Instead we would want to make a...
  3. Essy

    That moment when you want to work on your game during spring break but have 3 school projects to...

    That moment when you want to work on your game during spring break but have 3 school projects to do. ;-;
  4. Essy

    RETRO Black and White RPG Games

    An old project idea of mine 'Tau' was going to use something along these lines, although the coloring was a story element as the 'Camera' was its own character. It wasn't entirely black and white though so I don't know if I can count it. Assuming an impending text wall so i'll leave it here for...
  5. Essy

    How do YOU make friends?

    That sounds like a wonderful idea.. ... following you here and there for-e-ver~ <3
  6. Essy

    Programing a Roulette wheel?

    Events: http://oi68.tinypic.com/35hn5t1.jpg http://oi64.tinypic.com/11c4eft.jpg In Action: http://oi65.tinypic.com/6xzsox.jpg After holding Enter (OK button) http://oi64.tinypic.com/23m2e6f.jpg So after interacting with an NPC A we can start up the event. The event begins spinning the wheel...
  7. Essy

    Programing a Roulette wheel?

    Depends on how complex you want it. The idea should be pretty simple. We have a wheel with N slots and an image also with N slots. We can initialize the position at a spot M and continuously make the following transformation for each 'sub-roation' of the wheel. M = (M+1) mod N If we were to use...
  8. Essy

    I need help with the name of my game.

    Could always go generic RPGy! "Quest for Nobility: Noble's Quest" or simply "A Noble Journey"
  9. Essy

    Is there a plugin or method to speed up NPC walking speed?

    You'll have to do it in set move route. Second event page -> Movement -> Set Movement Route Inside there you'll see "Script..." as the bottom right option . That's where you would set it. For completion's sake, this is because when you call "this" in the normal script call it's looking at the...
  10. Essy

    Is there a plugin or method to speed up NPC walking speed?

    this._moveSpeed = x Make a script call within the relevant move route. You can make it as humorously quick as you want. I do not suggest touching frequency though.
  11. Essy

    Crowdsourcing Site specifically for game developers?

    Okay, that provides context. I was having a hard time taking you seriously for a moment, but now I understand your background. It was just that most startups I encounter are the underlined who end up joining because they can't get hired due to lack of industry experience. But 'experienced...
  12. Essy

    Crowdsourcing Site specifically for game developers?

    Not to be 'that guy', but registering your company and the google play store should be one time fees. So that's a veeeery minor cost. And you could just host your website for free on Google Appengine. If a situation were to arise in which you would have to pay for appengine, then your product is...
  13. Essy

    When a game is too Complicated or too Simple

    Complicated in story or complicated in mechanics? When it comes to story you can have a good complex story but it required a lot of good 'experiences' to drag you along to stay invested. A good example is as @Cunechan said, Tsubasa Reservoir Chronicles. But typically these kind of stories work...
  14. Essy

    Customizable base/home, is it possible?

    I can't think of a nice way of doing it with eventing alone. You could place an event on every tile or just decoratable tiles, best in order of event id.. so in a hypothetical 2x2 map [event 001][event 002] [event 003][event 004] As long as the map isn't too large it shouldn't lag. Each of...
  15. Essy

    My guess would be a bad transparent tile was used. In this case it may be caused by using a...

    My guess would be a bad transparent tile was used. In this case it may be caused by using a spare transparent tile that was on a higher layer with bad passability. Rebuild that part of the map then copy and paste in the rest. Failing that make sure no autorun events are starting wrong/finishing...
  16. Essy

    Hi i`m Makio

    Nice to meet you. Also a fellow programmer here, though I listed myself as scripter as it's closer to what I'd actually be doing around here eventually. Hope you have a good time here. : )
  17. Essy

    Crowdsourcing Site specifically for game developers?

    Consider a psuedo-open source project on Github where anyone could make a pull request but only the owners can actually confirm it. Take that idea and apply it to the website. Instead of being able to see source code progress reports would be made. So you can then see a sort of developer...
  18. Essy

    How do you start a new Project

    Typically I have one or two core concepts, some ideas for major story line 'nodes.' Then I prepare the mechanics. Next I construct a story Tree. It might look something like this... Tim Decides to Go to The Store-> Tim Goes-> Store... Tim Doesn't Go-> Home... Tim Is Forced to...
  19. Essy

    It was actually a fantasy city. The issue was that I was working with 200x200 at first thinking...

    It was actually a fantasy city. The issue was that I was working with 200x200 at first thinking (I WANT THIS TO BE BIG.) Though I'm still satisfied with the 100x100 city I made. : )
  20. Essy

    Finally caved and decided to scale down a map to 25% of its original size. Am I the only one who...

    Finally caved and decided to scale down a map to 25% of its original size. Am I the only one who finds cities absolutely awful to make? :U
Top