后端Lua
全部技术档案
TXT语法专家
极品表
TXT语法专家
可不可以在怪物掉落物品时修改物品的颜色
后端Lua
-- 金条使用函数 function stdmodefunc103(actor, item) local item_name = getiteminfo(actor, item, 7) -- 获取绑定金条数量 local bind_item_num = getbagitemcount(actor, item_name, 2) -- 获取非绑定金条数量 local nonbind_item_num = getbagitemcount(actor, item_
后端Lua
-- 金条 function stdmodefunc103(actor, item) local item_name = getiteminfo(actor, item, 7) local item_num = getbagitemcount(actor, item_name) if item_num >= 1 then setplaydef(actor, "N12", 1) item_103main(actor, item)
后端Lua
如何获取背包中金条 绑定和非绑定的数量
TXT语法专家
给我写一个996引擎的txt脚本,统计全服玩家剩余的元宝数量。
后端Lua
function tiaohuobi(actor,tag,huobiid,shuruid) local str = getconst(actor,'<$NPCINPUT('..shuruid..')>') str = '+'..str local value = getplaydef(tag,'u1') if huobiid*1 == 11 and str:sub(2,2) == '+' then value = value + string.
后端Lua
include("QuestDiary/4全局数据/1数据配置.lua") local t = DATA.fulihuishou function main(actor,p1,p2,p3) -- 页签 翻页逻辑 local page = 1 and tonumber(p3) or 1 local max_page = math.ceil(#t / 5) if p2 == "上" and page > 1 then page = page - 1
后端Lua
拍卖行货币在哪里调整 现在是金币 想改成元宝
前端Lua
怎么设计控件可穿透
后端Lua
拍卖行调整交易货币在哪里?
后端Lua
自动使用物品
TXT语法专家
怎么设置在线客服
TXT语法专家