Jump to content

[ERRO] Pedra Mágica e outros


Nukayool

Recommended Posts

Boas Maltinha, 

Estou com os seguintes erros no syserr:

DoRefineWithScroll: REFINE : Unknown refine scroll item. Value0: 1
SYSERR: May  3 16:09:03 :: RunState: LUA_ERROR: locale/portugal/quest/object/state/ride:179: attempt to index field `?' (a nil value)
SYSERR: May  3 16:09:03 :: WriteRunningStateToSyserr: LUA_ERROR: quest ride.start click
SYSERR: May  3 15:31:47 :: Process: SEQUENCE 3b587800 mismatch 0xaf != 0x64 header 254
SYSERR: May  3 15:31:47 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
	[254 : 0xaf]

Desculpem lá

Edited by Nukayool
Link to comment
6 horas atrás, Nukayool disse:

Boas Maltinha, 

Estou com os seguintes erros no syserr:


DoRefineWithScroll: REFINE : Unknown refine scroll item. Value0: 1

SYSERR: May  3 16:09:03 :: RunState: LUA_ERROR: locale/portugal/quest/object/state/ride:179: attempt to index field `?' (a nil value)
SYSERR: May  3 16:09:03 :: WriteRunningStateToSyserr: LUA_ERROR: quest ride.start click

SYSERR: May  3 15:31:47 :: Process: SEQUENCE 3b587800 mismatch 0xaf != 0x64 header 254
SYSERR: May  3 15:31:47 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
	[254 : 0xaf]

Desculpem lá

Primeiro erro o jogo não encontra o item

Segundo erro 

Tens um erro na quest talvez um ponto ou algo mal escrito 

Terceiro erro

Um pacote do server nao esta a ser enviado ao cliente ou do cliente ao server 

Talvez tenhas aplicado ou alterado algo incorretamente na source 

 

Link to comment

@F-Caneiras 

Não encontra o item como assim? tenho a pedra mágica etc..

até fui a source ver cenas que possam estar ligadas, encontrei isto no char_item.cpp

	const char* szRefineType = "SCROLL";

	if (pkItemScroll->GetValue(0) == HYUNIRON_CHN || 
		pkItemScroll->GetValue(0) == YONGSIN_SCROLL || 
		pkItemScroll->GetValue(0) == YAGONG_SCROLL) // 현철, 용신의 축복서, 야공의 비전서  처리
	{
		const char hyuniron_prob[9] = { 100, 75, 65, 55, 45, 40, 35, 25, 20 };
		const char hyuniron_prob_euckr[9] = { 100, 75, 65, 55, 45, 40, 35, 30, 25 };

		const char yagong_prob[9] = { 100, 100, 90, 80, 70, 60, 50, 30, 20 };
		const char yagong_prob_euckr[9] = { 100, 100, 90, 80, 70, 60, 50, 40, 30 };

		if (pkItemScroll->GetValue(0) == YONGSIN_SCROLL)
		{
			if (LC_IsYMIR() == true || LC_IsKorea() == true)
				success_prob = hyuniron_prob_euckr[MINMAX(0, item->GetRefineLevel(), 8)];
			else
				success_prob = hyuniron_prob[MINMAX(0, item->GetRefineLevel(), 8)];
		}
		else if (pkItemScroll->GetValue(0) == YAGONG_SCROLL)
		{
			if (LC_IsYMIR() == true || LC_IsKorea() == true)
				success_prob = yagong_prob_euckr[MINMAX(0, item->GetRefineLevel(), 8)];
			else
				success_prob = yagong_prob[MINMAX(0, item->GetRefineLevel(), 8)];
		}
		else
		{
			sys_err("REFINE : Unknown refine scroll item. Value0: %d", pkItemScroll->GetValue(0));
		}

 

 

 

tb me apareceu este agora, sei que têm a ver com a tabela item

GetNewID: ItemIDRange: FATAL ERROR!!! no more item id

pq será que apareceu? 

Edited by Nukayool
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...