Same problem.
Printable View
anyone know how to disable SW bonus on source??
@November Man @Tsukaima
Guide fix Upgrade Item with Burr and Ganil
Open GLogicData.h
Find
Change toCode:GRADE_HIGH = 15,
GLogicData.cppCode:GRADE_HIGH = 9,
GRADE_LIMIT_MAX = 50,
Find
Change toCode:float fDAMAGE_GRADE_TOP[GRADE_LIMIT_MAX-GRADE_HIGH]
And findCode: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
};
Change to :Code:float fGRADE_RATE[GRADE_LIMIT_MAX]
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
Change to :Code:wUSE_GRADE_NUM
fDAMAGE_GRADE_TOP
fDEFENSE_GRADE_TOP
NOTE : Dont forget change Item Abrasive to HighestCode: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}
http://forum.ragezone.com/attachment...d=160065&stc=1
Can not exceed 255, otherwise it can not be synthesized.
how to fix?
I want to set it to 500 but do not work.
[QUOTE=teza123;8765644]You can disable buff SW and Tyranny on Default.charclass
//SW_FILE[/QUOTi know it but i dont want sw or tw OFF,,ijust want my sw Still ON but after SW finish not buff for winner the winner just got item not buff
@teza123 : Thanks Sir.
I checked now. My source code is no problem.
And I solved now. Because this weapon or armor in item.isf of GG Client is not set Item Abrasive to highest.
It made upgrade 10 or higher is failed.
( I use a normal upgrade like official server. )
Sorry I'm bad english.
Whats this? How to solve? thanks.
Quote:
ERROR : dwGUID>=m_dwMaxClient PetGUID : -1 dwMaxClient : 200
ERROR : dwGUID>=m_dwMaxClient SummonGUID : -1 dwMaxClient : 200
@teza123 , bro error when compiling , initializers error
I already tried multiple times sir @teza123 , can you share yours?
- - - Updated - - -
@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
I dont sure this funtion working.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
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
@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.
https://scontent.xx.fbcdn.net/v/t34....bd&oe=58C8D87F
Allready change this to make sw buff disable but after SW fisnish buff still show
https://scontent.xx.fbcdn.net/v/t34....8e&oe=58C7E44D
Anyone here can share client?old gg client bugtrap on field server
Sent from my SM-N910C using Tapatalk