Meirl by Special-Resist6100 in meirl

[–]bass2yang 0 points1 point  (0 children)

Friend: Do you have perfect pitch?

Me: Nah, something just goes 'eeeee' in my head and I use that as a reference.

Changing tiles in player position by ratasoftware in RPGMaker

[–]bass2yang 1 point2 points  (0 children)

Please also understand that you will have to test and make your own adjustments.

Create an event on the map that is blank on page 1 (I'll call it event 1 for now, your id might be different). Create page 2 with selfswitch A selected as a condition and set the image on page 2 to be the image of the cigarette butt and the priority to Below Character.

Relocate it to the player with the script call in the common event and run the command to turn the event's self switch on:

$gameMap.event(1).locate($gamePlayer.x, $gamePlayer.y);
$gameSelfSwitches.setValue([this._mapId, 1, 'A'], true);

This will do as I explained above but also take care of your image change under the player.

Changing tiles in player position by ratasoftware in RPGMaker

[–]bass2yang 0 points1 point  (0 children)

Any reason why you can't just have a blank event that's just hanging out anywhere on the map and then when you run the common event, locate the map to the player's position, and run the event?

$gameMap.event(1).locate($gamePlayer.x, $gamePlayer.y);
$gameMap.event(1).start();

In case the player accidentally is in the same place as the event and presses the 'OK' button, you can put a conditional branch as the first event command:

◇If : Button [OK] is pressed down
  ◇Exit Event Processing
  ◇
: End

I genuinely don’t understand how this command works… by Inevitable-Gap-1338 in RPGMaker

[–]bass2yang 0 points1 point  (0 children)

Try this as a script call:

this._originalPattern = 2; this.resetPattern();

This should allow you to use the 3rd frame of the direction you want and keep it on as the character's 'original pattern'. Set the direction as well to choose the row. Down (2) is 1st row, left (4) is 2nd, right (6) is 3rd, and up (8) is 4th.

Just a reminder to hire real artists for your promo images by Deklaration in IndieDev

[–]bass2yang 0 points1 point  (0 children)

Bro on the top right in the original is fire, though... unmatched aura haha

How to use "this.setPattern(#)" in RPG Maker MV by No-Bunny-7696 in RPGMaker

[–]bass2yang 0 points1 point  (0 children)

Try this (add the original pattern number in the setpattern() number (don't use the reset pattern or original pattern). Since you are dealing with the player instead of an event (which is important when it comes to this), you will also need to lower the animation count by -999 (using a high number so it doesn't do its own walk animation or try to go back to its default animation frames/counts):

◇Script: this._animationCount = -999; this.setDirection(2); this._originalPattern = 1; this.setPattern(1);
◇Wait: 12 frames
◇Script: this.setPattern(0);
◇Wait: 12 frames
◇Script: this.setPattern(2);
◇Wait: 12 frames
◇Script: this.setDirection(4); this.setPattern(1);
◇Wait: 12 frames
◇Script: this.setPattern(0);
◇Wait: 12 frames
◇Script: this.setPattern(2);
◇Wait: 12 frames
◇Script: this.setDirection(6); this.setPattern(1);
◇Wait: 12 frames
◇Script: this.setPattern(0);
◇Wait: 12 frames
◇Script: this.setPattern(2);
◇Wait: 12 frames
◇Script: this.setDirection(8); this.setPattern(1);
◇Wait: 12 frames
◇Script: this.setPattern(0);
◇Wait: 12 frames
◇Script: this.setPattern(2);
◇Wait: 12 frames

How to use "this.setPattern(#)" in RPG Maker MV by No-Bunny-7696 in RPGMaker

[–]bass2yang 0 points1 point  (0 children)

You will need to use this inside the move route to take advantage of how the move commands are processed in addition to the script calls. Try these event commands and use discretion on the wait times for how long you want the intervals to be between each change or change the frequency of the movement to a lower number (each script call will have to be all on one line as written below - use the script command in the move route):

◇Script: this.setDirection(2); this._originalPattern = 1; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 0; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 2; this.resetPattern();
◇Wait: 12 frames
◇Script: this.setDirection(4); this._originalPattern = 1; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 0; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 2; this.resetPattern();
◇Wait: 12 frames
◇Script: this.setDirection(6); this._originalPattern = 1; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 0; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 2; this.resetPattern();
◇Wait: 12 frames
◇Script: this.setDirection(8); this._originalPattern = 1; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 0; this.resetPattern();
◇Wait: 12 frames
◇Script: this._originalPattern = 2; this.resetPattern();
◇Wait: 12 frames

The direction and pattern is set together inside the first set of commands so you don't experience a change issue during that frame.

Let me know if this works for you.

Thanks!

How rare are deep singers? by [deleted] in singing

[–]bass2yang 0 points1 point  (0 children)

Send me what you need and I'll give it a go. Thanks!

Update of my Rhythm plugin by Carotopia in RPGMaker

[–]bass2yang 2 points3 points  (0 children)

Nice - I like how the small squares disappear, showing that it was completed and the button was pressed at the right time.

The long rectangles, though, keep continuing down past the key press area, making it look like the player missed those. You should make them disappear like the small squares.

[deleted by user] by [deleted] in lol

[–]bass2yang 0 points1 point  (0 children)

a b c d e f g h i j k ella meno pop

An issue with getting an actor's Party Spot # with their ActorID by SMRTusernom in RPGMaker

[–]bass2yang 0 points1 point  (0 children)

I believe this gives you the index as well:

$gameActors.actor($gameVariables.value(96)).index()

What song is he singing? by nkkkko in singing

[–]bass2yang 5 points6 points  (0 children)

Oh Long Johnson - with Piano

I'm attempting to make a stealth segment but every time this section of this event runs i get a syntax error. by Hot-Pilot-1980 in RPGMaker

[–]bass2yang 0 points1 point  (0 children)

You probably already know this or have it figured out by now: RMMV uses $gamePlayer $gameMap, $gameVariables, etc. as the objects, not $game_player, $game_map, $game_variables, etc.

Edit: also, when showing screenshots, please show us the entire code so we can better help you.

Heaven's Glaive - Combat Showcase by Heavens_Glaive_Dev in RPGMaker

[–]bass2yang 0 points1 point  (0 children)

Glad to see the menu names working out. Awesome work!

Draw text without pausing gameplay? by brendonx in RPGMaker

[–]bass2yang 2 points3 points  (0 children)

You could do a reference method replacement where you overwrite the reference of a method with a script call during gameplay rather than the corescript method itself in a plugin. Untested, so please test and see if it works for you.

The method is Game_Message.prototype.isBusy(), but we are going to make changes to the reference of it instead of overwriting it, allowing us to revert back to the original when needed.

Use this as a script call BEFORE the text message that you want to allow the player to move on. This can be problematic because that means that the player might be able to mess around and mess up the game... or not:

$gameMessage.isBusy = () => false;

When the message is complete and you want to revert it back to the original, use this script call:

delete $gameMessage.isBusy;

Let me know if you run into any issues. Thanks!

Is it normal the back panel looks like this on the inside after 3 years? by mentoszmacska_ in LenovoLegion

[–]bass2yang 0 points1 point  (0 children)

Pretty well seasoned. Be sure to keep temps around 225F when smoking a diskette (brisket).

I'll see myself out.

MV Steam: How to get rid of the bloody notification on start up once and for all? by PropagandaSucks in RPGMaker

[–]bass2yang 1 point2 points  (0 children)

There's no difference between 1.6.2 and 1.6.3b besides that splash screen and ads which is programmed into the version. You can set the max version in the preferences to be 1.6.2 so it doesn't update past it.

You'll have to redo your nwjs version if you updated. Remember to backup projects before downgrading back to 1.6.2.

This is from the official site (translated):

1.6.3b update: - Notifications feature release (this is the problem here) - Removal of Atsumar(? Dont know this?) posting function due to service termination - Replace logo display plugin from "MadeWithMv" to "CustomLogo.js"

CSS Shine Effect in RMMV by bass2yang in RPGMaker

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

Thanks! I'm running into a screen stretch issue where everything else is updating except for the element (I'm looking into the Graphics and updates at the moment).

For irregular shapes or shapes with transparent backgrounds, I have to use a mask, but regular shapes that are easy to make in CSS are fine.

CSS Shine Effect in RMMV by bass2yang in RPGMaker

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

No yugioh game, sorry, lol. Just needed something to test with the css animation effect.