ro-table/Asstes/Resources/Script/FrameWork/command/PlayerTeamInfoCommand.txt
2025-06-04 05:02:57 +08:00

11 lines
326 B
Plaintext

PlayerTeamInfoCommand = class("PlayerTeamInfoCommand", pm.SimpleCommand)
function PlayerTeamInfoCommand:execute(note)
if(note.body)then
local playerid = note.body.charid;
local teamid = note.body.teamid;
if(playerid and teamid)then
FunctionPlayerTip.Me():UpdateInviteMemberFuncState(playerid, teamid)
end
end
end