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!

MU Legend JPN Server Files

Newbie Spellweaver
Joined
Nov 1, 2006
Messages
43
Reaction score
10
Hi everyone.

Wanted to test things out and run some local server but faced issues.

Everything seemed alright up to the client launch point.

SO Ive tried:
-StudioTest ForceConnectIp=192.168.1.148
This got me to the error code -3 upon login.

Then I tried:
H:\Games\Mu2\Binaries\Win64\MULegend.exe valofe.mul.launcher::123123|4297f44b13955235245b2497399d7a93|VALOFE|0|1|192.168.1.148|1001|JP|live

This got me to the Empty world list and soon after got kicked out with error: Disconnected from Game Guard.

And this is what I found in Login Server:

11/04/21 14:03:25 [8812] INFO - onEclReqServerVersion >Major:0, Minor:0, Patch:54 [mu2::LoginRunner::eek:nEclReqServerVersion][LoginRunner.cpp][1189]11/04/21 14:03:25 [8812] INFO - onReqLogin> [mu2::LoginRunner::eek:nEclReqLogin][LoginRunner.cpp][135]11/04/21 14:03:25 [15072] INFO - login otp check. ProviderCode = 0 [mu2::UrlAuth::SetParam][UrlAuth.cpp][69]11/04/21 14:03:25 [15072] INFO - UrlAuth. URL : [mu2::UrlAuth::SetParam][UrlAuth.cpp][70]11/04/21 14:03:25 [15072] INFO - UrlAuth. INPUT : 0£¬req={"channeling_index":0,"client_ip":"192.168.1.148","locale":"jp","service_code":"mulegend-jp","user_key":"devilangel","user_otp":"4297f44b13955235245b2497399d7a93"} [mu2::UrlAuth::SetParam][UrlAuth.cpp][71]11/04/21 14:03:25 [15072] INFO - UrlAuth. OUTPUT : <br /><b>Fatal error</b>: Uncaught Error: Non-static method Database::getData() cannot be called statically in G:\Mu2Repak\wwwroot\api\member\checkOTP.php:30Stack trace:#0 {main} thrown in <b>G:\Mu2Repak\wwwroot\api\member\checkOTP.php</b> on line <b>30</b><br /> [mu2::UrlAuth::Finish][UrlAuth.cpp][86]11/04/21 14:03:25 [15072] ERROR - Auth : error 3 [json parsing error] [mu2::UrlAuth::Finish][UrlAuth.cpp][125]11/04/21 14:03:25 [8812] INFO - onEclReqLogin >Auth Result 0 [mu2::LoginRunner::eek:nEclReqLogin][LoginRunner.cpp][193]11/04/21 14:03:25 [8812] ERROR - onReqLogin> Failed 3 [mu2::LoginRunner::eek:nEclReqLogin][LoginRunner.cpp][223]

looks like it got error auth fail from web. ( I might be wrong ) Web API provided in repack somewhere in middle in this thread did not work as I thought .Followed instructions and on account creation moment it says :
You are awesome. You can login and save the world now. It don`t add account to the database.

I am confused :/ Maybe someone knows and can point to what ive done wrong ?

Thanks In advance.
 
Last edited:
Newbie Spellweaver
Joined
Nov 1, 2006
Messages
43
Reaction score
10
Got this error and I cant figure out what's wrong with it.


Uncaught Error: Non-static method Database::getData() cannot be called statically

PHP:
require '../vendor/autoload.php';
include_once('../config/database.php');
include_once('../config/config.php');
include_once('../config/helper.php');

$config = new Config();
$request_params = getRequests();

$user_key = $request_params->user_key;
$user_otp = $request_params->user_otp;
$channeling_index = $request_params->channeling_index;
$client_ip = $request_params->client_ip;
$locale = $request_params->locale;
$service_code = $request_params->service_code;
$db_user = $config->db_user;
$sql = "SELECT * FROM dbo.TblAccount WHERE accountid = '$user_key'";
$user_data = Database::getData($db_user, $sql, 'row'); <--- This Line Here
if ($user_data) {
    $check_password = $user_otp;
    if ($check_password === $user_data['passwd']) {
        $result_array = array(
            'result_code' => 1,
            'user_no' => (int) $user_data['fcsaccountguid'],
            'user_id' => $user_key,
            'channeling_index' => $channeling_index
 
Newbie Spellweaver
Joined
Aug 31, 2014
Messages
10
Reaction score
0
Got this error and I cant figure out what's wrong with it.


Uncaught Error: Non-static method Database::getData() cannot be called statically

PHP:
require '../vendor/autoload.php';
include_once('../config/database.php');
include_once('../config/config.php');
include_once('../config/helper.php');

$config = new Config();
$request_params = getRequests();

$user_key = $request_params->user_key;
$user_otp = $request_params->user_otp;
$channeling_index = $request_params->channeling_index;
$client_ip = $request_params->client_ip;
$locale = $request_params->locale;
$service_code = $request_params->service_code;
$db_user = $config->db_user;
$sql = "SELECT * FROM dbo.TblAccount WHERE accountid = '$user_key'";
$user_data = Database::getData($db_user, $sql, 'row'); <--- This Line Here
if ($user_data) {
    $check_password = $user_otp;
    if ($check_password === $user_data['passwd']) {
        $result_array = array(
            'result_code' => 1,
            'user_no' => (int) $user_data['fcsaccountguid'],
            'user_id' => $user_key,
            'channeling_index' => $channeling_index
the error itself says it all method is not declared as static, maybe try checking /config/database.php and add "static" to the method getData(), it should look something like this "public static function getData()"
 
Custom Title Activated
Loyal Member
Joined
Dec 20, 2005
Messages
2,046
Reaction score
117
Can anyone share the complete English translated cash shop?

Edit: anyone knows how to unlock that AA graphics settings on the video sitting? It seems like greyed out for me and my gaming PC is way 100x faster than its recommended system requirements.
There's a HD fix patch for the game which really enhanced the graphics. I got it from a Vietnamese YouTube tutorials and it leads to his official website. But sadly I thought it's for unlock that AA settings as well.
If anyone knows how plz input it here... Sharing is caring....
 
Last edited:
Newbie Spellweaver
Joined
Sep 5, 2021
Messages
74
Reaction score
16
Repack is awesome thanks!
 
Last edited:
Newbie Spellweaver
Joined
Nov 23, 2013
Messages
11
Reaction score
0
Is anyone have this issue before? Version : 0.51 // Source.

Indicator seems messed up.
X3QT50a - MU Legend JPN Server Files - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jan 8, 2017
Messages
18
Reaction score
3
Does anyone have the source download link other than baidu?
 
Newbie Spellweaver
Joined
Nov 24, 2016
Messages
9
Reaction score
0


thanks but after i did this there empty server.



Hi everyone.

Wanted to test things out and run some local server but faced issues.

Everything seemed alright up to the client launch point.

SO Ive tried:
-StudioTest ForceConnectIp=192.168.1.148
This got me to the error code -3 upon login.

Then I tried:
H:\Games\Mu2\Binaries\Win64\MULegend.exe valofe.mul.launcher::123123|4297f44b13955235245b2497399d7a93|VALOFE|0|1|192.168.1.148|1001|JP|live

This got me to the Empty world list and soon after got kicked out with error: Disconnected from Game Guard.

And this is what I found in Login Server:



looks like it got error auth fail from web. ( I might be wrong ) Web API provided in repack somewhere in middle in this thread did not work as I thought .Followed instructions and on account creation moment it says :
You are awesome. You can login and save the world now. It don`t add account to the database.

I am confused :/ Maybe someone knows and can point to what ive done wrong ?

Thanks In advance.

ihave the same problem how do you fix this?
 
Master Summoner
Joined
May 25, 2020
Messages
526
Reaction score
235
thanks but after i did this there empty server.





ihave the same problem how do you fix this?
Becouse your info in line is inncorect .You put something wrong . or your server are wrong config .
You will do better showing pictures so i will tell you what wrong not just thinking what can be !
 
Newbie Spellweaver
Joined
Nov 24, 2016
Messages
9
Reaction score
0
Becouse your info in line is inncorect .You put something wrong . or your server are wrong config .
You will do better showing pictures so i will tell you what wrong not just thinking what can be !
hi when i try to change the ip, using my wan ip i got this error. but if iuse lan ip theres no error but i cannot connect.
keyrita1 - MU Legend JPN Server Files - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Nov 24, 2016
Messages
9
Reaction score
0
tried to put online but no luck, already opened all ports needed.



even I change local 127.0.0.1 to my dedicated IP but still CenterServer listening to local IPv4 address



AS you can see below, even changing those 127.0.0.1 into dedicated/public IP still no luck.

View attachment 168575
hi how do you fix this?
 
Newbie Spellweaver
Joined
Nov 24, 2016
Messages
9
Reaction score
0
hi good day to anyone, anyone of you encounter Cannot Connect to Server Error. i already manage to show the server list but after i put the second password it says cannot connect to server. TIA
 
Last edited:
Back
Top