ro-table/Assets/Resources/Script/FrameWork/command/MonsterCountUserCommand.txt
2025-06-04 05:12:01 +08:00

12 lines
357 B
Plaintext

MonsterCountUserCommand = class("MonsterCountUserCommand", pm.SimpleCommand)
function MonsterCountUserCommand:execute(note)
local num = note.body.num;
if(note.name == ServiceEvent.FuBenCmdMonsterCountUserCmd)then
if(num>0)then
MsgManager.NoticeRaidMsgById(1900,num)
else
EventManager.Me():DispatchEvent(SystemMsgEvent.RaidRemove)
end
end
end