private void NpcLeaveCampSight(NpcInfo npc, int campid)
        {
            Msg_RC_NpcDisappear bder = new Msg_RC_NpcDisappear();

            bder.npc_id = npc.GetId();
            NotifyCampUsers(campid, bder);
        }
Exemple #2
0
    internal static void Execute(object msg, NetConnection conn, NetworkSystem networkSystem)
    {
        Msg_RC_NpcDisappear disappear = msg as Msg_RC_NpcDisappear;

        if (disappear == null)
        {
            return;
        }
    }