|
@@ -4,7 +4,7 @@ using System.Text.Json;
|
|
|
namespace ET.Server
|
|
|
{
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
[MessageHandler(SceneType.Game)]
|
|
|
public class C2G_BattleNotifyHandler : AMRpcHandler<C2G_BattleNotify, G2C_BattleNotify>
|
|
@@ -29,10 +29,49 @@ namespace ET.Server
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- Struct.TriggerEventNotify notifyMsg = new Struct.TriggerEventNotify();
|
|
|
- notifyMsg.message = request.Message;
|
|
|
+
|
|
|
+
|
|
|
+ {
|
|
|
+ player.GetXmdsManager().notifyBattleServer(player.Map.Id.ToString(), NotifyBSName.TriggerEvent,
|
|
|
+ JsonSerializer.Serialize(new Struct.TriggerEventNotify() { message = BattleNotify.TiktokGift_52.ToString() }));
|
|
|
+ return;
|
|
|
+ }*/
|
|
|
|
|
|
+ Struct.TriggerEventNotify notifyMsg = new Struct.TriggerEventNotify() { message = request.Message };
|
|
|
+
|
|
|
+ int objid = 7;
|
|
|
+ if (request.Message == BattleNotify.TiktokGift_1.ToString())
|
|
|
+ {
|
|
|
+
|
|
|
+ var hp = player.GetZoneManager().getUnitHP(player.Map.Id.ToString(), objid);
|
|
|
+ if(hp <= 0)
|
|
|
+ {
|
|
|
+
|
|
|
+ notifyMsg.message = BattleNotify.TiktokGift_1_ext.ToString();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+
|
|
|
+ notifyMsg.TriggerUnits = objid.ToString();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(request.Message == BattleNotify.TiktokGift_10.ToString())
|
|
|
+ {
|
|
|
+
|
|
|
+ var hp = player.GetZoneManager().getUnitHP(player.Map.Id.ToString(), objid);
|
|
|
+ if (hp <= 0)
|
|
|
+ {
|
|
|
+
|
|
|
+ notifyMsg.message = BattleNotify.TiktokGift_10_ext.ToString();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+
|
|
|
+ notifyMsg.TriggerUnits = objid.ToString();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
player.GetXmdsManager().notifyBattleServer(player.Map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(notifyMsg));
|
|
|
|
|
|
reply();
|