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!

BabyRan X

Newbie Spellweaver
Joined
Jan 17, 2024
Messages
24
Reaction score
3
Try this, also must have the same loginport param.ini and loginserver
thank you

Try this, also must have the same loginport param.ini and loginserver
1710230683871 - BabyRan X - RaGEZONE Forums


now stuck on reading the server
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Jun 25, 2023
Messages
147
Reaction score
25
How to unlimited reborn? But the stat given from 100 reborn will not be increase . Only reborn is unlimited
because its impossible

data type limit ...
if you keep increasing stats you would experience overflow ... everything has limit

hp,gold,pow,dex,int ... etc
 
Junior Spellweaver
Joined
Feb 3, 2022
Messages
187
Reaction score
16
because its impossible

data type limit ...
if you keep increasing stats you would experience overflow ... everything has limit

hp,gold,pow,dex,int ... etc
how to make it possible unlimited reborn even the stat dont change?
 
Newbie Spellweaver
Joined
Jan 17, 2024
Messages
19
Reaction score
2
hello guys can someone share all of the wars .ini of this client? like cw cdm sw tw free pk and rvb .ini please
thank you ^_^ ^_^
 
Newbie Spellweaver
Joined
Jan 17, 2024
Messages
19
Reaction score
2
can someone share glogic please with tw guid rr ctf rvb sw .ini please thank a lot guys
 
Junior Spellweaver
Joined
Feb 3, 2022
Messages
187
Reaction score
16
How to disable or removed extreme class in character selection?
 
Junior Spellweaver
Joined
Apr 2, 2019
Messages
137
Reaction score
27
Does anyone have gui for join button? ty
1711027666443 - BabyRan X - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 27, 2024
Messages
16
Reaction score
0
Whats the code?
RanGame1>Programability>Stored Procedure>Find sp_Extreme > Right Click and Click Modify
USE [RanGame1]
GO
/****** Object: StoredProcedure [dbo].[sp_Extreme] Script Date: 3/21/2024 11:35:08 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- ??? ?/? ?? ??? ????.
ALTER PROCEDURE [dbo].[sp_Extreme]
@nUserNum int

AS
DECLARE
@error_var int,
@rowcount_var int

SET NOCOUNT ON
Select (MSum-MS) As M, (FSum-FS) As F
From
(
Select isnull(Sum(M),0) As MSum, isnull(Sum(F),0) As FSum, isnull(Sum(MS),0) As MS, isnull(Sum(FS),0) As FS
From
(
Select ChaClass
,
Case ChaClass
When 1 Then 1
When 2 Then 1
When 256 Then 1
When 512 Then 1
When 1024 Then 1
When 4096 Then 1
When 16384 Then 1
Else 0
End As M
,
Case ChaClass
When 4 Then 1
When 8 Then 1
When 64 Then 1
When 128 Then 1
When 2048 Then 1
When 8192 Then 1
When 32768 Then 1
Else 0
End As F
,
Case ChaClass
When 16 Then
Case ChaDeleted
When 1 Then 0
Else 1
End
Else 0
End As MS
,
Case ChaClass
When 32 Then
Case ChaDeleted
When 1 Then 0
Else 1
End
Else 0
End As FS
From ChaInfo Where UserNum=@nUserNum And (
( ChaClass=16 OR ChaClass=32 )
OR ( ( ChaClass=1 OR ChaClass=2 OR ChaClass=4 OR ChaClass=8 OR ChaClass=64 OR ChaClass=128 OR ChaClass=256 OR ChaClass=512 OR ChaClass=1024 OR ChaClass=2048 OR ChaClass=4096 OR ChaClass=8192 OR ChaClass=16384 OR ChaClass=32768 ) AND ChaLevel>=190 ) ) < Change this 190 to 999
) As t
) As tt
"
 
Newbie Spellweaver
Joined
Jan 17, 2024
Messages
19
Reaction score
2
hello everyone
where to check in source for events and wars?
like slot event and wars TW SW RVB CDM CW?
thank you
 
Junior Spellweaver
Joined
Apr 2, 2019
Messages
137
Reaction score
27

Attachments

You must be registered for see attachments list
Last edited:
RaGEZONE VIP
[VIP] Member
Joined
Jul 18, 2023
Messages
372
Reaction score
78
In case you know how to fix it, do you mind sharing on what's missing here? thanks

View attachment 258363
/*Party Request Modal Window */
{
m_pPartyReqModalWindow = new CPartyRequestModalWindow;
m_pPartyReqModalWindow->Create ( PARTYREQUEST_MODAL, "BASIC_WINDOW", UI_FLAG_XSIZE | UI_FLAG_YSIZE );
m_pPartyReqModalWindow->CreateBaseWindowLightGray ( "PARTYREQUEST_MODAL", "Request Join TANGA" );
m_pPartyReqModalWindow->CreateSubControl ();
m_pPartyReqModalWindow->SetAlignFlag ( UI_FLAG_CENTER_X | UI_FLAG_CENTER_Y );
RegisterControl ( m_pPartyReqModalWindow );
ShowGroupFocus ( PARTYREQUEST_MODAL );
}


try this
 
Junior Spellweaver
Joined
Apr 2, 2019
Messages
137
Reaction score
27
/*Party Request Modal Window */
{
m_pPartyReqModalWindow = new CPartyRequestModalWindow;
m_pPartyReqModalWindow->Create ( PARTYREQUEST_MODAL, "BASIC_WINDOW", UI_FLAG_XSIZE | UI_FLAG_YSIZE );
m_pPartyReqModalWindow->CreateBaseWindowLightGray ( "PARTYREQUEST_MODAL", "Request Join TANGA" );
m_pPartyReqModalWindow->CreateSubControl ();
m_pPartyReqModalWindow->SetAlignFlag ( UI_FLAG_CENTER_X | UI_FLAG_CENTER_Y );
RegisterControl ( m_pPartyReqModalWindow );
ShowGroupFocus ( PARTYREQUEST_MODAL );
}


try this


Your party finder code​
C++:
/*Party Request Modal Window */
{
m_pPartyReqModalWindow = new CPartyRequestModalWindow;
m_pPartyReqModalWindow->Create ( PARTYREQUEST_MODAL, "BASIC_WINDOW", UI_FLAG_XSIZE | UI_FLAG_YSIZE );
m_pPartyReqModalWindow->CreateBaseWindowLightGray ( "PARTYREQUEST_MODAL", "Request Join TANGA" );
m_pPartyReqModalWindow->CreateSubControl ();
m_pPartyReqModalWindow->SetAlignFlag ( UI_FLAG_CENTER_X | UI_FLAG_CENTER_Y );
RegisterControl ( m_pPartyReqModalWindow );
ShowGroupFocus ( PARTYREQUEST_MODAL );
}
BBR Code​

C++:
/*party Link , RRSEC, 2022/03/11 */
        m_pPartyLinkWindow = new CRRSECPartyLinkWindow;
        m_pPartyLinkWindow->Create( PARTY_LINK_WINDOW, "BASIC_WINDOW", UI_FLAG_XSIZE | UI_FLAG_YSIZE );
        m_pPartyLinkWindow->CreateBaseWindowLightGray( "PARTY_LINK_WINDOW", NULL );
        m_pPartyLinkWindow->CreateSubControl();
        m_pPartyLinkWindow->ResetAlignFlag();
        m_pPartyLinkWindow->SetAlignFlag( UI_FLAG_CENTER_Y );
        m_pPartyLinkWindow->SetTitleName( ID2GAMEWORD("PARTY_LINK_WINDOW_TEXT", 0) );
        RegisterControl( m_pPartyLinkWindow, true );
        ShowGroupFocus( PARTY_LINK_WINDOW );



Is this correct? , i used party finder by BBR
 
Back
Top