- 打卡等级:热心大叔
- 打卡总天数:94
- 打卡月天数:17
- 打卡总奖励:94
- 最近打卡:2025-01-18 01:28:20
|
- local ActionWeapon = EnumAction(0, "targetequip");
- local ActionCap = EnumAction(1, "targetequip");
- local ActionArmor = EnumAction(2, "targetequip");
- local ActionGlove = EnumAction(3, "targetequip");
- local ActionBoot = EnumAction(4, "targetequip");
- local ActionSash = EnumAction(5, "targetequip");
- local ActionRing = EnumAction(6, "targetequip");
- local ActionNecklace = EnumAction(7, "targetequip");
- local ActionDark = EnumAction(17, "targetequip"); --修改为暗器 by houzhifang
- local ActionRing2 = EnumAction(11, "targetequip");
- local ActionCharm = EnumAction(12, "targetequip");
- local ActionCharm2 = EnumAction(13, "targetequip");
- local ActionCuff = EnumAction(14, "targetequip");
- local ActionShoulder = EnumAction(15, "targetequip");
- local ActionDress = EnumAction(16, "targetequip");
- local ActionLONGWEN = EnumAction(9, "targetequip");
- -- 显示人身上的武器装备
- g_WEAPON:SetActionItem(ActionWeapon:GetID()); --武器
- g_CAP:SetActionItem(ActionCap:GetID()); --帽子
- g_ARMOR:SetActionItem(ActionArmor:GetID()); --盔甲
- g_CUFF:SetActionItem(ActionCuff:GetID()); --护腕
- g_BOOT:SetActionItem(ActionBoot:GetID()); --鞋
- g_SASH:SetActionItem(ActionSash:GetID()); --腰带
- g_RING:SetActionItem(ActionRing:GetID()); --戒子
- g_NECKLACE:SetActionItem(ActionNecklace:GetID()); --项链
- g_Dark:SetActionItem(ActionDark:GetID()); --坐骑
- g_Charm:SetActionItem(ActionCharm:GetID()); -- 护符
- g_Charm2:SetActionItem(ActionCharm2:GetID()); -- 护符2
- g_Shoulder:SetActionItem(ActionShoulder:GetID()); -- 护肩
- g_Glove:SetActionItem(ActionGlove:GetID()); -- 手套
- g_Ring2:SetActionItem(ActionRing2:GetID()); -- 戒指2
- g_FashionDress:SetActionItem(ActionDress:GetID()); -- 时装
- g_LONGWEN:SetActionItem(ActionLONGWEN:GetID()); --
复制代码
获取对方玩家的信息 |
|