找回密码
 register

QQ登录

只需一步,快速开始

查看: 68|回复: 0

设置宠物快乐度 LuaFnSetPetHappiness

[复制链接]

设置宠物快乐度 LuaFnSetPetHappiness

[复制链接]
  • 打卡等级:热心大叔
  • 打卡总天数:94
  • 打卡月天数:17
  • 打卡总奖励:94
  • 最近打卡:2025-01-18 01:28:20
Waylee

主题

0

回帖

1万

积分

仙帝

积分
12360
Waylee 2022-11-5 03:53 | 显示全部楼层 |阅读模式

马上注册,查看网站隐藏内容!!

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

×
注册函数:LuaFnSetPetHappiness

参数说明:sceneId(场景编号),selfId(调用者ID),petGUID_H(宠物GUID高位),petGUID_L(宠物GUID低位),happiness(快乐度)

功能说明:设置宠物快乐度

示例说明:
案例脚本:M:\武侠世界醉江湖\xwxsj\Public\Data\Script\event\petskill\petcommon.lua
function x335000_IncPetHappiness( sceneId, selfId, value )
        if value <= 0 then
                return 0
        end

        petGUID_H = LuaFnGetHighSectionOfTargetPetGuid( sceneId, selfId )
        petGUID_L = LuaFnGetLowSectionOfTargetPetGuid( sceneId, selfId )

        value = value + LuaFnGetPetHappiness( sceneId, selfId, petGUID_H, petGUID_L )
        MaxHappiness = 100

        if value > MaxHappiness then
                value = MaxHappiness
        end

        LuaFnSetPetHappiness( sceneId, selfId, petGUID_H, petGUID_L, value )

        local ObjId = LuaFnGetPetObjIdByGUID( sceneId, selfId, petGUID_H, petGUID_L )
        if ObjId ~= -1 then
                LuaFnSendSpecificImpactToUnit(sceneId, selfId, selfId, ObjId, 24, 0)
        end

        return 1
end


您需要登录后才可以回帖 登录 | register

本版积分规则

雪舞知识库 | 浙ICP备15015590号-1 | 萌ICP备20232229号|浙公网安备33048102000118号 |天天打卡

GMT+8, 2025-1-19 13:10 , Processed in 0.099210 second(s), 10 queries , Redis On.

Powered by XueWu Licensed

Copyright © Tencent Cloud.

快速回复 返回顶部 返回列表