This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$gamePlayer.followers().follower(0).direction() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @target MZ | |
* @plugindesc セーブ画面でオートセーブを無視する | |
* @author RPG Maker MZ Mentor | |
* @help NoAutoSaveInSaveScreen.js | |
* | |
* このプラグインは、セーブ画面でオートセーブを無視します。 | |
*/ | |
(() => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @target MZ | |
* @plugindesc フォロワーの衝突判定を完全に無効化 | |
* @author トリアコンタン MarkⅡ | |
* | |
* @help | |
* このプラグインは、フォロワーによる全ての衝突判定を無効にします。 | |
* Game_Followers.prototype.isSomeoneCollided メソッドをオーバーライドして、 | |
* 常に false を返すようにします。 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @plugindesc 所持済みアイテム購入禁止プラグイン | |
* @author ChatGPT | |
* @target MZ | |
* | |
* @param message | |
* @text 所持済みメッセージ | |
* @desc 既に所持しているアイテムを選択したときに表示されるメッセージ | |
* @default このアイテムはすでに所持しています。 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @plugindesc 天候に応じたスイッチの自動切り替え | |
* @author ChatGPT | |
* @target MZ | |
* | |
* @param Rain Switch | |
* @text 雨スイッチID | |
* @desc 雨のときにONになるスイッチのID | |
* @type switch | |
* @default 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$gameParty.members().forEach(a => a.setLastCommandSymbol('')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SceneManager._scene._mapNameWindow.open(); | |
SceneManager._scene._mapNameWindow._showCount = Infinity; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @plugindesc オプション画面のウィンドウの横幅を変更するプラグイン | |
* @author ChatGPT | |
* | |
* @param Window Width | |
* @desc オプション画面のウィンドウの横幅 | |
* @type number | |
* @default 400 | |
* | |
* @help |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$gameParty.members()[0].allIcons().map(i => `\\i[${i}]`).join('') || ' ' |
NewerOlder