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!

[Release] WarZTH v2 Full Source Code

Newbie Spellweaver
Joined
Oct 13, 2014
Messages
62
Reaction score
4
Registration is complete / then login --// Login failed, please try again later \\--

Yuri-BR - [Release] WarZTH v2 Full Source Code - RaGEZONE Forums

Yuri-BR - [Release] WarZTH v2 Full Source Code - RaGEZONE Forums

http://forum.ragezone.com/f792/solve-error-code-5-sql-1008036/
& api_getserverinfo.xml
Code:
<info>
<news>
<news name="TEST_XUEST" url="text" date="Notice_Date"/>
<news name="TEST_XUEST2" url="text" date="Notice_Date"/>
</news>
<SurveyIn link="#"/>
<SurveyOut link="#"/>
<ServerInfo status="ONLINE"/>
</info>


throw in C:\inetpub\wwwroot
 
Last edited:
Newbie Spellweaver
Joined
Oct 13, 2014
Messages
62
Reaction score
4
Last edited:
Newbie Spellweaver
Joined
Sep 23, 2014
Messages
16
Reaction score
0
C:\inetpub\wwwroot\api\php \ dbinfo.inc.php

$db_user = "sa";
$db_pass = "123456";
$db_dbname = "WarZ";

can not
 
Joined
Oct 28, 2011
Messages
2,465
Reaction score
1,258
Registration is complete / then login --// Login failed, please try again later \\--

Yuri-BR - [Release] WarZTH v2 Full Source Code - RaGEZONE Forums

1. Why is the password only 1 character long? This will fail. There is a "minimum character length" both for user and pass.
2. You should not post pictures with your "gmail.com" account in them.
3. There is a very well written document in the tutorials section (Stickied and written by ztimer). It will not match this code 100%, but using common sense and following along you should find the solution.

**Added**
4. Is your ODBC configured properly? Did you click the TEST button and get the response "Test Successfully Finished"?
Cheers
 
Newbie Spellweaver
Joined
Feb 17, 2014
Messages
27
Reaction score
0
1. Why is the password only 1 character long? This will fail. There is a "minimum character length" both for user and pass.
2. You should not post pictures with your "gmail.com" account in them.
3. There is a very well written document in the tutorials section (Stickied and written by ztimer). It will not match this code 100%, but using common sense and following along you should find the solution.

**Added**
4. Is your ODBC configured properly? Did you click the TEST button and get the response "Test Successfully Finished"?
Cheers


Select you directory for updater man, in wz/updater/woupd.xml

see you directory man ;)

<p>
<u url="http://167.114.79.177/wz/uupdater/WarZlauncher.exe_1.0.0.exe" crc="3459270381" ver="1.0.0" size="9169920"/>
</p>
 
Newbie Spellweaver
Joined
Oct 13, 2014
Messages
62
Reaction score
4
Please, aneone giv me your LauncherConfig.ccp

192.168.1.301-> external ip your
Code:
#include "r3dPCH.h"
#include "r3d.h"
#include "r3dNetwork.h"

#include "LauncherConfig.h"

CLauncherConfig gLauncherConfig;

CLauncherConfig::CLauncherConfig()
{
    const char* configFile = "Launcher.cfg";
    const char* group      = "Launcher";

    if(_access(configFile, 4) != 0) {
//    r3dError("can't open config file %s", configFile);
    }

    serialBuyURL = r3dReadCFG_S(configFile, group, "serialBuyURL", "http://192.168.1.301/buy?ref=WarL");
    serialExpiredBuyURL = r3dReadCFG_S(configFile, group, "serialExpiredBuyURL", "http://192.168.1.301/buy?ref=WarE");

    accountForgotPasswordURL = r3dReadCFG_S(configFile, group, "accountForgotPasswordURL",
        "https://192.168.1.301/account_check");
    accountRegisterURL = r3dReadCFG_S(configFile, group, "accountRegisterURL",
        "https://192.168.1.301/account_register");

    myAccountURL = r3dReadCFG_S(configFile, group, "myAccountURL", "https://192.168.1.301/account_check");
    forumsURL = r3dReadCFG_S(configFile, group, "forumsURL", "http://192.168.1.301/forum");
    supportURL = r3dReadCFG_S(configFile, group, "supportURL", "http://192.168.1.301/support");
    youtubeURL = r3dReadCFG_S(configFile, group, "youtubeURL", "http://www.youtube.com");
    facebookURL = r3dReadCFG_S(configFile, group, "facebookURL", "http://www.facebook.com");
    twitterURL = r3dReadCFG_S(configFile, group, "twitterURL", "http://twitter.com/");

    accountUnknownStatusMessage = r3dReadCFG_S(configFile, group, "accountUnknownStatusMessage",
        "Unknown account status, please contact support@localhost");
    accountDeletedMessage = r3dReadCFG_S(configFile, group, "accountDeletedMessage",
        "Your account was deleted because your payment was refunded or cancelled\n\nPlease contact your payment provider");
    accountBannedMessage = r3dReadCFG_S(configFile, group, "accountBannedMessage",
        "Your account has been permanently banned");
    accountFrozenMessage = r3dReadCFG_S(configFile, group, "accountFrozenMessage",
        "Your account has been temporarily frozen because of violation of the Terms of Service ( Paragraph 2 )\n\nYou will be able to continue to use the service in %d hours");
  
    accountCreateFailedMessage = r3dReadCFG_S(configFile, group, "accountCreateFailedMessage",
        "Account creation failed, please try again later");
    accountCreateEmailTakenMessage = r3dReadCFG_S(configFile, group, "accountCreateEmailTakenMessage",
        "There is already registered account with that email!\nPlease note that you must use unique email per The War Z account");
    accountCreateInvalidSerialMessage = r3dReadCFG_S(configFile, group, "accountCreateInvalidSerialMessage",
        "Serial Key is not valid after Serial Key Check\ncontact support@localhost");

    webAPIDomainIP = r3dReadCFG_S(configFile, group, "webAPIDomainIP", "192.168.1.301");
    webAPIDomainBaseURL = r3dReadCFG_S(configFile, group, "webAPIDomainBaseURL", "/warz/api/");
    webAPIDomainPort = r3dReadCFG_I(configFile, group, "webAPIDomainPort", 80);
    webAPIDomainUseSSL = r3dReadCFG_I(configFile, group, "webAPIDomainUseSSL", 0) ? true : false;

    ToSURL = r3dReadCFG_S(configFile, group, "tosURL", "http://202.162.78.182/EULA.rtf");
    EULAURL = r3dReadCFG_S(configFile, group, "eulaURL", "http://202.162.78.182/TOS.rtf");

    updateGameDataURL = r3dReadCFG_S(configFile, group, "updateGameDataURL",
        "192.168.1.301");
    updateLauncherDataURL = r3dReadCFG_S(configFile, group, "updateLauncherDataURL",
        "192.168.1.301");
    // updateLauncherDataHostURL Used by -generate cmdline arg to output a woupd.xml file.
    updateLauncherDataHostURL = r3dReadCFG_S(configFile, group, "updateLauncherDataHostURL",
        "192.168.1.301");

    serverInfoURL = r3dReadCFG_S(configFile, group, "serverInfoURL",
        "192.168.1.301");

    //***************
    // Manual Config
    //***************
    serialBuyURL = "http://192.168.1.301/buy?ref=WarL";
    serialExpiredBuyURL = "http://192.168.1.301/buy?ref=WarE";

    myAccountURL = "http://192.168.1.301";
    forumsURL = "http://192.168.1.301/board";
    supportURL = "http://192.168.1.301";
    youtubeURL = "https://www.youtube.com/user/RaganrokFreelifeLive";
    facebookURL = "https://www.facebook.com/warzthailand";
    twitterURL = "http://twitter.com/";

    accountUnknownStatusMessage = "Unknown account status, please contact support@localhost";
    accountDeletedMessage = "Your account was deleted because your payment was refunded or cancelled\n\nPlease contact your payment provider";
    accountBannedMessage = "Your account has been permanently banned";
    accountFrozenMessage = "Your account has been temporarily frozen because of violation of the Terms of Service ( Paragraph 2 )\n\nYou will be able to continue to use the service in %d hours";
  
    accountCreateFailedMessage = "Account creation failed, please try again later";
    accountCreateEmailTakenMessage = "There is already registered account with that email!\nPlease note that you must use unique email per The War Z account";
    accountCreateInvalidSerialMessage = "Serial Key is not valid after Serial Key Check\ncontact support@localhost";

    webAPIDomainIP = "192.168.1.301";
    webAPIDomainBaseURL = "/warz/api/";
    webAPIDomainPort = 80;
    webAPIDomainUseSSL = false;

    ToSURL = "http://192.168.1.301/EULA.rtf";
    EULAURL = "http://192.168.1.301/TOS.rtf";

    updateGameDataURL = "https://192.168.1.301/wz/wz.xml";
    updateLauncherDataURL = "https://192.168.1.301/wz/updater/woupd.xml";
    updateLauncherDataHostURL = "http://192.168.1.301/wz/updated/";
    serverInfoURL = "https://192.168.1.301/api_getserverinfo.xml";

    //***************
    // Temporary URL
    //***************
    updateGameDataURL2 = "http://192.168.1.301/wz/data/wz.xml";
    updateLauncherDataURL2 = "http://192.168.1.301/wz/updater/woupd.xml";
    serverInfoURL2 = "http://192.168.1.301/wz/updater/api_getserverinfo.xml";
   
    #define CHECK_I(xx) if(xx == 0)  r3dError("missing %s value", #xx);
    #define CHECK_S(xx) if(xx == "") r3dError("missing %s value", #xx);
    CHECK_I(webAPIDomainPort);
    CHECK_S(webAPIDomainIP);
    CHECK_S(webAPIDomainBaseURL);

    CHECK_S(updateGameDataURL);
    CHECK_S(updateLauncherDataURL);
    CHECK_S(updateLauncherDataHostURL);

    CHECK_S(serverInfoURL);
    #undef CHECK_I
    #undef CHECK_S
 
    return;
}
 
Newbie Spellweaver
Joined
Mar 11, 2014
Messages
8
Reaction score
0
Source ta bro this whole strange not to have it open this HShield ta kidding all can someone help me?
Print:



Fonte ta bro todo este estranho não tê-lo abrir este HShield ta brincando tudo que alguém pode me ajudar?
impressão: http://prntscr.com/585itu



Source ta bro this whole strange not to have it open this HShield ta kidding all can someone help me?
Print:
http://prntscr.com/585itu
 
Newbie Spellweaver
Joined
Feb 17, 2014
Messages
27
Reaction score
0
Help me please.

error code:

000017.392| Loaded 12 of 12 grass settings locations from the glist file
000017.404| Loaded 12 grass settings files
000020.500| WO_API: returned http404
000020.500| LoginAuth: 8
000020.516| WO_API: returned http404
000020.516| GetProfile FAILED, code: 8
000020.516| ASSERT at file .\Sources\Backend\WOBackendAPI.cpp, line 73: id
000020.964| WO_API: returned http404
000020.964| GetProfile FAILED, code: 8
000025.462| obj_Zombie::FreePhysSkeletonCache:000025.462| done in 0.00 seconds
000025.465| Deleting render targets
000026.378|
000026.380| WARNING: pd3ddev have 10 reference counts
 
Newbie Spellweaver
Joined
Feb 20, 2013
Messages
29
Reaction score
0
i useing smoke red click and error banned
how to file ?
 
Back
Top