List of C# API that don't do anything?

Users who are viewing this thread

abc123456

Regular
I poked around the C# API. I could not get some of the functions to work so just wondering if they actually work? Here is the list of functions that don't seem to do anything:

OnDoMeetingInMapEvent

Code:
    CampaignEvents.OnDoMeetingInMapEvent.AddNonSerializedListener(this, new Action<MobileParty, List<CharacterObject>, int>(
            (party, list, num) =>
            {
                InformationManager.DisplayMessage(new InformationMessage("asdasd asdasd"));
            }));
 
Back
Top Bottom