Vindictus Party Chat Fix

Results 1 to 7 of 7
  1. #1
    Apprentice nakashimakun is offline
    MemberRank
    Nov 2013 Join Date
    23Posts

    Vindictus Party Chat Fix

    Hello All,
    Sat on this one from when I ran a private server but here's how to fix party chat (If I remember correctly) You will need to again modify the ServiceCore.dll (Source is linked elsewhere)

    Firstly you need to open the file PartyChatMessage.cs

    Which will look like:

    Code:
    using System;
    
    namespace ServiceCore.EndPointNetwork
    {
        [Serializable]
        public sealed class PartyChatMessage : IMessage
        {
            public string SenderName { get; set; }
    
            public string Message { get; set; }
    
            public bool isFakeTownChat { get; set; }
    
            public override string ToString()
            {
                return string.Format("PartyChatMessage[ sendername = {0} message = {1} ]", this.SenderName, this.Message);
            }
        }
    }
    And add another public string after Message and before the public bool isFakeTownChat

    See below

    Code:
    using System;
    
    namespace ServiceCore.EndPointNetwork
    {
        [Serializable]
        public sealed class PartyChatMessage : IMessage
        {
            public string SenderName { get; set; }
    
            public string Message { get; set; }
    
                    public string AddedCodeForChat { get; set; }
    
            public bool isFakeTownChat { get; set; }
    
            public override string ToString()
            {
                return string.Format("PartyChatMessage[ sendername = {0} message = {1} ]", this.SenderName, this.Message);
            }
        }
    }


  2. #2
    Apprentice taiga800 is offline
    MemberRank
    Feb 2018 Join Date
    7Posts

    Re: Vindictus Party Chat Fix

    Thank you so much!

  3. #3
    Apprentice nakashimakun is offline
    MemberRank
    Nov 2013 Join Date
    23Posts

    Re: Vindictus Party Chat Fix

    No problem, I've been looking into why FriendList doesn't work it appears the client sends the server a packet it doesn't understand. Need to figure out that before we can have a working friends list. I think for actual user/password based login it also requires NMSource to be modified and a API created to handle user logins for a more secure login. But I'm only working on this as and when I can.

  4. #4
    Valued Member nokxx is offline
    MemberRank
    Jun 2013 Join Date
    142Posts

    Re: Vindictus Party Chat Fix

    Can you upload edited dll?

  5. #5
    Apprentice timon is offline
    MemberRank
    Aug 2012 Join Date
    22Posts

    Re: Vindictus Party Chat Fix

    I took it "ServiceCore.dll" and exported the project using JetBrains dotPeek .
    I opened it in Visual Studio2019 (I tried it in VS2015), edited it and when I try to build it, a lot of errors fly out and as a result "ServiceCore.dll" not changed ...
    Maybe there is some other way to change "ServiceCore.dll" or can someone post a modified one "ServiceCore.dll" ???
    Thank you in advance!!!

  6. #6
    Apprentice timon is offline
    MemberRank
    Aug 2012 Join Date
    22Posts

    Re: Vindictus Party Chat Fix

    Thank you for your responsiveness ! Fixed the chat and the arena .. p. s. srcds.exe it is impossible to run on a virtual machine, so the arena does not work! I made a VM backup using Acronis , deployed this backup on my server and deleted everything related to VMwar from the registry , uploaded the client to the server and specified the path to srcds.exe in ServiceCore. dll. config.... <setting name= "DSExecPath" serializeAs= "String">
    <value>C:\Development\vindictus\zh-tw-x-gm\client\srcds.exe</value>
    </setting> .. I restarted and started the server and everything worked .. the chat was fixed by changing some of the client's files(the server was not touched)

  7. #7
    Apprentice Zomro is offline
    MemberRank
    Sep 2021 Join Date
    10Posts

    Re: Vindictus Party Chat Fix

    Really, no one can fix the chat, the list of friends andit is desirable to post a ready-made solution in the form of a patch ? On the private server "Windictus" it seems that the list of friends also does not work ...



Advertisement