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!

Source Base VS19

Newbie Spellweaver
Joined
Jun 2, 2022
Messages
12
Reaction score
3


Sorry I made the comment in a hurry at work hahaha
 
Newbie Spellweaver
Joined
Jun 2, 2022
Messages
12
Reaction score
3
I mean I have to compile it in USA_realase
 
Be a kicker than cheater.
Joined
Dec 17, 2009
Messages
733
Reaction score
26
27/07/21 - Zeronis Update
Never forget my project
don't worry, I will name my folder to "..\Gunz\Zeronis Update 2021"
Starting today / Today, I am trying to explore your source modified. Will also reply here if there are problems or bugs that will be shown to my future built prj.

- - - - - -
added:
Great! I learned something from this USA source.
 
Last edited:
Experienced Elementalist
Joined
May 12, 2014
Messages
263
Reaction score
62
don't worry, I will name my folder to "..\Gunz\Zeronis Update 2021"
Starting today / Today, I am trying to explore your source modified. Will also reply here if there are problems or bugs that will be shown to my future built prj.

- - - - - -
added:
Great! I learned something from this USA source.

Commits on Apr 9, 2023​


I'm glad that something has interested you, if you have any questions, don't hesitate to write to me in DM, regarding the bug, "finish a quest and enter again", leak memory animation, you can ask me and I'll tell you what it is.
 
Last edited:
Newbie Spellweaver
Joined
Jun 2, 2022
Messages
12
Reaction score
3

Commits on Apr 9, 2023​


I'm glad that something has interested you, if you have any questions, don't hesitate to write to me in DM, regarding the bug, "finish a quest and enter again", leak memory animation, you can ask me and I'll tell you what it is.
and what is that bug?
 
Be a kicker than cheater.
Joined
Dec 17, 2009
Messages
733
Reaction score
26
Adding an "Update#.mrs" file won't read the file.
Can you fix it?
Also in quest there is a problem (like texture)
also after another quest stage will make the game crash.

Today, there is no sound. How to fix this?
Here is the mlog:
InitialLoading success.
interface Initialize success
ZApplication::OnCreate : begin
Error : You are using the wrong DLL version! You should be using FMOD 3.75

fail to load sound effect

Now I found out that 3.75f to changed to 3.74f
and now it works
 
Last edited:
Be a kicker than cheater.
Joined
Dec 17, 2009
Messages
733
Reaction score
26
(1) How to fix this random messages:
1711708465112 - Source Base VS19 - RaGEZONE Forums


Also this one:
(2) have anyone having this kind of problem? how to fix?

1711869592598 - Source Base VS19 - RaGEZONE Forums


(3) also from my previous comment:
Adding an "Update#.mrs" file won't read the file. Can you/anyone fix it?

(4) Also in quest there is a problem (like texture). Any solution?

(5) Also after another quest stage will make the game crash. Any solution?
 

Attachments

You must be registered for see attachments list
Last edited:
Experienced Elementalist
Joined
May 12, 2014
Messages
263
Reaction score
62
The problem with the quest is related to the loading and unloading of animations when the quest is closed, it should be cleaned, to solve it I wanted to completely paste the realspace2 of refined gunz, which is the one I am using to base on this code 1.5


Regarding the update system, it no longer works, everything was replaced by the fast loading of refined gunz, you must replace the file completely.
 
Elite Diviner
Joined
Sep 7, 2020
Messages
459
Reaction score
78
C++:
my noob fix high cpu
RealSpace2.cpp
find void RSetFrameLimitPerSeceond(unsigned short nFrameLimit)
replace to

void RSetFrameLimitPerSeceond(unsigned short nFrameLimit)
{
    switch (nFrameLimit)
    {
    case 0:    {    g_nFrameLimitValue = 60;        }    break;
    case 1:    {    g_nFrameLimitValue = 120;    }    break;
    case 2:    {    g_nFrameLimitValue = 240;    }    break;
    case 3:    {    g_nFrameLimitValue = 333;    }    break;
    default:{    g_nFrameLimitValue = 60;        }    break;
    }
}

šŸ˜ šŸ¤£
 
Back
Top