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!

Ep 11 Source Code

Newbie Spellweaver
Joined
Jan 10, 2016
Messages
98
Reaction score
0
@November Man @Tsukaima

Guide fix Upgrade Item with Burr and Ganil

Open GLogicData.h

Find

Code:
GRADE_HIGH            = 15,

Change to

Code:
    GRADE_HIGH            = 9,
    GRADE_LIMIT_MAX        = 50,

GLogicData.cpp

Find
Code:
float        fDAMAGE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]

Change to

Code:
    float        fDAMAGE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]    =    // 최상위 등급 공격력 증가율
    {
        1.0f, 1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
    };

    float        fDEFENSE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]    =    // 최상위 등급 공격력 증가율
    {
        1.0f, 1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
    };

    WORD        wUSE_GRADE_NUM[GRADE_LIMIT_MAX-GRADE_HIGH]    =    // 최상위 등급시 필요한 연마제 갯수
    {
        1, 2, 3, 4, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6
    };

And find

Code:
float fGRADE_RATE[GRADE_LIMIT_MAX]

Change to :

Code:
    float fGRADE_RATE[GRADE_LIMIT_MAX]                = {    100,    100,    100,    100, 33.33f, 
                                                        25.00f, 20.00f, 16.67f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        15.00f, 15.00f, 15.00f, 15.00f, 15.00f,
                                                        };
    float fGRADE_RESET_RATE[GRADE_LIMIT_MAX]        = {      0,      0,      0,      0, 10.00f, 
                                                        20.00f, 30.00f, 40.00f, 50.00f, 50.00f, 
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        50.00f, 50.00f, 50.00f, 50.00f, 50.00f,
                                                        };
    float fGRADE_TERMINATE_RATE[GRADE_LIMIT_MAX]    = {      0,      0,      0,      0, 40.00f, 
                                                        50.00f, 60.00f, 70.00f, 70.00f, 70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        70.00f,    70.00f,    70.00f,    70.00f,    70.00f,
                                                        };



Build your source


**// Glogic.rcc //**

Open Default.charclass

Find

Code:
wUSE_GRADE_NUM
fDAMAGE_GRADE_TOP
fDEFENSE_GRADE_TOP

Change to :

Code:
wUSE_GRADE_NUM        { 1, 2, 3, 4, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6 }                    
                                //    10     11    12    13    14    15    16        8        9        10        11        12        13        14        15
fDAMAGE_GRADE_TOP        {  1.5f,    1.7f,    1.9f,    2.1f,    2.3f,    2.5f,    2.7f,    2.9f,    3.1f,    3.3f,    3.5f,    3.7f,    3.9f,    4.1f,    4.3f,    4.5f,    4.7f,    4.9f,    5.1f,    5.3f,    5.5f,    5.7f,    5.9f,    6.1f,    6.3f,    6.5f,    6.7f,    6.9f,    7.1f,    7.3f,    7.5f,    7.7f,    7.9f,    8.1f,    8.3f,    8.5f,    8.7f,    8.9f,    9.1f,    9.3f,    9.5f}
fDEFENSE_GRADE_TOP        {  1.3f,    1.5f,    1.7f,    1.9f,    2.1f,    2.3f,    2.5f,    2.7f,    2.9f,    3.1f,    3.3f,    3.5f,    3.7f,    3.9f,    4.1f,    4.3f,    4.5f,    4.7f,    4.9f,    5.1f,    5.3f,    5.5f,    5.7f,    5.9f,    6.1f,    6.3f,    6.5f,    6.7f,    6.9f,    7.1f,    7.3f,    7.5f,    7.7f,    7.9f,    8.1f,    8.3f,    8.5f,    8.7f,    8.9f,    9.1f,    9.3f}
fGRADE_RATE                    {    100,    100,    100,    100,    90.00f,    85.00f,    75.00f,    70.00f,    70.00f,     55.00f,     45.00f,     35.00f,    30.00f,    15.00f,    5.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     100.00f,     90.00f,     80.00f,     70.00f,     60.00f,     50.00f,     40.00f,     30.00f,     20.00f,     10.00f}
fGRADE_RESET_RATE            {    0,      0,      0,      0,      0.00f,        0.00f,        5.00f,    5.00f,    5.00f,    7.00f,    15.00f,    20.00f,    25.00f,    30.00f,    35.00f,    0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    00.00f,    30.00f,    35.00f,    40.00f,    45.00f,    50.00f}
fGRADE_TERMINATE_RATE        {      0,      0,      0,      0,      0.00f,      5.00f,    10.00f,    15.00f,    25.00f,    30.00f,    35.00f,    35.00f,    35.00f,    30.00f,    30.00f,    0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        0.00f,        20.00f,    100.00f,    20.00f,    30.00f,    40.00f,    50.00f}

NOTE : Dont forget change Item Abrasive to Highest

teza123 , bro error when compiling , initializers error
 
Newbie Spellweaver
Joined
Jan 10, 2016
Messages
98
Reaction score
0
I already tried multiple times sir teza123 , can you share yours?


teza123, issue is resolved now, but what if i change this value in glogicdata.h GRADE_HIGH to 25, and the GRADE_LIMIT_MAX to 30.

What is the proper setting in glogicdata.cpp of:

fDAMAGE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]

fDEFENSE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]

wUSE_GRADE_NUM[GRADE_LIMIT_MAX-GRADE_HIGH]
 
Newbie Spellweaver
Joined
Oct 20, 2011
Messages
75
Reaction score
10
I already tried multiple times sir teza123 , can you share yours?


teza123, issue is resolved now, but what if i change this value in glogicdata.h GRADE_HIGH to 25, and the GRADE_LIMIT_MAX to 30.

What is the proper setting in glogicdata.cpp of:

fDAMAGE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]

fDEFENSE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]

wUSE_GRADE_NUM[GRADE_LIMIT_MAX-GRADE_HIGH]

ํYou should to change amount 1.0f = value GRADE_LIMIT_MAX ......30......

So,I think your config have 30 (1.0f value)

It mean
Code:
float        fDAMAGE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]    =    // 최상위 등급 공격력 증가율
    {
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
            1.0f, 1.0f, 1.0f,    1.0f,1.0f,
    }; //1.0f 30 vaule

I dont sure this funtion working.

Why dont use my code? I think you can copy and use my function GRADE_LIMIT_MAX 50 and you can set If you want wGRADE_MAX 30 in default.charclass
 
Last edited:
Newbie Spellweaver
Joined
Jan 10, 2016
Messages
98
Reaction score
0
@teza123 yep bro, i already used that thanks for that, but i just wondering on how to set my fineburr/lux to upgrade up to +25 and ganil to +30 , i tried in source, but error in compiling.
 
Experienced Elementalist
Joined
Sep 22, 2008
Messages
286
Reaction score
10
TheLeaker27 - Ep 11 Source Code - RaGEZONE Forums

Allready change this to make sw buff disable but after SW fisnish buff still show

TheLeaker27 - Ep 11 Source Code - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Jan 10, 2016
Messages
98
Reaction score
0
@kazuyama bro what is the xml, to allign chat?, wanted to know since some of the text on my chatbox was hidden, like system is displayed as syste.



Bro IamDJDRB , bro can you help us or give us a hint, on how to fix force rebirth during tyranny?
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Mar 13, 2017
Messages
3
Reaction score
0
GUI(FINALLY):
TheLeaker27 - Ep 11 Source Code - RaGEZONE Forums
Originally Posted by kazuyama TheLeaker27 - Ep 11 Source Code - RaGEZONE Forums
oe this is my review
TheLeaker27 - Ep 11 Source Code - RaGEZONE Forums


dont have char render

TheLeaker27 - Ep 11 Source Code - RaGEZONE Forums

out Of the box


this is my GUI

and i have problem too towerwar cant start i dont know how to start the tower war but i already make towerwars.ini for gloogic server


i hope master on here help me :D tks before



Where can I find the GUI?
 
Experienced Elementalist
Joined
Aug 13, 2007
Messages
210
Reaction score
14
how to fix capture effect the tower with logo in top of tower
 
Joined
Oct 18, 2010
Messages
558
Reaction score
45
@ IamDJDRB
Please help :)

Server Specs:
Processor: Intel Xeon 2.67Ghz (8 Core)
RAM: 8 GB
OS: Windows 2008 R2
SQL: 2008 R2
Speed Test: Download 70+mbps / Upload 200+ mbps

Thanks :)

Client Disconnect After 5 Minutes of AFK- How to solve?

-Internet Connection is Faster Both Client and Server Side.
-Heartbeat already Off by changing 1 to 0

I think its in the source because its accurate that every 5 Minutes of AFK you will get Disconnected.
Its a trigger because when your ingame and keep playing your character will not disconnect :D

Please share how to disable that function :)

Hope Someone will share about this thanks.
 
Back
Top