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] United source files

Experienced Elementalist
Joined
Jun 5, 2013
Messages
256
Reaction score
163
Hi RageZone.
I wanted to know if it was normal that in the studio one can not edit the map?
We can not click on a props it does not select.
We can just put props, my not edit them.
 
Junior Spellweaver
Joined
Jun 15, 2016
Messages
139
Reaction score
37
I dont see why people are having such issues and then running to ragezone to instantly post help requests, I ran into errors and got this poop up and running in 45 minutes. The source is nothing special, the errors are not that hard. Simply look at the code and learn to understand it and try to solve the problem before seeing the error, taking a print screen and then running to ragezone for help.
 
Custom Title Activated
Loyal Member
Joined
Aug 23, 2010
Messages
1,544
Reaction score
423
I dont see why people are having such issues and then running to ragezone to instantly post help requests, I ran into errors and got this poop up and running in 45 minutes. The source is nothing special, the errors are not that hard. Simply look at the code and learn to understand it and try to solve the problem before seeing the error, taking a print screen and then running to ragezone for help.

i am active on ragezone since 2010 (for WarZ 2013) and i cannot capture a ss from won't run of exe ^^ i never get this problem before...
 
Newbie Spellweaver
Joined
May 9, 2016
Messages
81
Reaction score
3
A great source, but I am currently working to fix some of the features, such as the "B" keyboard does not work, there is no mall lottery box, I believe I can fix him.There is no PVE option
 
Experienced Elementalist
Joined
Aug 20, 2015
Messages
205
Reaction score
43
A great source, but I am currently working to fix some of the features, such as the "B" keyboard does not work, there is no mall lottery box, I believe I can fix him.There is no PVE option
PVE.system.is.working.and.inspecting.weapon.needs.just1.code:D
 
Junior Spellweaver
Joined
Dec 2, 2012
Messages
146
Reaction score
24
lP6Q9Cr - [Release] United source files - RaGEZONE Forums


How to sell ?
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jul 19, 2014
Messages
10
Reaction score
4
need help plz
/warz/api/php chack chear.. all

000000.098| WO_API: returned http405
000000.098| GetShopData FAILED, code: 8
000000.099| Reading game rewards
000000.105| WO_API: returned http405
000000.105| ApiGetDataGameRewards FAILED, code: 8
000000.105| !!! ERROR: failed to get game rewards
000000.105| !!! crashed, thread 812
000000.105| Creating minidump at logss\GS_200000950497e.dmp
000000.205| Minidump created.
 
Newbie Spellweaver
Joined
Jul 19, 2014
Messages
10
Reaction score
4
000000.023| r3dFS: there is no volume file wo_00.bin
000000.023| SERVER NAME: DESKTOP-V907A1M
000000.023| GameServerId: 2, map:1
000000.023| GameName: ServerTest
000000.023| CAsyncApiMgr starting
000000.023| Connecting to master server at 127.0.0.1:34009
000000.023| r3dNetwork: Creating client
000000.049| IP: 192.168.1.6
000000.049| r3dNetwork: connecting to 127.0.0.1:34009
000000.049| waiting: connecting, 30.0 sec left
000000.069| r3dNetwork: external ip: 127.0.0.1:35010
000000.070| Game: Initializing with 100 players
000000.070| Server time is Fri Dec 18 00:28:36 2076
000000.070| Starting server on port 34010
000000.070| r3dNetwork: Creating host at port 34010
000000.081| IP: 192.168.1.6
000000.093| Getting shop data
000010.096| WO_API: http timeout
000010.096| GetShopData FAILED, code: 8
000010.096| Reading game rewards
000020.099| WO_API: http timeout
000020.099| ApiGetDataGameRewards FAILED, code: 8
000020.099| !!! ERROR: failed to get game rewards
000020.100| !!! crashed, thread 10168
000020.100| Creating minidump at logss\GS_200000950798f.dmp
000020.238| Minidump created.

1.

2.

api not work ?

help me plz plz plz
 
Newbie Spellweaver
Joined
Jun 7, 2016
Messages
7
Reaction score
4
I dont see why people are having such issues and then running to ragezone to instantly post help requests, I ran into errors and got this poop up and running in 45 minutes. The source is nothing special, the errors are not that hard. Simply look at the code and learn to understand it and try to solve the problem before seeing the error, taking a print screen and then running to ragezone for help.
Some people do not have the ability of programming, they will only steal.
And ...as long as there is no consistent source, they are eager to jump out to ask, instead of thinking and solving problems by themselves, their brains without work, so can't understand what you mean, they just want to copy and paste.
we should give them technical support?
This is a problem, because they just cheat money, at every place.
 
Last edited:
Experienced Elementalist
Joined
Jun 5, 2013
Messages
256
Reaction score
163
Hello RageZone.
I return to my subject.
My Studio Works but the worry is that I do not edit props, or spawn.
I can not rotate or move anything.
Here is a video of what happens to me:
 
Junior Spellweaver
Joined
Jul 6, 2015
Messages
184
Reaction score
41
In, master or supervisor? please Log folder:
Master - Logms
Super - Logss
 
Newbie Spellweaver
Joined
Jun 24, 2015
Messages
25
Reaction score
1
this source don't use md5,

how can I do md5?
 
Last edited:
Initiate Mage
Joined
Dec 7, 2016
Messages
2
Reaction score
0
this source don't use md5,

how can I do md5?

Open SQL Stored producedures >FN_CreateMD5Password right click >modify>
all delete and replace
Code:
USE [WarZ]
GO
/****** Object:  StoredProcedure [dbo].[FN_CreateMD5Password]    Script Date: 12/21/2016 13:08:12 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[FN_CreateMD5Password]
    @in_Password varchar(100),
    [USER=1333447295]Out[/USER]_MD5 varchar(32) OUTPUT
AS
BEGIN
    SET NOCOUNT ON;

    declare @PASSWORD_SALT varchar(100) = 'g5sc4gs1fz0h'
    set [USER=1333447295]Out[/USER]_MD5 = SUBSTRING(master.dbo.fn_varbintohexstr(HashBytes('md5', @PASSWORD_SALT + @in_Password)), 3, 999)
    --set [USER=1333447295]Out[/USER]_MD5 = @in_Password
END
 
Back
Top