Quote:
Originally Posted by fabx24
thank you, link of soapbox? sorry but he is new and he is not registred
|
I will post with code tags, so he can see without registering.
Quote:
Originally Posted by Kryam
@ [Only registered and activated users can see links. Click Here To Register...] Hi, i want to help the project of nfsw. What i have to do and can you give me the link of the soapbox for studying the project?
|
Get one IDE (eclipse, netbeans, intellij), get lastest nfsw client.
Follow the readmes inside the projects.
When you done, can implement missing features, or fix bugs locally.
when fix or implement, create a github account, fork the project, commit and send pull request.
Code:
offline version:
https://github.com/nilzao/soapbox-race-offline
private server version:
https://github.com/nilzao/soapbox-race/
udp server:
https://github.com/nilzao/soapbox-race-udp
private server epvp topic:
http://www.elitepvpers.com/forum/need-speed-world/4025818-nfsw-private-server-project.html
install-standalone version epvp topic:
http://www.elitepvpers.com/forum/need-speed-world/4078178-soapbox-standalone-installer-1-0-0-a.html
Quote:
Originally Posted by berkay2578
Only need someone to fix the sslLayer in the xmpp server since it's not functioning correctly for some reason. (could be a c#4.0 issue, powerups don't work because NFS:W wants them over ssl with tls.)
|
My guess about the ssl stuff.
It's a security fix in ssl, happened in java too. The name is "BEAST ATTACK".
In java to disable the security fix I used this:
Code:
System.setProperty("jsse.enableCBCProtection", "false");
I don't know how to disable it in C#.
If you use the one xmpp python client (like our old xmpp.py file) to connect in your C# ssl xmpp server, you will see (probably) C# srv send the packets with breakline every first character.
And nfsw.exe don't like it.