Important RustBuster Test and Fougerite Testing

salva

Friendly self-taught developer
Administrator
Jan 31, 2016
577
612
63
Well, thats not how it works. You can't have both: fast release and a stable version.

It takes a long way until a program turns "stable".
All that is obvious !!! Xd, I just said that I'm impatient;)
 

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,091
4,767
113
At your house.
github.com



Getting closer to the finish.

Currently all the communications are encrypted, but still a few checks need to be finished.

The hardest is now finished. Images are being sent from the client in an encrypted way, to the server.

I will be making options so the clients sending images can be high, med, and low quality.

The current one on the server is medium, and that should be enough.
 

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,091
4,767
113
At your house.
github.com
A client screenshot function ;) The NSA would be proud of you :p

This will be very effective against cheaters and makes the detection much easier.
It only takes screenshot of the game, no worries :p

http://stackoverflow.com/questions/26223975/unity-c-take-screenshot-and-save-to-file-as-jpg/41282825#41282825

I added a server side options wheather you want to resize the image, and how much.

It makes users happier, since uploading 1.4MB hd screen image would be uncool for people who are playing far from the srv, or just having 50kb/s upload speed. (I used to have that :D)

All the function checks are done just now.

I have to make sure some things are correct, cant be fucked up, etc, and then i will give out an obfuscated RustBusterServer2016.dll and the client.

Be checking the forum tomorrow. :p
 

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,091
4,767
113
At your house.
github.com
Once we went through the beta, and ensured we cleared out most of the cheats, I will be working on the extra content stuffs... if possible.
 

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,091
4,767
113
At your house.
github.com
My screen is 1920x1024

3rd compression mode for small images, and fast uploads: (1920x1024) / 3 = 380kb


2nd compression, for medium upload speed, and medium quality, its on the left: (1920x1024) / 2 = 800kb


no compression, slowest, high quality = 1,5mb

 
Last edited:

Sturt

Plugin Developer
Plugin Developer
Jan 4, 2015
71
38
8
46
It only takes screenshot of the game, no worries :p

http://stackoverflow.com/questions/26223975/unity-c-take-screenshot-and-save-to-file-as-jpg/41282825#41282825

I added a server side options wheather you want to resize the image, and how much.

It makes users happier, since uploading 1.4MB hd screen image would be uncool for people who are playing far from the srv, or just having 50kb/s upload speed. (I used to have that :D)

All the function checks are done just now.

I have to make sure some things are correct, cant be fucked up, etc, and then i will give out an obfuscated RustBusterServer2016.dll and the client.

Be checking the forum tomorrow. :p
Have I ever told you that you are the best? :)
 
  • Like
Reactions: DreTaX

tarynkelley

Moderator
Moderator
Nov 14, 2015
575
178
28
Parts Unknown
My screen is 1920x1024

3rd compression mode for small images, and fast uploads: (1920x1024) / 3 = 380kb


2nd compression, for medium upload speed, and medium quality, its on the left: (1920x1024) / 2 = 800kb


no compression, slowest, high quality = 1,5mb

Will you also add a feature to resize the screenshot before the upload, for example 50%?

I think the full resolution is not always needed to only check for a hack menu.
 

DreTaX

Probably knows the answer...
Administrator
Jun 29, 2014
4,091
4,767
113
At your house.
github.com
Will you also add a feature to resize the screenshot before the upload, for example 50%?

I think the full resolution is not always needed to only check for a hack menu.
That's what i posted.

1 = No compression
2 = 50% compression, medium upload speed, medium size
3 = resolution / 3, fastest, small size.