qq飞车qq飞车手游戒指怎么用mt管理

当前位置:&&&&正文
找好玩手机游戏,上&
饥荒手机版状态显示修改 手机版mod移植
饥荒数据库为您提供饥荒物品代码、物品属性介绍、物品的合成和获取方法,快来一起了解下吧!
点击查看>:
状态显示mod对于玩家是个极其便利的模组,今天小编跟大家分享下手机版饥荒移植状态显示mod的教程,希望能对玩家们有所帮助。
首先玩家要在手机里安装mt管理器2.0,百度搜索下就有,然后使用mt管理器按照下面教程操作:
一.mt管理器打开储存盘/android/obb/com.kleientertainment.doNotStarvePocket/main.19.com.kleientertainment.doNotStarvePocket.obb文件,打开方式选zip查看
打开scripts/widgets/badge.lua用XML编辑
1.找到self:SetScale(1,1,1)
替换为self:SetScale(0.9,0.9,0.9)
嫌大可以全改0.8或者更小
local usedLanguage = TheSim:GetUsedLanguage()
if usedLanguage == &korean& or usedLanguage == &simplified_chinese& or usedLanguage == &traditional_chinese& or usedLanguage == &japanese& then
self.num = self:AddChild(Text(NUMBERFONT, 33))
self.num = self:AddChild(Text(BODYTEXTFONT, 33))
self.num:SetHAlign(ANCHOR_MIDDLE)
self.num:SetPosition(5, 0, 0)
self.num:Hide()
self.num = self:AddChild(Text(BODYTEXTFONT, 28))
self.num:SetHAlign(ANCHOR_MIDDLE)
self.num:SetScale(1,.8,1)
self.num:SetPosition(0, -40.5, 0)
self.num:Show()
以上两步是修改字体大小,可改可不改,也可以根据自己的喜好调整。
function Badge:OnGainFocus()
Badge._base.OnGainFocus(self)
self.num:Show()
function Badge:OnLoseFocus()
Badge._base.OnLoseFocus(self)
self.num:Hide()
--function Badge:OnGainFocus()
-- Badge._base.OnGainFocus(self)
-- self.num:Show()
--function Badge:OnLoseFocus()
-- Badge._base.OnLoseFocus(self)
-- self.num:Hide()
或直接删除
4.最后的return Badge
function Badge:SetTemperature(val)
self.num:SetString(&温度:&..tostring(math.ceil(val/2)))
function Badge:SetNaughty(val, max)
self.num:SetString(tostring(val)..&/&..tostring(max))
return Badge
退出保存,更新选是。
二.打开DLC0001/scripts/components/kramped.lua
1.文首插入
local naughtyness = 0
local limit = 0
改完记得换行
self.actions = 0
self.threshold = nil
self.actions = 0
self.threshold = 30
naughtyness = self.actions --mod
limit = self.threshold --mod
有些语录后面的--mod代表数显mod加入的内容,方便你们学习跟修改
function Kramped:OnLoad(data)
self.actions = data.actions or self.actions
self.threshold = data.threshold or self.threshold
function Kramped:OnLoad(data)
self.actions = data.actions or self.actions
self.threshold = data.threshold or self.threshold
naughtyness = self.actions --mod
limit = self.threshold --mod
function Kramped:OnUpdate(dt)
if self.actions & 0 then
self.timetodecay = self.timetodecay - dt
if self.timetodecay & 0 then
self.timetodecay = TUNING.KRAMPUS_NAUGHTINESS_DECAY_PERIOD
self.actions = self.actions - 1
function Kramped:OnUpdate(dt)
if self.actions & 0 then
self.timetodecay = self.timetodecay - dt
if self.timetodecay & 0 then
self.timetodecay = TUNING.KRAMPUS_NAUGHTINESS_DECAY_PERIOD
self.actions = self.actions - 1
naughtyness = self.actions --mod
self:DoDelta() --mod
function Kramped:OnNaughtyAction(how_naughty)
if TUNING.KRAMPUS_INCREASE_RAMP & 1 or TUNING.KRAMPUS_THRESHOLD_VARIANCE & 1 then return end
if self.threshold == 30 then
self.threshold = TUNING.KRAMPUS_THRESHOLD + math.random(TUNING.KRAMPUS_THRESHOLD_VARIANCE)
self.actions = self.actions + (how_naughty or 1)
self.timetodecay = TUNING.KRAMPUS_NAUGHTINESS_DECAY_PERIOD
if self.actions &= self.threshold and self.threshold & 0 then
local day = GetClock().numcycles
local num_krampii = 1
self.threshold = TUNING.KRAMPUS_THRESHOLD + math.random(TUNING.KRAMPUS_THRESHOLD_VARIANCE)
self.actions = 0
if day & TUNING.KRAMPUS_INCREASE_LVL1 then
num_krampii = num_krampii + math.random(TUNING.KRAMPUS_INCREASE_RAMP)
elseif day & TUNING.KRAMPUS_INCREASE_LVL2 then
num_krampii = num_krampii + 1 + math.random(TUNING.KRAMPUS_INCREASE_RAMP)
for k = 1, num_krampii do
self:MakeAKrampus()
self.inst:DoTaskInTime(1 + math.random()*2, function()
local snd = CreateEntity()
snd.entity:AddTransform()
snd.entity:AddSoundEmitter()
snd.persists = false
local theta = math.random() * 2 * PI
local radius = 15
local offset = Vector3(self.inst.Transform:GetWorldPosition()) + Vector3(radius * math.cos( theta ), 0, -radius * math.sin( theta ))
snd.Transform:SetPosition(offset.x,offset.y,offset.z)
local left = self.threshold - self.actions
if left & 5 then
snd.SoundEmitter:PlaySound(&dontstarve/creatures/krampus/beenbad_lvl3&)
elseif left & 15 then
snd.SoundEmitter:PlaySound(&dontstarve/creatures/krampus/beenbad_lvl2&)
elseif left & 20 then
snd.SoundEmitter:PlaySound(&dontstarve/creatures/krampus/beenbad_lvl1&)
snd:Remove()
function Kramped:OnNaughtyAction(how_naughty)
if TUNING.KRAMPUS_INCREASE_RAMP & 1 or TUNING.KRAMPUS_THRESHOLD_VARIANCE & 1 then return end
if self.threshold == 30 then
self.threshold = TUNING.KRAMPUS_THRESHOLD + math.random(TUNING.KRAMPUS_THRESHOLD_VARIANCE)
self.actions = self.actions + (how_naughty or 1)
self.timetodecay = TUNING.KRAMPUS_NAUGHTINESS_DECAY_PERIOD
naughtyness = self.actions --mod
if self.actions &= self.threshold and self.threshold & 0 then
local day = GetClock().numcycles
local num_krampii = 1
self.threshold = TUNING.KRAMPUS_THRESHOLD + math.random(TUNING.KRAMPUS_THRESHOLD_VARIANCE)
self.actions = 0
limit = self.threshold --mod
naughtyness = self.actions --mod
if day & TUNING.KRAMPUS_INCREASE_LVL1 then
num_krampii = num_krampii + math.random(TUNING.KRAMPUS_INCREASE_RAMP)
elseif day & TUNING.KRAMPUS_INCREASE_LVL2 then
num_krampii = num_krampii + 1 + math.random(TUNING.KRAMPUS_INCREASE_RAMP)
for k = 1, num_krampii do
self:MakeAKrampus()
self.inst:DoTaskInTime(1 + math.random()*2, function()
local snd = CreateEntity()
snd.entity:AddTransform()
snd.entity:AddSoundEmitter()
snd.persists = false
local theta = math.random() * 2 * PI
local radius = 15
local offset = Vector3(self.inst.Transform:GetWorldPosition()) + Vector3(radius * math.cos( theta ), 0, -radius * math.sin( theta ))
snd.Transform:SetPosition(offset.x,offset.y,offset.z)
local left = self.threshold - self.actions
if left & 5 then
snd.SoundEmitter:PlaySound(&dontstarve/creatures/krampus/beenbad_lvl3&)
elseif left & 15 then
snd.SoundEmitter:PlaySound(&dontstarve/creatures/krampus/beenbad_lvl2&)
elseif left & 20 then
snd.SoundEmitter:PlaySound(&dontstarve/creatures/krampus/beenbad_lvl1&)
snd:Remove()
self:DoDelta() --mod
6.文尾return Kramped前一行
function Kramped:GetNaughtyness()
return naughtyness
function Kramped:GetLimit()
return limit
function Kramped:DoDelta()
self.inst:PushEvent(&naughtydelta&)
退出保存更新选是.
三.打开DLC0001/scripts/widgets/statusdisplays.lua
1.找到local MoistureMeter = require &widgets/moisturemeter&
后面插入一行
local Badge = require &widgets/badge&
local kramped = require &components/kramped&
local NaughtyBadge = Class(Badge, function(self, owner)
Badge._ctor(self, &naughty&, owner)
local TemperatureBadge = Class(Badge, function(self, owner)
Badge._ctor(self, &temperature&, owner)
2.找到self.heart:SetPercent(self.owner.components.health:GetPercent(), self.owner.components.health.maxhealth, self.owner.components.health:GetPenaltyPercent())
后面插入一行
self.naughty = self:AddChild(NaughtyBadge(owner))
self.naughty:SetPosition(-110,15,0)
self.naughty:SetNaughty(self.owner.components.kramped:GetNaughtyness(), self.owner.components.kramped:GetLimit())
self.temperature = self:AddChild(TemperatureBadge(owner))
self.temperature:SetPosition(30,15,0)
self.temperature:SetTemperature(self.owner.components.temperature:GetCurrent())
if GetWorld() and GetWorld():IsCave() then
self.brain:SetPosition(30, -0,0)
self.stomach:SetPosition(-110, -0,0)
self.heart:SetPosition(-40, -0,0)
self.moisturemeter:SetPosition(30, -70,0)
if GetWorld() and GetWorld():IsCave() then
self.brain:SetPosition(30, -40,0)
self.stomach:SetPosition(-110, -40,0)
self.heart:SetPosition(-40, -70,0)
self.moisturemeter:SetPosition(-40, 0,0)
这里是修改进入洞穴后几个槽的位置,同样是可改可不改,而且我改的也不好,位置有点不对,建议自己调整
self.inst:ListenForEvent(&sanitydelta&, function(inst, data) self:SanityDelta(data) end, self.owner)
后面插入一行
self.inst:ListenForEvent(&temperaturedelta&, function(inst, data) self.temperature:SetTemperature(self.owner.components.temperature:GetCurrent()) end, self.owner)
self.inst:ListenForEvent(&naughtydelta&, function(inst) self.naughty:SetNaughty(self.owner.components.kramped.GetNaughtyness(), self.owner.components.kramped.GetLimit()) end, self.owner)
退出保存更新,进入游戏数据显示即修改完成。
ps:修改还是有风险的,如何不成功有可能损坏数据包,当进入游戏后,系统会提示玩家在重新下载数据包,所以在试之前建议先备份下数据包。
玩家聚焦:
关注专区,掌握饥荒最新信息,还有强大攻略库、实用工具!
更多精彩攻略,请关注4399专区,或者在百度上搜索&4399饥荒,找到我们的专区,即可在第一时间获得饥荒的最新相关内容。
热门游戏推荐
热门关键字
热门游戏专区
扫描二维码,关注4399手游微信<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="4199
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
不知道取什么昵称的我
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="9974
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="0875
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
音浅~暮光苍月
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="3350
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
Darker乀疯狂
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="9166
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
一线之隔°
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="8
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
用户对 QQ 的评论
装不成功,下好几次了
qq新版怎么把群里的聊天记录导出来?
腾讯QQ卸载
不是所有牛奶都叫特伦苏
1314520wtc
为什么我的手机下载了QQ,却打不开?
????御?天????
半夜查号???这么牛不用玩吗还是机器人
破壊神よりルース
ABDUGENI_1341
根本打不开。
亲,想发表评论请下载哦~
我们的产品
客服邮箱:
微博/微信合作QQ:
网游玩家客服QQ:
24小时举报电话号码:
广告合作QQ:
游戏合作QQ:
帮助与支持
北京掌汇天下科技有限公司 版权所有
京公网安备39号|
京ICP备号-1
抵制不良游戏 拒绝盗版游戏 注意自身保护 谨防受骗上当 适度游戏益脑 沉迷游戏伤身 合理安排时间 享受健康生活
-提供安卓手机软件、游戏资源下载,做最贴心的Android手机软件应用平台!免费教学群:荒野终结者、飞车等.lua脚本破解【mt管理器吧】_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0可签7级以上的吧50个
本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:17,687贴子:
免费教学群:荒野终结者、飞车等.lua脚本破解
服务器-华为云年中钜惠,注册抽免费云服务器,高额代金券,单人成团低价抢热销云产品;云服务器,数据库,安全防护,大数据等多种云产品全场低至2折,更有精彩好礼送不停!
函数都是封装的吧?
本群最新教程
以后会有陆续更新
视频来自:
只是建立个 交流的平台 让大家共同学习
拜托那些什么 java
php c++ 大佬不要喷我说我不会写打码了 我要会写代码 我跑着跟你ob?
自顶一下 后续教学视频 正在录制 想学习就加入我们吧
重申一下 :我们是gg igg破解交流群 不是脚本群!!不是求破群!!难道真的是世风日下?人人都只想着玩现成的?先不说稳不稳定 万一wg作者给你加点后门锁机 你知道么??大家进群学习我都欢迎,搞事的倒卖的 小号 进群就问 有没有XXX? 稳不稳定? 抱歉! 没有! !!虽然群主和管理也会不定期 找一些脚本给大家用,但我们还是以交流学习为主要目的的 , 要不楼主干嘛不弄个收费的脚本群???
最新录制 gg修改器视频 依然是声音低沉性感的小智 错了、是小丰讲师加群免费交流 学习 获取教程最新动态资讯视频来自:
300人啦,庆祝一下
自顶一下,听说今天更新了有没有加密脚本来群里挑战一下,让我欣赏欣赏
大家过年好呀!过年期间,加入我们有 lua的教程和工具相送哦
dd过年好!
dd 过完年qun教程陆续更新
其实摄像机还有 Z 轴,不信你改一改 +8 处的值。你再改一改 +C +10 ... 的值,发现摄像机还有观察的角度,专业点叫 pitch, yaw, roll 翻译为俯仰角、偏航角、翻滚角。
shiyou luohuazhi
群号怎么搜不到
楼主,请问飞车数据保护怎么办。
贴吧热议榜
使用签名档&&
保存至快速回贴<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="4199
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
不知道取什么昵称的我
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="9974
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="0875
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
音浅~暮光苍月
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="3350
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
Darker乀疯狂
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="9166
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
一线之隔°
<img src="http://static.yingyonghui.com/resource/www/static/images/chakan.png" alt="8
<img src="http://static.yingyonghui.com/resource/www/static/images/shoucang.png" alt="
用户对 QQ 的评论
装不成功,下好几次了
qq新版怎么把群里的聊天记录导出来?
腾讯QQ卸载
不是所有牛奶都叫特伦苏
1314520wtc
为什么我的手机下载了QQ,却打不开?
????御?天????
半夜查号???这么牛不用玩吗还是机器人
破壊神よりルース
ABDUGENI_1341
根本打不开。
亲,想发表评论请下载哦~
我们的产品
客服邮箱:
微博/微信合作QQ:
网游玩家客服QQ:
24小时举报电话号码:
广告合作QQ:
游戏合作QQ:
帮助与支持
北京掌汇天下科技有限公司 版权所有
京公网安备39号|
京ICP备号-1
抵制不良游戏 拒绝盗版游戏 注意自身保护 谨防受骗上当 适度游戏益脑 沉迷游戏伤身 合理安排时间 享受健康生活
-提供安卓手机软件、游戏资源下载,做最贴心的Android手机软件应用平台!}

我要回帖

更多关于 qq飞车手游戒指怎么用 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信