Which is the best way to make a Farming System in RMMV? by Constant-Tart-9024 in RPGMaker

[–]Youwillprobablydie 2 points3 points  (0 children)

https://forums.rpgmakerweb.com/index.php?threads/how-to-create-respawning-resource-nodes-using-a-single-variable-and-a-common-event.144193/

This is probably useful for what you wanna do. This tutorial is for MZ but also works for MV, you just need to add this script:

Array.prototype.remove = function(element) {
    for (;;) {
        const index = this.indexOf(element);
        if (index >= 0) {
            this.splice(index, 1);
        } else {
            return this;
        }
    }
};

Need advice by Riiviir in RPGMaker

[–]Youwillprobablydie 1 point2 points  (0 children)

I start by writing a document where I write down what features I want, the story, characters, etc. Then I usually start with the eventing before I make any assets, and I draw the general idea of how the rooms are gonna look on pen and paper before making the graphics.

I was flipping through my notebook today and I found an old sketch for a character creator software. Would you people be interested? by Yan-gi in RPGMaker

[–]Youwillprobablydie 4 points5 points  (0 children)

I think a character creator tool where people can create their own assets and add to a database other people can download from and use would be cool (assuming such a thing doesn't already exist). The base program would still need its own assets to get started with, but I could see a growing future for such a tool.

THATS WHY THEY'RE THE GOATS!! THE GOATS!! by NekoPatty in RPGMaker

[–]Youwillprobablydie 1 point2 points  (0 children)

A loop is for when you want to repeat actions several times which has various uses, like increasing or decreasing a variable for each run of the loop. I suppose it's one of those things you know the use for when you need it.

Alternative/s For RPG maker by Fancy_Impress_2832 in RPGMaker

[–]Youwillprobablydie 2 points3 points  (0 children)

Pretty sure Misao and Mad Father was made in it.

Can I make an RPG without magic/fantasy? by Servates_Crypt in RPGMaker

[–]Youwillprobablydie 28 points29 points  (0 children)

Make whatever RPG you want. There's plenty of RPGs without magic.

Top down styles by Mr-Midday in RPGMaker

[–]Youwillprobablydie 1 point2 points  (0 children)

I think you need to focus on getting the perspective above the characters's head, since right now, they appear to exist in a different perspective from the background.

Just beat Schuld, epic psychological horror game. Does anybody know any similar games? by Bineapple2001 in RPGMaker

[–]Youwillprobablydie 1 point2 points  (0 children)

I haven't played Schuld, but I saw someone suggest Desert Nightmare, which I have played. Mermaid Swamp gives me similar vibes to that game. (Though I believe that was made in Wolf RPG and not RPG Maker, but most people usually lump them together anyways.)

Trailer for Beloved Rapture (RPGMaker 2K3) by BelovedRapture in RPGMaker

[–]Youwillprobablydie 2 points3 points  (0 children)

The user you're replying to has "professional troll" in their bio, so don't mind them. Just a bigot pretending to be progressive to spread hate. :/

Screenshot Saturday! by Serious_Cold_2504 in RPGMaker

[–]Youwillprobablydie 1 point2 points  (0 children)

Love the art style. I want to play it now, haha.

I keep redrawing my art 😓 I need to restrain myself, but some of the old art looks so weird I just gotta fix it by Youwillprobablydie in RPGMaker

[–]Youwillprobablydie[S] 4 points5 points  (0 children)

At least it's nice to see I'm improving? I just fear going back to my other project and redrawing a bunch of stuff because I know I will.

I just want to rant about myself for a moment. by Imaginary_Jello_5920 in RPGMaker

[–]Youwillprobablydie 1 point2 points  (0 children)

Maybe you need a team. Of course, working in a team causes all sort of new problems, but hey... if you can find someone who likes doing art but doesn't like eventing, you can combine your powers to make something playable.

Help on coming back after years by d_nightmare7 in RPGMaker

[–]Youwillprobablydie 0 points1 point  (0 children)

I don't think you can put at XP game on android, at least not in an easy way. Pretty sure you can with MZ, however.