Steamをインストール
ログイン
|
言語
简体中文(簡体字中国語)
繁體中文(繁体字中国語)
한국어 (韓国語)
ไทย (タイ語)
български (ブルガリア語)
Čeština(チェコ語)
Dansk (デンマーク語)
Deutsch (ドイツ語)
English (英語)
Español - España (スペイン語 - スペイン)
Español - Latinoamérica (スペイン語 - ラテンアメリカ)
Ελληνικά (ギリシャ語)
Français (フランス語)
Italiano (イタリア語)
Bahasa Indonesia(インドネシア語)
Magyar(ハンガリー語)
Nederlands (オランダ語)
Norsk (ノルウェー語)
Polski (ポーランド語)
Português(ポルトガル語-ポルトガル)
Português - Brasil (ポルトガル語 - ブラジル)
Română(ルーマニア語)
Русский (ロシア語)
Suomi (フィンランド語)
Svenska (スウェーデン語)
Türkçe (トルコ語)
Tiếng Việt (ベトナム語)
Українська (ウクライナ語)
翻訳の問題を報告
It is helpful if you can say when the error occurs, e.g. before the title screen, when you try to save, etc? In this case (from your screenshot) it seems the error happens on the map, possibly mid-event? My guess would be a script call error: double-check any Script commands in your project. =)
Otherwise it's probably a plugin issue. Try this:
- Go to Tools > Plugin Manager
- Shift-click (or Ctrl+A) to select all plugins in the list, then right-click > Turn OFF
- Save your project
- Test!
If the error does not appear after following these steps, it is a plugin issue. The problem may be:- Version mismatch: the plugin is written for a newer or older version of the base code than that of your project.
- The solution is typically to ensure all plugins in your project are updated to their latest versions; you can then update your project files, if necessary, to match your editor version. Relevant details here: https://steamcommunity.com/games/363890/announcements/detail/1694924880247085699
- Bad configuration: e.g. a typo in some code you have entered into a plugin parameter, notetag, damage formula, etc.
- To solve, check all places where you might have made a typo or scripting error.
- Plugin conflict: multiple plugins that make changes to similar parts of the game code, in a way that causes an error when they are active at the same time.
- One possibility is that your plugins are simply in the wrong order, e.g. Yanfly's plugins should be loaded in the order listed here: http://www.yanfly.moe/wiki/Category:Yanfly_Engine_Plugins
- Otherwise, try to turn on your plugins again, one-by-one or in small batches (saving your project each time before testing), to see when the error reappears. This may help to isolate the culprit(s), though it can take a lot of testing to correctly identify which plugins may be conflicting.
- Plugin error: there might be an error in the code of one or more plugins you're using. Much less likely unless you're the only one using those plugins.
- Solution: rewrite the plugin to remove the error.
- Malformed base code: very unlikely unless you've edited your project's base code files.
- Solution: follow the instructions in the announcement above to "refresh" your project's base code.
Otherwise my only suggestion is to start a new project. .-.Great day! Thank you for the prompt reply. The eror came when I called a script like this:
$gamePlayer.locate(player.walkstart.x,player.walkstart.y);
in a Set Movement Route on my Player. Is my script correct? My goal is for my Player to move to a specific X and Y coordinates of the map or an event. Kindly help me on this one please.
Locate will instantly transport a character to a specific point, e.g.