Ye ye, we already fixed that, nothing to do anymore.
can you share the fix on server side brother thank you!
31-08-15
SmileYzn
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by jeffzkie69
can you share the fix on server side brother thank you!
Is not a fix, but is a configuration for MasterSkillTreeData on client, and you need to add lacking skills for MasterSkillTree.txt
You can try to export MasterSkillTreeData.bmd to MasterSkillTree.txt, and add lacking first column for ids.
afther that, you need only to add the lacking skills (two i guess)
- - - Updated - - -
Quote:
Originally Posted by SmileYzn
Is not a fix, but is a configuration for MasterSkillTreeData on client, and you need to add lacking skills for MasterSkillTree.txt
You can try to export MasterSkillTreeData.bmd to MasterSkillTree.txt, and add lacking first column for ids.
afther that, you need only to add the lacking skills (two i guess)
EDIT:
The skills Blood Howling and Blood Howling Strengthener, is an normal attack or Buff?
Is not a fix, but is a configuration for MasterSkillTreeData on client, and you need to add lacking skills for MasterSkillTree.txt
You can try to export MasterSkillTreeData.bmd to MasterSkillTree.txt, and add lacking first column for ids.
afther that, you need only to add the lacking skills (two i guess)
- - - Updated - - -
EDIT:
The skills Blood Howling and Blood Howling Strengthener, is an normal attack or Buff?
[10:41:03] SELECT PayCode,DATEDIFF(mi,GETDATE(),ExpireDate) as LeftTime,DATEPART(year,ExpireDate) as EYEAR,DATEPART(month,ExpireDate) as EMONTH,DATEPART(day,ExpireDate) as EDAY,DATEPART(hour,ExpireDate) as EHOUR,DATEPART(minute,ExpireDate) as EMINUTE FROM PremiumData WHERE AccountID = 'admin'
[10:41:03] [ 192.168.1.2 ][ admin ] Close User
[10:41:03] exec WZ_DISCONNECT_MEMB 'admin'
:glare:
01-09-15
jeffzkie69
re: [Release] zTeam Season 8 Episode 2 (Source)
SmileYzn can you help me fix problem on party system because example if you are in same guild you can party but your alliance cannot party hope you can help me thank you so much!
01-09-15
SmileYzn
re: [Release] zTeam Season 8 Episode 2 (Source)
I already shared the fix in the topic i guess.
Look at previous pages.
01-09-15
chenzhen
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by SmileYzn
I already shared the fix in the topic i guess.
Look at previous pages.
mate could you please share fix RF skilltree? thanks
01-09-15
SmileYzn
re: [Release] zTeam Season 8 Episode 2 (Source)
Quote:
Originally Posted by chenzhen
mate could you please share fix RF skilltree? thanks
I already posted about this, i did not remember if is in this topic, or other.
Search, please.
Edit: About fix for MultiServer not crash GS:
I have created to new players that have registred when login,
or table dbo.PremiumData a option to Add Premium...
For this you need to change JoinServerDB.cpp
Spoiler:
Code:
int GetBill(int number,char* szId,SDHP_BILLSEARCH_RESULT * lpMsg)
{
ReCalcBill:
char szQuery[512];
int iIndex = gObjSearchUser(szId);
#ifdef ZTEAMDB
sprintf(szQuery,"SELECT PayCode, DATEDIFF(mi,GETDATE(),ExpireDate) AS LeftTime,DATEPART(year,ExpireDate) AS EYEAR,DATEPART(month,ExpireDate) AS EMONTH,DATEPART(day,ExpireDate) AS EDAY,DATEPART(hour,ExpireDate) AS EHOUR,DATEPART(minute,ExpireDate) AS EMINUTE FROM PremiumData WHERE AccountID = '%s'",szId);
#else
sprintf(szQuery,"SELECT pay_code, DATEDIFF(mi,GETDATE(),ExpireDate) AS LeftTime,DATEPART(year,ExpireDate) AS EYEAR,DATEPART(month,ExpireDate) AS EMONTH,DATEPART(day,ExpireDate) AS EDAY,DATEPART(hour,ExpireDate) AS EHOUR,DATEPART(minute,ExpireDate) AS EMINUTE FROM MEMB_PREMIUM WHERE memb___id = '%s'",szId);
#endif
if(g_JoinServerConnectDB.Exec(szQuery) == TRUE)
{
g_Window.ServerLogAdd(ST_JOINSERVER,"[PREMIUM] Bill user add [%s] PayCode [%d] Days added to account [%d]",szId,PremiumType,g_JSInfo.AutoPremiumDays);
}
struct JSInfo
{
WORD TCPPort;
WORD UDPPort;
char UDPIp[17];
char dbDSN[64];
char dbDSN2[64];
int bMD5;
int bAutoreg;
BYTE AutoRegMinLength;
int bPremiumBlock;
BOOL bAutoPremiumAdd;
int AutoPremiumType;
int AutoPremiumDays;
};