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!

Untouched Source V3 + Bin | Include Setup Guide

Junior Spellweaver
Joined
Jun 22, 2014
Messages
175
Reaction score
87
Correct me if I'm wrong: There is no Mapserver in WarZ, there never was. Follow the guide posted by Kuchen and you'll see that you Emulator or PServer is working correctly. If you used this source and don't f'cked it up.

If there are still errors, then I'm sorry. I'd suggest that you will leave this place. forever.
 
Junior Spellweaver
Joined
May 23, 2013
Messages
142
Reaction score
33
Can someone send me original fla files ... tarr just working on something :sleep:
 
Elite Diviner
Joined
Apr 3, 2013
Messages
476
Reaction score
204


not sure if they are 100% the Original ones but they work fine PW is Yuri-BR credits to him
 
Initiate Mage
Joined
Dec 11, 2014
Messages
1
Reaction score
0
I'd like to know how to resolve this issue
 
Elite Diviner
Joined
Apr 3, 2013
Messages
476
Reaction score
204
check ur Launcher settings ( Ips and path ) and check if ur wz folder in IIS is set to bin/build and ofc check ur wz.xml in bin/build
 
Experienced Elementalist
Joined
May 28, 2017
Messages
225
Reaction score
127
What about you learn programming and fix that issue by your own!
 
Elite Diviner
Joined
Apr 3, 2013
Messages
476
Reaction score
204
There is loot Make sure u did everything correct

We had this Problem in the past aswell it normaly solves by following the Tutorial carefully
 
Last edited:
Newbie Spellweaver
Joined
May 14, 2020
Messages
18
Reaction score
0
There is loot Make sure u did everything correct

We had this Problem in the past aswell it normaly solves by following the Tutorial carefully

i followed the tutorial carefully and the problem is still there
 
Newbie Spellweaver
Joined
Jan 29, 2004
Messages
79
Reaction score
2
I have tested your file. It has to be fixed at 2-3 points for it to work.
compleate - Untouched Source V3 + Bin | Include Setup Guide - RaGEZONE Forums


bug found
1.CreateHost failed 5
Code:
Open Solution of RSUpdate.sln Search for:

binds[numBinds++] = RakNet::SocketDescriptor(port, "YOUR IP");

and change the ip to 127.0.0.1:

binds[numBinds++] = RakNet::SocketDescriptor(port, "127.0.0.1");

2.@in_UserID

Code:
Open Solution of RSUpdate (Launcher), in file: "WOCreateAccHelper.cpp", locate:

PHP:
int CCreateAccHelper::DoCreateAcc()
{
    r3d_assert(createAccCode == CA_Unactive);
    r3d_assert(*username);
    r3d_assert(*passwd1);
    r3d_assert(*passwd2);
    r3d_assert(*serial);

    CWOBackendReq req("api_AccRegister.aspx");
    req.AddParam("username", username);
    req.AddParam("password", passwd1);
    req.AddParam("serial",   serial);
    req.AddParam("email",    "donotuse@blablabla.com"); // previously that was order email.

and replace this by:

PHP:
int CCreateAccHelper::DoCreateAcc()
{
    r3d_assert(createAccCode == CA_Unactive);
    r3d_assert(*username);
    r3d_assert(*passwd1);
    r3d_assert(*passwd2);
    r3d_assert("XXXX-XXXX-XXXX-XXXX");

    CWOBackendReq req("api_AccRegister.aspx");
    req.AddParam("username", username);
    req.AddParam("password", passwd1);
    req.AddParam("serial",   "XXXX-XXXX-XXXX-XXXX");
    req.AddParam("email",    username); // previously that was order email.

Now open the Solution of WarZ Website API Script, and in file: "api_AccRegister.aspx.cs", locate:

PHP:
        SqlCommand sqcmd = new SqlCommand();
        sqcmd.CommandType = CommandType.StoredProcedure;
        sqcmd.CommandText = "WZ_ACCOUNT_CREATE";
        sqcmd.Parameters.AddWithValue("@in_IP", LastIP);
        sqcmd.Parameters.AddWithValue("@in_EMail", web.Param("username")); // login name from updater
        sqcmd.Parameters.AddWithValue("@in_Password", web.Param("password"));
        sqcmd.Parameters.AddWithValue("@in_ReferralID", 0);
        sqcmd.Parameters.AddWithValue("@in_SerialKey", web.Param("serial"));
        sqcmd.Parameters.AddWithValue("@in_SerialEmail", web.Param("email"));   // email used in serial key purchase

and replace by:

PHP:
        SqlCommand sqcmd = new SqlCommand();
        sqcmd.CommandType = CommandType.StoredProcedure;
        sqcmd.CommandText = "WZ_ACCOUNT_CREATE";
        sqcmd.Parameters.AddWithValue("@in_IP", LastIP);
        sqcmd.Parameters.AddWithValue("@in_Username", web.Param("username")); // login name from updater
        sqcmd.Parameters.AddWithValue("@in_Email", web.Param("username")); // login name from updater
        sqcmd.Parameters.AddWithValue("@in_Password", web.Param("password"));
        sqcmd.Parameters.AddWithValue("@in_ReferralID", 0);
        sqcmd.Parameters.AddWithValue("@in_SerialKey", web.Param("serial"));
        sqcmd.Parameters.AddWithValue("@in_SerialEmail", web.Param("email"));   // email used in serial key purchase

in SQL Server Configuration Manager > Protocals for WarZ > TCP/IP > IP Address

TCP Dynamic Ports input 144,55363,34000,34001,34011,34010,81

can't create account - Untouched Source V3 + Bin | Include Setup Guide - RaGEZONE Forums

create Start Server.bat save in C:\WarZ\bin
Code:
@Echo off
netsh firewall add allowedprogram C:\WarZ\bin\WZ_GameServer.exe "WZ_GameServer" ENABLE
netsh firewall add allowedprogram C:\WarZ\bin\MasterServer.exe "MasterServer" ENABLE
netsh firewall add allowedprogram C:\WarZ\bin\SupervisorServer.exe "SupervisorServer" ENABLE
Start masterserver.exe
Start supervisorserver.exe
Del /S C:\WarZ\Bin\logms\*.txt
Del /S C:\WarZ\Bin\logms\*.dmp
Del /S C:\WarZ\Bin\logss\*.txt
Del /S C:\WarZ\Bin\logss\*.dmp
Del /S C:\WarZ\Bin\logsv\*.txt
Del /S C:\WarZ\Bin\logsv\*.dmp
Del /S C:\WarZ\Bin\*.txt
echo [%DATE% - %TIME%]Server Started Successfully ! >>

Thank you SRC From Paulo Brificado and script start server from SKJ
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Jul 17, 2023
Messages
11
Reaction score
2
How to fix a boss standing on top of each other?Boss slap bounce error client game.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Nov 19, 2023
Messages
16
Reaction score
0
Does anyone have a reupload of the original topic update download?
Update #1:
SQL small fix (you can now buy character -> price $/GC with the correct picture)

This link is dead on the now deleted original topic.
 
Back
Top