求助哪位大神可以帮忙修改,红包感谢!
我想把首爆这里 给予元宝改成给予指定叠加道具(RMB券等),数量根据设定的即可。有可以改的联系Q:1213605888
--首爆功能物品添加方法。
--name 装备名字。
--price 奖励金额。
{name="星王战盔",price=200},
{name="星王法冠",price=200},
--首爆方法显示
function Show_Bao(ActName,g_item)
--检测新区功能
checkNewSever()
local HumVar = ActName:getGameGold() --获取元宝变量值
if s.share.getVal_G(Get_G) <=Get_D then --计算开区时间
for i,k in pairs(ShouBao_item) do
if g_item == ShouBao_item.name and s.share.checkListTextEx(file_S.."ItemName.txt",ShouBao_item.name, 0,"Force") == 0 then
s.share.addTextListEx(file_S.."ItemName.txt",g_item, 1, 0,"Force")
HumVar = HumVar + ShouBao_item.price --计算获得货币总额
ActName:setGameGold(HumVar)
ActName:sendMsg(1,"[货币提示]:元宝+"..ShouBao_item.price..".当前元宝:"..HumVar.."!", 215, 0)
ActName:sendMsg(0,"★限时奖励]恭喜:【"..ActName:getCharName().."】第一个打到【"..g_item.."】,获得【"..ShouBao_item.price.."】元宝!!", -1, -1)
ActName:sendCenterMsg(251,0,"★限时奖励]恭喜:【"..ActName:getCharName().."】第一个打到【"..g_item.."】,获得【"..ShouBao_item.price.."】元宝!!",1, 2, 3)
FileFunc(ActName:getCharName(),i) --调用文本方法
end
|