[RELEASE] BlissRP Files

Status
Not open for further replies.

JayC

Always Learning
Aug 8, 2013
5,493
1,398
Hi All ^_^

I am here with another release. These files are from the RP I started in 2019, I no longer need them so I am going to release them.


1) I will not help you set it up. It uses websockets, there is a javascript file that has to be configured as well as you need your certificate (unless you won't be using https then you need to comment out the certificate part in the emulator and just use a ws connection rather than wss). The certificate is exported as a pfx file, and you need to configure the file name and password in the emulator under the SocketConnection.cs (I believe this is the file)

2) Do not PM me on discord or Devbest asking for help, I am no longer developing retros.

Best of luck!



Code:
public SocketConnection(String ip, String port)
        {
            FleckLog.Level = LogLevel.Debug;
            
            //change to ws if you want to not use HTTPS (has to match your site)
            var server = new WebSocketServer("wss://" + ip + ":" + port + "");
            
            //Change to your PFX and password
            server.Certificate = new X509Certificate2(@"C:\FILENAME.pfx", "PASSWORD");

            ....
            });
            

        }
 
Status
Not open for further replies.

Users who are viewing this thread

Top