Need for Speed World BETA

01/14/2017 14:08 fabx24#241
man if you have java on your PC, just run the .jar file and then it opens a wndow, change the game path by pressing the button change game path exe, go on your directory where you have putted nfs world, go on the data folder and choose the nfsw.exe, after that press launch the game.
01/14/2017 14:12 000NICOLAS935#242
Quote:
Originally Posted by fabx24 View Post
man if you have java on your PC, just run the .jar file and then it opens a wndow, change the game path by pressing the button change game path exe, go on your directory where you have putted nfs world, go on the data folder and choose the nfsw.exe, after that press launch the game.
I got Java 64Bits on my computer .
When I open nfsw-beta-srv-1.2-SNAPSHOT.jar
it does nothing :confused:
:mad:
OMG that's hard ... :(
01/14/2017 14:32 ChicaneMilos#243
Quote:
Originally Posted by 000NICOLAS935 View Post
I got Java 64Bits on my computer .
When I open nfsw-beta-srv-1.2-SNAPSHOT.jar
it does nothing :confused:
:mad:
OMG that's hard ... :(
Simply:Open it with CMD and open NFSW by yourself... Thats how @[Only registered and activated users can see links. Click Here To Register...] says.
01/14/2017 14:36 000NICOLAS935#244
Quote:
Originally Posted by ChicaneMilos View Post
Simply:Open it with CMD and open NFSW by yourself... Thats how @[Only registered and activated users can see links. Click Here To Register...] says.
Can you please give me the command :)

I write Start nfs.exe
and dont work ... :(
01/14/2017 14:41 ChicaneMilos#245
Quote:
Originally Posted by 000NICOLAS935 View Post
Can you please give me the command :)

I write Start nfs.exe
and dont work ... :(
Easy way:
Move www and jar file to desktop, without any folders...;
Open CMD;
Type cd desktop;
Type java -jar [name of the jar file].jar

Now you just need to open game.

Anyways, tried now, and when I open nfsw.exe , nothing happens... @[Only registered and activated users can see links. Click Here To Register...] ?
01/14/2017 14:53 randy kaka#246
@[Only registered and activated users can see links. Click Here To Register...] when are you gonna upload a server with powerups and events
01/14/2017 14:55 berkay2578#247
Quote:
Originally Posted by N/A View Post
..
C, written by Jenkins himself: [Only registered and activated users can see links. Click Here To Register...]
C#, made by some dude that I don't know: [Only registered and activated users can see links. Click Here To Register...]

this is how I do it in C++ :
Code:
#define hashsize(n) (1U << (n))
#define hashmask(n) (hashsize(n) - 1)

#define mix(a,b,c) \
{ \
    a -= b; a -= c; a ^= (c >> 13); \
    b -= c; b -= a; b ^= (a << 8); \
    c -= a; c -= b; c ^= (b >> 13); \
    a -= b; a -= c; a ^= (c >> 12); \
    b -= c; b -= a; b ^= (a << 16); \
    c -= a; c -= b; c ^= (b >> 5); \
    a -= b; a -= c; a ^= (c >> 3); \
    b -= c; b -= a; b ^= (a << 10); \
    c -= a; c -= b; c ^= (b >> 15); \
}

unsigned jenkins32(unsigned char *k, unsigned length)
{
    unsigned a, b;
    unsigned c = 0xABCDEF00;
    unsigned len = length;

    a = b = 0x9e3779b9;

    while (len >= 12)
    {
        a += (k[0] + ((unsigned)k[1] << 8) + ((unsigned)k[2] << 16) + ((unsigned)k[3] << 24));
        b += (k[4] + ((unsigned)k[5] << 8) + ((unsigned)k[6] << 16) + ((unsigned)k[7] << 24));
        c += (k[8] + ((unsigned)k[9] << 8) + ((unsigned)k[10] << 16) + ((unsigned)k[11] << 24));

        mix(a, b, c);

        k += 12;
        len -= 12;
    }

    c += length;

    switch (len)
    {
    case 11: c += ((unsigned)k[10] << 24);
    case 10: c += ((unsigned)k[9] << 16);
    case 9: c += ((unsigned)k[8] << 8);
    case 8: b += ((unsigned)k[7] << 24);
    case 7: b += ((unsigned)k[6] << 16);
    case 6: b += ((unsigned)k[5] << 8);
    case 5: b += k[4];
    case 4: a += ((unsigned)k[3] << 24);
    case 3: a += ((unsigned)k[2] << 16);
    case 2: a += ((unsigned)k[1] << 8);
    case 1: a += k[0];
    }

    mix(a, b, c);

    return c;
}
01/14/2017 14:56 000NICOLAS935#248
@[Only registered and activated users can see links. Click Here To Register...] Don't Work ...
01/14/2017 14:58 ChicaneMilos#249
Quote:
Originally Posted by 000NICOLAS935 View Post
@[Only registered and activated users can see links. Click Here To Register...] Don't Work ...
Everything is okay, just nfsw won't open... Waiting for @[Only registered and activated users can see links. Click Here To Register...] ....
01/14/2017 15:00 000NICOLAS935#250
@[Only registered and activated users can see links. Click Here To Register...] So the problem is the same for everyone ?
Thanks for help me ! :)
01/14/2017 15:34 leorblx#251
Quote:
Originally Posted by ChicaneMilos View Post
Everything is okay, just nfsw won't open... Waiting for @[Only registered and activated users can see links. Click Here To Register...] ....
I told you. You run the game yourself. The server won't run the game, you have to launch it like you would with the original offline server.
01/14/2017 15:35 ChicaneMilos#252
Quote:
Originally Posted by leorblx View Post
I told you. You run the game yourself. The server won't run the game, you have to launch it like you would with the original offline server.
Again and again... When I open nfsw.exe nothing happens...
01/14/2017 15:41 leorblx#253
Quote:
Originally Posted by ChicaneMilos View Post
Again and again... When I open nfsw.exe nothing happens...
What do you mean? How are you running it?


Run it from cmd. Here's the command:


Code:
nfsw.exe US http://localhost:7331/nfsw/Engine.svc a 1
01/14/2017 15:45 ChicaneMilos#254
Quote:
Originally Posted by leorblx View Post
What do you mean? How are you running it?


Run it from cmd. Here's the command:


Code:
nfsw.exe US http://localhost:7331/nfsw/Engine.svc a 1
Ohh, complicated.... Never mind...
01/14/2017 15:54 randy kaka#255
@[Only registered and activated users can see links. Click Here To Register...] when are you gonna upload a server with powerups and events