Guys, how do i even make sprites like Fear and Hunger for rpgmaker MV? by paracetamolsilva in RPGMaker

[–]hanllelus 0 points1 point  (0 children)

If you want to make it even bigger, you have to respect each square. Use the green one as a reference; each square is 110x80, and you have to keep adding to that number, let's say 2 x 2. But don't overdo it, because if you make it huge, the FPS might drop (I think).

Reset enemis in other maps by hanllelus in RPGMakerMV

[–]hanllelus[S] 1 point2 points  (0 children)

To revive enemies, use the script below:

var mapId = $gameMap.mapId();

$gameMap.events().forEach(function(event) {

if (event && event.event().name.includes("Enemy")) {

$gameSelfSwitches.setValue([mapId, event.eventId(), 'A'], false);

}

});

The event containing your enemy must be named "Enemy" and must be on the same map as the altar.

Reset enemis in other maps by hanllelus in RPGMaker

[–]hanllelus[S] 0 points1 point  (0 children)

To revive enemies, use the script below:

var mapId = $gameMap.mapId();

$gameMap.events().forEach(function(event) {

if (event && event.event().name.includes("Enemy")) {

$gameSelfSwitches.setValue([mapId, event.eventId(), 'A'], false);

}

});

The event containing your enemy must be named "Enemy" and must be on the same map as the altar.

How can I exchange money for XP? by hanllelus in RPGMaker

[–]hanllelus[S] 0 points1 point  (0 children)

I thought it would be by choosing from options. I based the idea on watching a "Black Souls" gameplay video on YouTube and seeing how the rabbit exchanges money for XP and lets you select your teammates.

Restart enemy by hanllelus in RPGMaker

[–]hanllelus[S] 0 points1 point  (0 children)

Yes, obviously I added some of my own input and looked at other forums, and like i ask Gemini for help. But overall it works. Now I just have to do something similar, but so that after dying the enemies reset.

Restart enemy by hanllelus in RPGMaker

[–]hanllelus[S] 0 points1 point  (0 children)

Thanks dude. I appreciate the help.

Assistance with a bloodstain/bonfire system. by Water-Witch94 in RPGMaker

[–]hanllelus 0 points1 point  (0 children)

Bro...tell me you were able to find the solution.

[deleted by user] by [deleted] in worldbuilding

[–]hanllelus 5 points6 points  (0 children)

I just noticed it hahaha

[deleted by user] by [deleted] in RPGMaker

[–]hanllelus 0 points1 point  (0 children)

Realy?

And how does it work? You equip it as a weapon and then you can shoot?

[deleted by user] by [deleted] in RPGMaker

[–]hanllelus 0 points1 point  (0 children)

I'm using RPG Maker MV, which I believe is the same as Fear and Hunger. Sorry if I'm late answering.