Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 23:16

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Dragon Set's Effekte

Discussion on Dragon Set's Effekte within the Flyff Private Server forum part of the Flyff category.

Closed Thread
 
Old   #1
 
Propation's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 167
Received Thanks: 35
Dragon Set's Effekte

Hey Leute,
Ich hab mir die Dragon Set's vom Offi zusammen gebastelt und hab nen bug den ich nicht los werde


Ich trage definitiv 6/6 Lightning Speed CS, aber er erkennt den Suit und die Boots nicht.
wisst ihr vielleicht woran es liegt?
hier meine propitemEtc.inc
Quote:
SetItem 199 IDS_PROPITEMETC_INC_000199
{
Elem
{
II_ARM_M_CHR_BULL01HAT167 PARTS_HAT
II_ARM_M_CHR_BULL01SUIT167 PARTS_BOOTS
II_ARM_M_CHR_BULL01GLOVES167 PARTS_GLOVE
II_ARM_M_CHR_BULL01SHOES167 PARTS_CLOTH
II_ARM_S_CLO_MAS_BALL12 PARTS_MASK
II_ARM_S_CLO_CLO_BALL18 PARTS_CLOAK
}
Avail
{
DST_ATKPOWER_RATE 10 4
DST_CHR_CHANCECRITICAL 10 4
DST_SPEED 10 4
DST_CRITICAL_BONUS 5 5
DST_STAT_ALLUP 5 6
}
Vielen Dank für jede Hilfe!
Propation is offline  
Old 11/22/2016, 20:00   #2
 
elite*gold: 0
Join Date: Oct 2012
Posts: 948
Received Thanks: 157
II_ARM_M_CHR_BULL01SUIT167 PARTS_BOOTS = PARTS_FOOT

II_ARM_M_CHR_BULL01SHOES167 PARTS_CLOTH = PARTS_UPPER_BODY

unless you have changed the PARTS your self.
Cause CS sets are using

PARTS_CAP / PARTS_HAT
PARTS_UPPER_BODY
PARTS_FOOT
PARTS_HAND

However it seems you are using different parts.
Check your Spec_Item to see what its defined as.
raventh1984 is offline  
Old 11/22/2016, 20:08   #3
 
NoWay | Phoenix's Avatar
 
elite*gold: 0
Join Date: May 2014
Posts: 252
Received Thanks: 58
Damit funktioniert (4/4) zu 100%!
Die restlichen 2 sachen musst du einfach hinzufügen

Code:
//EXP Set
SetItem		246   "Darkness Experience Set (M)"
{
	Elem
	{
		II_ARM_M_WIZARD_CLOTH		        PARTS_CLOTH
		II_ARM_M_WIZARD_BOOTS	 	        PARTS_BOOTS
		II_ARM_M_WIZARD_HAT		        PARTS_HAT
		II_ARM_M_WIZARD_GLOVES		        PARTS_GLOVE
	}
	Avail
	{
		DST_EXPERIENCE			50	4
		DST_SPEED				25	4
		DST_STAT_ALLUP			20	4
		DST_ATKPOWER_RATE		5	4
	}
}
NoWay | Phoenix is offline  
Old 11/22/2016, 20:38   #4
 
elite*gold: 0
Join Date: Oct 2012
Posts: 948
Received Thanks: 157
Hmm i checked the source about it.
Could it be that it has something to do with this
Code:
int CMover::GetSetItem( CItemElem* pItemElem )
{
	static	DWORD adwParts[4]	= { PARTS_UPPER_BODY, PARTS_HAND, PARTS_FOOT, PARTS_CAP	};
	if( !pItemElem )
	{
		pItemElem	= GetEquipItem( PARTS_UPPER_BODY );
	}
	else
	{
		if( !IsSetItemPart( pItemElem->GetProp()->dwParts ) )
			return 0;
	}

	if( !pItemElem )
		return 0;

	if( pItemElem->IsFlag( CItemElem::expired ) )
		return 0;

	int nAbilityOption	= pItemElem->GetAbilityOption();
	DWORD dwParts	= pItemElem->GetProp()->dwParts;

	for( int i = 0; i < 4; i++ )
	{
		if( dwParts != adwParts[i] )
		{
			pItemElem	= GetEquipItem( adwParts[i] );
			if( pItemElem && !pItemElem->IsFlag( CItemElem::expired ) )
			{
				if( nAbilityOption > pItemElem->GetAbilityOption() )
					nAbilityOption	= pItemElem->GetAbilityOption();
				continue;
			}
			return 0;
		}
	}
	return nAbilityOption;
}

int CMover::GetSetItemParts(DWORD dwParts)
{
	CItemElem* pItemElem = NULL;
	ItemProp * pItemProp = NULL;
	
	pItemElem = GetEquipItem( dwParts );
	
	int nAbilityOption = 0;
	
	if( pItemElem )
	{
		nAbilityOption = pItemElem->GetAbilityOption();
	} else
	{
		if( IsActiveMover() )
			return 0;
		nAbilityOption	= (m_aEquipInfo[dwParts].nOption & 0xFF );
	}

	return nAbilityOption;
}
		
int CMover::GetSetItemClient()
{
	static	DWORD adwParts[4]	= { PARTS_UPPER_BODY, PARTS_HAND, PARTS_FOOT, PARTS_CAP	};

	int nAbilityOption	= 10;
	
	for( int i = 0; i < 4; i++ )
	{
		int nValue	= GetSetItemParts( adwParts[i] );
		if( nValue == 0 )
			return 0;
		if( nAbilityOption > nValue )
			nAbilityOption	= nValue;
	}

	return nAbilityOption;
}

BOOL CMover::IsSetItemPart( DWORD dwParts )
{
	switch( dwParts )
	{
		case PARTS_UPPER_BODY:
		case PARTS_HAND:
		case PARTS_FOOT:
		case PARTS_CAP:
			return TRUE;
	}
	return FALSE;
}
raventh1984 is offline  
Thanks
1 User
Old 11/24/2016, 06:39   #5
 
yazuka21's Avatar
 
elite*gold: 0
Join Date: Mar 2014
Posts: 305
Received Thanks: 19
CHECK THIS...

II_ARM_M_CHR_BULL01HAT167 PARTS_HAT <<<< HAT Check!
----------------------------------------------------------------------------------------------
II_ARM_M_CHR_BULL01SUIT167 PARTS_BOOTS <<<< Suit the defineitem but PARTS_BOOTS
-----------------------------------------------------------------------------------------------
II_ARM_M_CHR_BULL01GLOVES167 PARTS_GLOVE <<<< Check !/ Correct.
-----------------------------------------------------------------------------------------------
II_ARM_M_CHR_BULL01SHOES167 PARTS_CLOTH <<<< defineitem Shoes but PARTS_CLOTH
------------------------------------------------------------------------------------------------
II_ARM_S_CLO_MAS_BALL12 PARTS_MASK
II_ARM_S_CLO_CLO_BALL18 PARTS_CLOAK
yazuka21 is offline  
Old 11/24/2016, 11:36   #6
 
NoWay | Phoenix's Avatar
 
elite*gold: 0
Join Date: May 2014
Posts: 252
Received Thanks: 58
Replace your Code with mine. (FULL)
It will work to 100%.

Code:
//New CS Set for Propation
SetItem		199   "New CS Set (Male)"
{
	Elem
	{
		II_ARM_M_CHR_BULL01HAT167		        PARTS_HAT
		II_ARM_M_CHR_BULL01SUIT167	 	        PARTS_CLOTH
		II_ARM_M_CHR_BULL01GLOVES167		        PARTS_GLOVE
		II_ARM_M_CHR_BULL01SHOES167		        PARTS_BOOTS
		II_ARM_S_CLO_MAS_BALL12		                PARTS_MASK
		II_ARM_S_CLO_CLO_BALL18    		        PARTS_CLOAK
	}
	Avail
	{
                DST_ATKPOWER_RATE                10 4
                DST_CHR_CHANCECRITICAL         10 4
                DST_SPEED                              10 4
                DST_CRITICAL_BONUS                 5 5
                DST_STAT_ALLUP                       5 6
	}
}
NoWay | Phoenix is offline  
Old 11/24/2016, 11:50   #7
 
Propation's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 167
Received Thanks: 35
Vielen Dank, hat funktioniert
Propation is offline  
Closed Thread


Similar Threads Similar Threads
Video Effekte? z.b. Explosionen. flunken o.ä. Edit Effekte
11/05/2015 - Video Art - 11 Replies
Hallöchen, ich suche paar Effekte für Gaming Edit's! Ansich würde mir reichen, wenn ihr mir sagen könntet wo ich welche her bekomm' da google mir nicht weiter hilft.. :handsdown: Als vorstellung habe ich jetzt: Diverse Lichteffekte Funkeln/blitze o.ä.
[Release] Dragon city new event!Alien Dragon & Mars Dragon
05/06/2014 - Dragon City - 3 Replies
Hello New event in PC Now you can get it in just 6 clicks... Notice: To prevent error -> After 3 first items submitted you must open dragon city to check.. then submit 3 another Dragon City Event SV1 Dragon City Event SV2 Dragon City Event SV3 Dragon City Event SV4 I'll update more links on top of any pages
Event Wonderland get free 2 dragon big hat dragon and hearts queen dragon
03/21/2014 - Dragon City - 5 Replies
Get at: phucvinh52.com Choose dragon city -> Event Wonderland -> click "Please Click Here Before Hack" -> skip ad -> fill fbid and sessionid -> press submit tool -> check Storage Dragon city. have fun! Don't forget click thanks :)



All times are GMT +1. The time now is 23:17.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.