• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Release] Repack zTeam S6E3+Sources

Banned
Banned
Joined
Apr 20, 2009
Messages
168
Reaction score
21
@natzugen

How to configure? my npc requered excelent items and jewel of chaos, how to configure?
 
Newbie Spellweaver
Joined
Feb 26, 2014
Messages
78
Reaction score
3
help fix bug Power slash visual bug ???
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Dec 9, 2005
Messages
5
Reaction score
1
i know 2 bugs, power slash visual and red dragon system message(Dragon invasion, but where? xD )
 
Banned
Banned
Joined
Apr 20, 2009
Messages
168
Reaction score
21
[Bugs i know Golden Lizard King when he spawns it will crash the GS]

How to fix golden lizard?
 
Newbie Spellweaver
Joined
Dec 20, 2014
Messages
55
Reaction score
2
VI: minh ko co zalo chi co yahoo tinh hoi ban code danh hieu thoi
 
Don't be afraid to ask!
Loyal Member
Joined
Jun 2, 2012
Messages
1,454
Reaction score
252

I see now the post "fix", but its a very very little fix, but I still dont know what about the castle siege. Maybe need to add one more if to check the target character is in sleep or not, if yes it must return true pvp.

Maybe?
Code:
if(g_CastleSiege.GetCastleState()==CASTLESIEGE_STATE_STARTSIEGE) {
if(lpTargetObj->Type == OBJ_USER && lpObj->Type == OBJ_USER) {
if( lpObj->GuildNumber!=0 && lpTargetObj->GuildNumber!=0 ) {
// same guild
	if(lpObj->GuildNumber == lpTargetObj->GuildNumber) {
	if ( gObjCheckUsedBuffEffect(lpTargetObj, 72) == TRUE ){
			return true;
		}else{
			return false;
               }
	}
	// same union
	if(lpObj->lpGuild->GetGuildUnion()!=0) {
	if(lpObj->lpGuild->GetGuildUnion()==lpTargetObj->lpGuild->GetGuildUnion()) {
	if ( gObjCheckUsedBuffEffect(lpTargetObj, 72) == TRUE ){
			return true;
	}else{
		return false;
            }
	}
     }
    }
  }
}
 
Last edited:
Newbie Spellweaver
Joined
Jan 21, 2015
Messages
16
Reaction score
1
gameserver crash - golden invasion :-( who fix this bug and how?
 
Last edited:
Newbie Spellweaver
Joined
Jan 21, 2015
Messages
16
Reaction score
1
I find thix fix, and it now Works, Golden Invasion work fine, lizard king work and not crush GS

find
Code:
for (n=0;n<OBJ_MAXMONSTER;n++)
{
MapNumber = 7;

if ( gObj[n].Class == 80 ) // Devil Lizard King
{
gObj[n].Live = TRUE;
gObj[n].MapNumber = MapNumber;

while ( gMSetBase.GetBoxPosition(MapNumber, 50, 10, 250, 200, gObj[n].X, gObj[n].Y) == 0 )
{

}

this->m_BossDevilLizardKingMapNumber = gObj[n].MapNumber;
this->m_BossDevilLizardKingMapX = gObj[n].X;
this->m_BossDevilLizardKingMapY = gObj[n].Y;

gObj[n].Life = gObj[n].MaxLife;
replace with

Code:
for (n=0;n<OBJ_MAXMONSTER;n++)
{


if ( gObj[n].Class == 80 ) // Devil Lizard King
{
gObj[n].Live = TRUE;
MapNumber = 7;
gObj[n].MapNumber = MapNumber;

while ( gMSetBase.GetBoxPosition(MapNumber, 50, 10, 250, 200, gObj[n].X, gObj[n].Y) == 0 )
{

}

this->m_BossDevilLizardKingMapNumber = gObj[n].MapNumber;
this->m_BossDevilLizardKingMapX = gObj[n].X;
this->m_BossDevilLizardKingMapY = gObj[n].Y;

gObj[n].Life = gObj[n].MaxLife;
gObj[n].TX = gObj[n].X;
gObj[n].TY = gObj[n].Y;
gObj[n].MTX = gObj[n].X;
gObj[n].MTY = gObj[n].Y;
gObj[n].StartX = gObj[n].X;
gObj[n].StartY = gObj[n].Y;
gObj[n].m_State = 1;
gObj[n].PathCount = 0;
 
Last edited:
-( . ) ( . )-
Loyal Member
Joined
Mar 28, 2012
Messages
1,356
Reaction score
68
source is compatible with VS2012?