设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 2637|回复: 12
打印 上一主题 下一主题

[有事请教] 地圖顯示變量X?

[复制链接]

Lv2.观梦者

梦石
0
星屑
772
在线时间
95 小时
注册时间
2017-9-28
帖子
29
跳转到指定楼层
1
发表于 2018-3-6 22:31:54 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
請問一下各位大佬 有什麼指令可以讓地圖呈現出物品的數量呢?

Lv2.观梦者

梦石
0
星屑
772
在线时间
95 小时
注册时间
2017-9-28
帖子
29
7
 楼主| 发表于 2018-3-7 20:57:37 | 只看该作者

谢谢各位大佬帮忙,小的发现用MOG_VariableHud可以完美解决这问题

评分

参与人数 1+1 收起 理由
2256538860 + 1 塞糖

查看全部评分

回复 支持 反对

使用道具 举报

Lv5.捕梦者

梦石
0
星屑
23073
在线时间
8648 小时
注册时间
2011-12-31
帖子
3367
6
发表于 2018-3-7 08:55:43 | 只看该作者
本帖最后由 tseyik 于 2018-3-7 10:13 编辑

http://ktnhmv.jugem.jp/?eid=21
看不看得明?
マップ上に常に情報ウィンドウを表示する(地圖上常駐窗口)
InfoWindow.zip (1005 Bytes, 下载次数: 77)
以下是中文化
JAVASCRIPT 代码复制
  1. //=============================================================================
  2. // InfoWindow.js
  3. //=============================================================================
  4.  
  5. /*:
  6.  * @plugindesc 將信息顯示窗口添加屏幕的插件
  7.  * @author Me
  8.  *
  9.  * @help 信息顯示窗口添加屏幕。
  10.  *
  11.  */
  12.  
  13. (function() {
  14.  
  15.         // 宣告窗口添加屏幕
  16.         var Scene_map_start = Scene_Map.prototype.start;
  17.         Scene_Map.prototype.start = function() {
  18.                 Scene_map_start.call(this);
  19.             this._InfoWindow = new Window_Info();
  20.             this.addWindow(this._InfoWindow);
  21.         };
  22.     var _Scene_Map_update = Scene_Map.prototype.update;
  23.     Scene_Map.prototype.update = function() {
  24.         _Scene_Map_update.call(this);
  25.         this._InfoWindow.setText();
  26.     };
  27.  
  28.         // 作成指令窗口。
  29.         function Window_Info() {
  30.             this.initialize.apply(this, arguments);
  31.         }
  32.  
  33.         Window_Info.prototype = Object.create(Window_Base.prototype);
  34.         Window_Info.prototype.constructor = Window_Info;
  35.         Window_Info.prototype.initialize = function() {
  36.                 var x = 20;
  37.                 var y = 20;
  38.             var width = 180;
  39.             var height = 108;
  40.             Window_Base.prototype.initialize.call(this, x, y, width, height);
  41.         };
  42.  
  43.         Window_Info.prototype.setText = function(str) {
  44.                 this._text = str;
  45.                 this.refresh();
  46.         };
  47.  
  48.         // 窗口的内容
  49.         Window_Info.prototype.refresh = function() {
  50.             this.contents.clear();
  51.                 this.changeTextColor(this.textColor(16));
  52.         this.drawIcon(210, 1, 1);
  53.                 this.drawText("拾到的宝箱",40, 1);
  54.                 this.resetTextColor();
  55.                 this.drawText($gameVariables.value(2) + " 個",0,this.lineHeight());
  56.         };
  57.  
  58.         // 文字大小
  59.         Window_Info.prototype.standardFontSize = function() {
  60.             return 20;
  61.     };
  62.         // 視窗的透明度
  63.         Window_Info.prototype.standardBackOpacity = function() {
  64.             return 255;
  65.         };
  66.     // 視窗的留白
  67.         Window_Info.prototype.standardPadding = function() {
  68.             return 18;
  69.         };
  70.         // 視窗的色調
  71.         Window_Info.prototype.updateTone = function() {
  72.             this.setTone(64, 0, 128);
  73.         };
  74.  
  75. })();

点评

沒有  发表于 2018-3-7 16:19
大佬他有true或false的关闭视窗设定吗?  发表于 2018-3-7 11:58
網頁下方還有些使用上的変化  发表于 2018-3-7 10:17
我發覺附載的js沒了,我一會發上來  发表于 2018-3-7 10:07
謝謝大大我在自行研究  发表于 2018-3-7 09:57
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
772
在线时间
95 小时
注册时间
2017-9-28
帖子
29
5
 楼主| 发表于 2018-3-6 23:50:11 | 只看该作者
ekmomo 发表于 2018-3-6 23:11
不好意思繁体字我看错了,看成是显示事件数量……
物品数量的话
简单方法$gameParty._items[n];


对不起大佬地图上还是显示不出指定物品的数量
回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
3424
在线时间
461 小时
注册时间
2013-12-7
帖子
333
4
发表于 2018-3-6 23:11:27 | 只看该作者
本帖最后由 ekmomo 于 2018-3-6 23:15 编辑

不好意思繁体字我看错了,看成是显示事件数量……
物品数量的话
简单方法$gameParty._items[n];
MV自带方法$gameParty.numItems($dataItems[n]);//n是物品id
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
772
在线时间
95 小时
注册时间
2017-9-28
帖子
29
3
 楼主| 发表于 2018-3-6 22:59:04 | 只看该作者
ekmomo 发表于 2018-3-6 22:51
$gameMap._events.length - 1

謝謝大老 不過最後面的數字是物品的ID嗎 怎麼顯示不出來
回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
3424
在线时间
461 小时
注册时间
2013-12-7
帖子
333
2
发表于 2018-3-6 22:51:13 | 只看该作者
$gameMap._events.length - 1
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2025-1-9 06:08

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表