- 积分
- 122
- 最后登录
- 2018-8-4
- 阅读权限
- 10
- 积分
- 122
- 回帖
- 3
- 精华
- 0
TA的每日心情 | 怒 2018-8-4 16:33 |
---|
签到天数: 2 天 [LV.1]初来乍到 新人上路
- 枫币
- 85
- 威望
- 8
- 贡献
- 13
- 在线时间
- 1 小时
- 注册时间
- 2018-8-3
|
開始
在MapleMonster.java最上面新增
[AppleScript] [color=rgb(51, 102, 153) !important]syntaxhighlighter_viewsource [color=rgb(51, 102, 153) !important]syntaxhighlighter_copycode
[color=white !important][color=white !important] ?
| private MapleMonsterStats overrideStats;
|
最下面新增(方便修改)
[AppleScript] [color=rgb(51, 102, 153) !important]syntaxhighlighter_viewsource [color=rgb(51, 102, 153) !important]syntaxhighlighter_copycode
[color=white !important][color=white !important] ?
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
| public void changestat() {
MapleMonsterStats newStats = new MapleMonsterStats();
if (stats.getHp() * 1000 < 2147483647) {
newStats.setHp(stats.getHp() * 1000);
} else {
newStats.setHp(2147483647);
}
setOverrideStats(newStats);
setHp(getMaxHp());
}
public void setOverrideStats(MapleMonsterStats overrideStats) {
this.overrideStats = overrideStats;
}
public long getMaxHp() {
if (overrideStats != null) {
return overrideStats.getHp();
}
return stats.getHp();
}
|
MapleMap.java裡找到-> public final void spawnMonster(final MapleMonster monster, final int spawnType) {
monster.setMap(this);
checkRemoveAfter(monster);
插入一段
[AppleScript] [color=rgb(51, 102, 153) !important]syntaxhighlighter_viewsource [color=rgb(51, 102, 153) !important]syntaxhighlighter_copycode
[color=white !important][color=white !important] ?
| if (channel == 3) {//自行更改你要的頻道
monster.changestat();
}
|
|
|