Jump to content

Strange Critical Error


Recommended Posts

Hello guys.

I need help in order to solve my problem.

 

I didn't had any problem with my server, but i recently added some new custom coins for my shop.

I created client and server side and everything works great, i can even see them on my inventory

2CEWGVX.png

 

when i click on shop i can show the items inside but when i click on a scroll i got critical error.

EFotbKf.png

 

My iitem xml:

 

 

	<item id="95009" type="EtcItem" name="Yellow Token">
		<set name="material" val="STEEL" />
		<set name="price" val="1" />
		<set name="is_stackable" val="true" />
	</item>

 

 

 

My Multisell xml:

 

 

<?xml version='1.0' encoding='utf-8'?>
<list>
	<!-- Scroll: Enchant Armor (B) -->
	<item id="1">
		<ingredient id="95009" count="100"/>
		<production id="948" count="1"/>
	</item>
	<!-- Scroll: Enchant Armor (A) -->
	<item id="2">
		<ingredient id="95009" count="100"/>
		<production id="730" count="1"/>
	</item>
	<!-- Scroll: Enchant Armor (S) -->
	<item id="3">
		<ingredient id="95009" count="100"/>
		<production id="960" count="1"/>
	</item>
	<!-- Scroll: Enchant Weapon (S) -->
	<item id="3">
		<ingredient id="95009" count="100"/>
		<production id="959" count="1"/>
	</item>
</list>

 

 

 

And my etcitemgrp code

 

 

2	95009	0	3	3	3	0	dropitems.drop_jewel_m00			dropitemstex.drop_jewel_red_t00			GordienItems.yellow_token					0	0	8	0	0	1		1		ItemSound.itemdrop_etc_jewel		2	0	0

 

 

 

I'm getting this error:

2015.8.6 19:04:51
OS : Windows Vista 6.1 (Build: 7601)
CPU : GenuineIntel PentiumPro-class processor @ 1995 MHz with 2047MB RAM
Video : Mobile Intel(R) 45 Express Chipset Family (Microsoft Corporation - WDDM 1.1) (1749)

General protection fault!

History: UUIDATA_ITEM::execGetSetItemIDList <- UObject::execClassContext <- (ToolTip Transient.ToolTip0 @ Function Interface.ToolTip.ReturnTooltip_NTT_ITEM : 11BE) <- UObject::ProcessEvent <- (ToolTip Transient.ToolTip0, Function Interface.ToolTip.OnEvent) <- XMLUIManager::ExecuteUIEvent <- NCTooltipManager::MakeTooltipInfo <- NCNameCtrl::SetNameData <- UUIAPI_MULTISELLNEEDEDITEM::execAddData <- UObject::execClassContext <- (MultiSellWnd Transient.MultiSellWnd0 @ Function Interface.MultiSellWnd.OnClickItem : 021F) <- UObject::ProcessEvent <- (MultiSellWnd Transient.MultiSellWnd0, Function Interface.MultiSellWnd.OnClickItem) <- NCItemWnd::OnLButtonUp <- NCVirtualWndMain::PassToFocusedWindow <- NCVirtualWndMain::PassToFocusedWindow <- NCVirtualWndMain::PassToFocusedWindow <- NCVirtualWndMain::DispatchWndMsg <- NConsoleWnd::DispatchWndMsgX <- NConsoleWnd::MasterConsoleEventProcess <- UEngine::InputEvent <- UWindowsViewport::CauseInputEvent <- UWindowsViewport::UpdateInput <- UViewport::ReadInput <- APlayerController::Tick <- ALineagePlayerController::Tick <- TickAllActors <- ULevel::Tick <- (NetMode=0) <- TickLevel <- UGameEngine::Tick <- UpdateWorld <- MainLoop

Anyone know how i can fix this?

Link to comment
Share on other sites

<?xml version='1.0' encoding='utf-8'?>
<list>
    <!-- Scroll: Enchant Armor (B) -->
    <item id="1">
        <ingredient id="95009" count="100"/>
        <production id="948" count="1"/>
    </item>
    <!-- Scroll: Enchant Armor (A) -->
    <item id="2">
        <ingredient id="95009" count="100"/>
        <production id="730" count="1"/>
    </item>
    <!-- Scroll: Enchant Armor (S) -->
    <item id="3"> <----
        <ingredient id="95009" count="100"/>
        <production id="960" count="1"/>
    </item>
    <!-- Scroll: Enchant Weapon (S) -->
    <item id="3"> <-----
        <ingredient id="95009" count="100"/>
        <production id="959" count="1"/>
    </item>
</list>

nothing to do with the error but i noticed a small bug :D you have same ids in 2 different items 

Edited by Kelrzher
Link to comment
Share on other sites

im just going to assume that your item id is too high

try making the ingredient 57(adena) first and see what happens

if it works with it make your coin id less than 65000

Link to comment
Share on other sites

<?xml version='1.0' encoding='utf-8'?>
<list>
    <!-- Scroll: Enchant Armor (B) -->
    <item id="1">
        <ingredient id="95009" count="100"/>
        <production id="948" count="1"/>
    </item>
    <!-- Scroll: Enchant Armor (A) -->
    <item id="2">
        <ingredient id="95009" count="100"/>
        <production id="730" count="1"/>
    </item>
    <!-- Scroll: Enchant Armor (S) -->
    <item id="3"> <----
        <ingredient id="95009" count="100"/>
        <production id="960" count="1"/>
    </item>
    <!-- Scroll: Enchant Weapon (S) -->
    <item id="3"> <-----
        <ingredient id="95009" count="100"/>
        <production id="959" count="1"/>
    </item>
</list>

nothing to do with the error but i noticed a small bug :D you have same ids in 2 different items 

 

true :p

 

im just going to assume that your item id is too high

try making the ingredient 57(adena) first and see what happens

if it works with it make your coin id less than 65000

 

As le memer said. Decrease the id < 65535

ok guys thanks for your help, i will check it now and i'll inform you

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...