Beispiel #1
0
    /// <summary>
    /// 飞到自己的公会篝火
    /// </summary>
    public void C2S_FlyMyGuildFire()
    {
        //Debug.Log("C2S_FlyMyGuildFire");
        pt_req_fly_guild_bonfire_d739 msg = new pt_req_fly_guild_bonfire_d739();

        msg.type = 1;
        msg.val  = 0;
        NetMsgMng.SendMsg(msg);
    }
Beispiel #2
0
    /// <summary>
    /// 请求飞仙盟篝火副本
    /// </summary>
    /// <param name="_type"></param>
    public void C2S_FlyBonfire(int _type, int _targe)
    {
        //Debug.Log("C2S_FlyBonfire");
        pt_req_fly_guild_bonfire_d739 msg = new pt_req_fly_guild_bonfire_d739();

        msg.type = _type;
        msg.val  = _targe;
        NetMsgMng.SendMsg(msg);
    }