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

Project1

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

[有事请教] 请教关于角色的属性扩展类插件的设置

[复制链接]

Lv1.梦旅人

梦石
0
星屑
216
在线时间
31 小时
注册时间
2019-3-16
帖子
20
跳转到指定楼层
1
发表于 2019-4-19 23:45:01 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

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

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

x
是这样的,目前常见的这类插件,包括yep大佬的还有futokoro都能做到,但是他们扩展的数值参数,都不是自变量,而是一个和基础param关联的函数,如果我把这个参数做成自变量,怎么利用script来改变这个参数的数值?还有就是在script当中,主角队伍成员的名称是啥actor这种不起作用。新手很菜,求教育。
想做个era那样的rpg啊

Lv1.梦旅人

梦石
0
星屑
216
在线时间
31 小时
注册时间
2019-3-16
帖子
20
13
 楼主| 发表于 2019-4-21 19:25:23 | 只看该作者
tseyik 发表于 2019-4-21 16:44
你可參孝別人怎麼做
http://tm.lucky-duet.com/viewtopic.php?f=5&t=3265

谢了,这个做的人和我想的是类似的。
可是我太菜了,这么好的资源一直没找到233
想做个era那样的rpg啊
回复 支持 反对

使用道具 举报

Lv5.捕梦者

梦石
0
星屑
23073
在线时间
8648 小时
注册时间
2011-12-31
帖子
3367
12
发表于 2019-4-21 16:44:04 | 只看该作者
本帖最后由 tseyik 于 2019-4-21 20:16 编辑

你可參考別人怎麼做
http://tm.lucky-duet.com/viewtopic.php?f=5&t=3265

満腹、水分、睡眠ゲージを追加
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
216
在线时间
31 小时
注册时间
2019-3-16
帖子
20
11
 楼主| 发表于 2019-4-21 13:04:23 | 只看该作者
526396987 发表于 2019-4-20 14:15
不知道可不可以,如果不可以你试试$gameActor.actor(id).xparam[1]

两种
一种改变只靠开关和事件,不受状态装备啥的影响
一种只受状态影响……从下面这个动手?
Object.defineProperties(Game_BattlerBase.prototype, {
    // Hit Points
    hp: { get: function() { return this._hp; }, configurable: true },
    // Magic Points
    mp: { get: function() { return this._mp; }, configurable: true },
    // Tactical Points
    tp: { get: function() { return this._tp; }, configurable: true },
    // Maximum Hit Points
    mhp: { get: function() { return this.param(0); }, configurable: true },
    // Maximum Magic Points
    mmp: { get: function() { return this.param(1); }, configurable: true },
    // ATtacK power
    atk: { get: function() { return this.param(2); }, configurable: true },
    // DEFense power
    def: { get: function() { return this.param(3); }, configurable: true },
    // Magic ATtack power
    mat: { get: function() { return this.param(4); }, configurable: true },
    // Magic DeFense power
    mdf: { get: function() { return this.param(5); }, configurable: true },
    // AGIlity
    agi: { get: function() { return this.param(6); }, configurable: true },
    // LUcK
    luk: { get: function() { return this.param(7); }, configurable: true },
    // HIT rate
    hit: { get: function() { return this.xparam(0); }, configurable: true },
    // EVAsion rate
    eva: { get: function() { return this.xparam(1); }, configurable: true },
    // CRItical rate
    cri: { get: function() { return this.xparam(2); }, configurable: true },
    // Critical EVasion rate
    cev: { get: function() { return this.xparam(3); }, configurable: true },
    // Magic EVasion rate
    mev: { get: function() { return this.xparam(4); }, configurable: true },
    // Magic ReFlection rate
    mrf: { get: function() { return this.xparam(5); }, configurable: true },
    // CouNTer attack rate
    cnt: { get: function() { return this.xparam(6); }, configurable: true },
    // Hp ReGeneration rate
    hrg: { get: function() { return this.xparam(7); }, configurable: true },
    // Mp ReGeneration rate
    mrg: { get: function() { return this.xparam(8); }, configurable: true },
    // Tp ReGeneration rate
    trg: { get: function() { return this.xparam(9); }, configurable: true },
    // TarGet Rate
    tgr: { get: function() { return this.sparam(0); }, configurable: true },
    // GuaRD effect rate
    grd: { get: function() { return this.sparam(1); }, configurable: true },
    // RECovery effect rate
    rec: { get: function() { return this.sparam(2); }, configurable: true },
    // PHArmacology
    pha: { get: function() { return this.sparam(3); }, configurable: true },
    // Mp Cost Rate
    mcr: { get: function() { return this.sparam(4); }, configurable: true },
    // Tp Charge Rate
    tcr: { get: function() { return this.sparam(5); }, configurable: true },
    // Physical Damage Rate
    pdr: { get: function() { return this.sparam(6); }, configurable: true },
    // Magical Damage Rate
    mdr: { get: function() { return this.sparam(7); }, configurable: true },
    // Floor Damage Rate
    fdr: { get: function() { return this.sparam(8); }, configurable: true },
    // EXperience Rate
    exr: { get: function() { return this.sparam(9); }, configurable: true }
});
想做个era那样的rpg啊
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
216
在线时间
31 小时
注册时间
2019-3-16
帖子
20
10
 楼主| 发表于 2019-4-21 01:44:57 | 只看该作者
526396987 发表于 2019-4-20 14:15
不知道可不可以,如果不可以你试试$gameActor.actor(id).xparam[1]

唔,基本成了,但是插件用起来还是挺僵硬的。
用alert查看了一下,可以$gameActors.actor(id)._name调出来名字
断头鬼好恶心啊。如果,我想额外添加一个角色关联的自变量,是不是最好直接在Game_Actor的函数上直接动手?
现在用的插件是FTKR_CustomSimpleActorStatus.js 状态界面好处理一点,但是还是有种种微妙的地方……

点评

你改变量是要在什么情况下变化?添加状态发生变化?还是装备武器防具发生变化?然后角色关联的自变量得看你要关联什么了  发表于 2019-4-21 01:54
想做个era那样的rpg啊
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
216
在线时间
31 小时
注册时间
2019-3-16
帖子
20
9
 楼主| 发表于 2019-4-21 00:09:41 | 只看该作者
526396987 发表于 2019-4-20 14:15
不知道可不可以,如果不可以你试试$gameActor.actor(id).xparam[1]

$gameActor is not defined
我僵住了

点评

... $gameActors.actor(id)  发表于 2019-4-21 00:35
想做个era那样的rpg啊
回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
4478
在线时间
141 小时
注册时间
2018-1-22
帖子
137
8
发表于 2019-4-20 14:15:30 | 只看该作者
剑啸琴吟 发表于 2019-4-20 13:55
谢谢大佬
那对应的属性
$gameActor.actor(id).hit?

不知道可不可以,如果不可以你试试$gameActor.actor(id).xparam[1]
自分自身の神様になること
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
216
在线时间
31 小时
注册时间
2019-3-16
帖子
20
7
 楼主| 发表于 2019-4-20 13:55:51 | 只看该作者
526396987 发表于 2019-4-20 13:34
不知道能不能直接拿过来用,先调用吧
this._actor = actor;
然后再获取ID

谢谢大佬
那对应的属性
$gameActor.actor(id).hit?
想做个era那样的rpg啊
回复 支持 反对

使用道具 举报

Lv3.寻梦者

梦石
0
星屑
4478
在线时间
141 小时
注册时间
2018-1-22
帖子
137
6
发表于 2019-4-20 13:34:07 | 只看该作者
剑啸琴吟 发表于 2019-4-20 12:54
那格式是什么样的?actor1/actor(1)/actor 1?

不知道能不能直接拿过来用,先调用吧
this._actor = actor;
然后再获取ID
this._actor._actorId()
或者直接 $gameActor.actor(id)
自分自身の神様になること
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
216
在线时间
31 小时
注册时间
2019-3-16
帖子
20
5
 楼主| 发表于 2019-4-20 12:54:22 | 只看该作者
526396987 发表于 2019-4-20 12:44
感觉你列举的这些更像是用于系统的参数

不同的actor,获取他们的id,用id作为对象,这个已经在rpg_objec ...

那格式是什么样的?actor1/actor(1)/actor 1?
想做个era那样的rpg啊
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2025-1-11 16:49

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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