27

回帖

3000

金币

1595

积分

积分
1595
发表于 2025-1-9 20:17:13 | 显示全部楼层 |阅读模式

马上注册,下载996引擎,与更多游戏开发者交流。

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

×
说明书上说

调用LUA时一般涉及到系统功能,比如某某排行榜需要做一些特殊的排序功能的脚本不太好计算的情况下调用一下,
不要写在如:杀怪触发及切换地图触发等经常调用的功能
我这样写对不对?算不算官方说的,不要写在经常调用的功能里?



QFunction-0.txt的内容如下


[@attack]
#IF
CHECKCURRTARGETRACE = 1
#ACT
lua_attgjcf
BREAK


LuaFunc-0.lua的内容如下



-----攻击怪物触发
function lua_attgjcf(actor)
    local mondx = getbaseinfo(actor,67)
   
    --人物对怪刀刀绿毒触发
    if ismon(mondx) and ismon(mondx) ~= 0 and getflagstatus(actor,88) == 1 and getbaseinfo(mondx,1) ~= "高级镖车" and getbaseinfo(mondx,1) ~= "终级镖车" then
        makeposion(mondx,0,10)
    end

    --灵魂冰冻触发
     if ismon(mondx) and ismon(mondx) ~= 0 and  getconst(actor,"<$USEITEMNAME[78]>") == "灵魂·[冰冻]" and  math.random(100) <= 95 then
            makeposion(mondx,12,2)
    end
   
    --灵魂冰冻触发
     if ismon(mondx) and ismon(mondx) ~= 0 and  getconst(actor,"<$USEITEMNAME[78]>") == "飞仙石·[冰冻]" and  math.random(100) <= 5 then
            makeposion(mondx,12,2)
    end
end







回复

使用道具 举报

157

回帖

9606

金币

5305

积分

CEO

积分
5305
发表于 5 天前 | 显示全部楼层
可以写,只不过不建议,耗时太高了
回复

使用道具 举报