Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] LoginAuth: 8

Skilled Illusionist
Joined
Nov 27, 2018
Messages
337
Reaction score
66
hello guys. faced such a problem, when connecting to the game writes LOGIN FAILED Wrong username or password

my r3dlog:

000035.486| WO_API: http timeout
000035.486| LoginAuth: 8

my
WO_5no parameter username

SRC: CodexPo
 
Experienced Elementalist
Joined
May 28, 2017
Messages
225
Reaction score
127
if u can call the api from browser but gets wo_x soo x is presenting a code, then it has something todo with ur client or server, check out if u have set up everything in their properly.
 
Upvote 0
Joined
Apr 2, 2013
Messages
1,098
Reaction score
4,597
Code:
/*
    WO API error codes:
    0: operation Ok
    1: session not valid (disconnected)
    5: php<->SQL error
    6: SQL parameters error
    7: SQL logic error (not enough money, etc)
    [COLOR=#FF0000]8: http connection[/COLOR]
    9: http output error
*/

Try check all the api ip and path if they are correct, and check that your api is working normally, and returns with the value:

"WO_5no parameter username".
 
Last edited:
Upvote 0
Skilled Illusionist
Joined
Nov 27, 2018
Messages
337
Reaction score
66
I found an error, the problem was that I did not specify the correct ipv4 address in my src

but now when cleaning the assembly, the error appears
LNK1181: cannot open input file 'SpeedTreeCore_v7.1_VS2008_MTDLL.lib

I connected libraries
Include:
C:\WarZ\src\External\SpeedTreeSDK\Include
C:\WarZ\src\External\SpeedTreeSDK\Source
Lib:
C:\WarZ\src\External\SpeedTreeSDK\Lib
 
Upvote 0
Joined
Apr 2, 2013
Messages
1,098
Reaction score
4,597
I found an error, the problem was that I did not specify the correct ipv4 address in my src

but now when cleaning the assembly, the error appears
LNK1181: cannot open input file 'SpeedTreeCore_v7.1_VS2008_MTDLL.lib

I connected libraries
Include:
C:\WarZ\src\External\SpeedTreeSDK\Include
C:\WarZ\src\External\SpeedTreeSDK\Source
Lib:
C:\WarZ\src\External\SpeedTreeSDK\Lib

Additional Library Directories:
Code:
[COLOR=#ff0000]../External/SpeedTreeSDK/Lib/Windows/VS2008[/COLOR]
 
Upvote 0
Back
Top