Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 19:31

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

Advertisement



ERROR: GetExpUpItem

Discussion on ERROR: GetExpUpItem within the Flyff Private Server forum part of the Flyff category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: May 2012
Posts: 48
Received Thanks: 2
Question ERROR: GetExpUpItem

hey ich hab jetzt gerade einen error bei mir entdeckt,
auch schon nachgeshen ob ich dazu was finde und das hab ich was gefunden das es evtl. an der event.lua liegt,
hab sie darauf erneuert und der error kommt immer noch und nun wollte ich genau wissen woher dieser kommt??

GetExpUpItem : itemkind¿À·ù 150, 10


habe gerade herausgefunden das dies immer kommt wenn sich mein freund
mit seinem mentalist/psy einloggt :/

MfG
teback
teback is offline  
Old 01/25/2014, 08:41   #2
ベトナム警察




 
Lumi's Avatar
 
elite*gold: 725
The Black Market: 516/0/0
Join Date: Jan 2012
Posts: 16,377
Received Thanks: 3,429
Code:
int CProject::GetExpUpItem( DWORD dwItemKind3, int nOption ) 
{ 
	if( nOption == 0 )	
		return 0;

	if( nOption < 0 || nOption > 11 )	
	{
		Error( "CProject::GetExpUpItem range_error. %d", nOption );
		return 0;
	}

	switch( dwItemKind3 )
	{
	case IK3_SWD:
	case IK3_CHEERSTICK:
	case IK3_WAND:	
	case IK3_AXE:
	case IK3_KNUCKLEHAMMER:
	case IK3_STAFF:
	case IK3_YOYO: 
	case IK3_BOW:
#if __VER >= 11 // __SYS_COLLECTING
	case IK3_COLLECTER:
#endif	// __SYS_COLLECTOR
		return m_aExpUpItem[0][ nOption ];
	case IK3_HELMET:
		return m_aExpUpItem[1][ nOption ];
	case IK3_SUIT:
		return m_aExpUpItem[2][ nOption ];
	case IK3_GAUNTLET:
		return m_aExpUpItem[3][ nOption ];
	case IK3_BOOTS:
		return m_aExpUpItem[4][ nOption ];
	case IK3_SHIELD:
		return m_aExpUpItem[5][ nOption ];
	}

	Error( "GetExpUpItem : itemkind¿À·ù %d, %d", dwItemKind3, nOption );
	return 0;
}
Hauptproblem liegt also an den ItemKind3. Überprüf in der defineItemKind die ID 150.
Lumi is offline  
Old 01/25/2014, 11:52   #3
 
elite*gold: 0
Join Date: May 2012
Posts: 48
Received Thanks: 2
hab jetzt nachgesehen und es liegt am behebook:
#define IK3_MAGICBARUNA 150

was muss ich jetzt tun um diesen Error zu beheben?
teback is offline  
Old 01/25/2014, 12:01   #4

 
elite*gold: 142
Join Date: Apr 2010
Posts: 859
Received Thanks: 428
Wenn ich das Switch richtig interpretiere, dann musst du einfach nur:
Code:
case IK3_MAGICBARUNA:
einbauen.
Der Fehler kommt, so meine Vermutung, da dieses Spezielle ItemKind nicht im Switch drin ist.


@Alle die wissen was faul ist:
Wenns falsch ist einfach sagen, ist nur logisches Denken was ich versuche xD
©ross is offline  
Old 01/25/2014, 12:16   #5
 
elite*gold: 0
Join Date: May 2012
Posts: 48
Received Thanks: 2
wo genau muss ich den code in der defineitemkind.h eintragen?

So?:
#define IK3_MAGICBARUNA 150
case IK3_MAGICBARUNA
#define IK3_ZEMBARUNA 151
#define IK3_SHILDBARUNA 152

oder wo anders wegen dem switch???
teback is offline  
Old 01/25/2014, 12:34   #6

 
elite*gold: 142
Join Date: Apr 2010
Posts: 859
Received Thanks: 428

Im Source bei der funktion GetExpUpItem .. welche Lumi gepostet hat.
©ross is offline  
Old 01/25/2014, 12:39   #7
ベトナム警察




 
Lumi's Avatar
 
elite*gold: 725
The Black Market: 516/0/0
Join Date: Jan 2012
Posts: 16,377
Received Thanks: 3,429
In der defineItemkind muss du nichts machen, nur in der Source case IK3_MAGICBARUNA: in den Switch einfügen (Lediglich nur eine Wiedergabe von Cross).
Lumi is offline  
Old 01/25/2014, 12:51   #8
 
elite*gold: 0
Join Date: May 2012
Posts: 48
Received Thanks: 2
ok hab es jetzt eingefügt und ausprobiert, aber der error kommt immer noch wenn ich das behebook aus und anziehe..
muss ich nur das einfügen und mehr nicht oder kommt da noch was dazu?
teback is offline  
Old 01/25/2014, 13:00   #9

 
elite*gold: 142
Join Date: Apr 2010
Posts: 859
Received Thanks: 428
Du musst
  1. es im Source einfügen
  2. source compielen.
  3. neue binarys aus dem gebuildetem Source nehmen
  4. über die neuen Exen den Server starten.
  5. kacken.
  6. sterben

Seit ihr so unselbstständig das man euch ALLES in den A.. schieben muss?!
Denkt doch einmal, NUR EINMAL nach.... -.-
©ross is offline  
Old 01/25/2014, 13:40   #10
ベトナム警察




 
Lumi's Avatar
 
elite*gold: 725
The Black Market: 516/0/0
Join Date: Jan 2012
Posts: 16,377
Received Thanks: 3,429
Quote:
Originally Posted by teback View Post
ok hab es jetzt eingefügt und ausprobiert, aber der error kommt immer noch wenn ich das behebook aus und anziehe..
muss ich nur das einfügen und mehr nicht oder kommt da noch was dazu?
Kommt denn nun das gleiche Error, aber nur mit unterschiedlichen IDs oder immer noch 150 ?
Lumi is offline  
Old 01/25/2014, 14:36   #11
 
elite*gold: 0
Join Date: May 2012
Posts: 48
Received Thanks: 2
ok hat sich erledigt,
ich hab das compilen vergessen
teback is offline  
Closed Thread


Similar Threads Similar Threads
[ENG] Error: Error 1 error C2601: 'HackMain' local function definitions are illegal
08/20/2013 - C/C++ - 1 Replies
So, as the title says I've been encountering an error Error 1 error C2601: 'HackMain' local function definitions are illegal I'm running on VC++ (Visual C++) This is my code: void HackMain() { for (;; ) { HackThread(); }
İbot Error-Error Video- Error İmages-HELP
04/10/2012 - DarkOrbit - 11 Replies
SORRY, MY ENGLİSH VERY BAD.I USE TO GOOGLE TRANSLATE :) Most people trying to ibot but in my computer İbot not working. Declared out this error everywhere but I do not get answers Here's the error Video http://youtu.be/q0fK09v-K3c
API Error Code: 100 API Error Description: Invalid parameter Error Message: redirect_
04/08/2012 - elite*gold Trading - 2 Replies
API Error Code: 100 API Error Description: Invalid parameter Error Message: redirect_uri URL is not properly formatted Das bekomme ich wenn ich ne App installiere... ich habe schon 3 Apps richtig installiert, danach kam immer das bei anderen Apps die ich installiert habe.. was heisst das? redirect_uri URL is not properly formatted



All times are GMT +2. The time now is 19:31.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.