Neuz crach wen opening inventory!

Results 1 to 2 of 2
  1. #1
    Sorcerer Supreme arnootie is offline
    Member +Rank
    Jun 2011 Join Date
    internetLocation
    343Posts

    Neuz crach wen opening inventory!

    i am using the Vision-Network [Source] Place of Destiny

    -Client
    -Resource
    -Source

    i made my own bins and neuz w/o errors or warnings and i edit 0 things at the source only the IP!

    i got no errors wen opening the 7 bins and no problem opening the Neuz..

    but wen i login the game i can run around w/o problem but wen i open the Inventory[I]
    the Neuz freez and than craches.. and it leave's me this error at the clien log folder:

    error_20121209
    2012/12/ 9 17:43:20 g_pPlayer is ready

    2012/12/ 9 17:43:25 CWndTaskBar::SetTaskBarTexture : Test001 2010

    2012/12/ 9 17:43:25 CWndTaskBar::SetTaskBarTexture : Test001 581

    2012/12/ 9 17:43:30 GetDlgItem : nID=933 not Found.

    2012/12/ 9 17:43:37 rCnt=1

    Neuz.exe caused an EXCEPTION_ACCESS_VIOLATION in module Neuz.exe at 0023:00452053, CWndBase::SetVisible()+0019 byte(s), c:\users\arno\games\flyff\2.own server filles\place of destiny\3.source\program\_interface\wndbase.h, line 0182+0019 byte(s)

    - Registers

    EAX=00000000 EBX=0018FC4C ECX=00000000 EDX=0008E3B8 ESI=00000000
    EDI=77141225 EBP=0018F8F4 ESP=0018F8F0 EIP=00452053 FLG=00210246
    CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B

    0023:00452053 Neuz.exe, CWndBase::SetVisible()+0019 byte(s)
    0023:0055AA07 Neuz.exe, CWndInventory::OnDraw()+0135 byte(s)
    0023:0051442D Neuz.exe, CWndBase::Paint()+0397 byte(s)
    0023:0051419E Neuz.exe, CWndBase::PaintRoot()+0574 byte(s)
    0023:0046F6A0 Neuz.exe, CNeuzApp::Render()+0544 byte(s)
    0023:004935D0 Neuz.exe, CD3DApplication::Render3DEnvironment()+0480 byte(s)
    0023:004933B1 Neuz.exe, CD3DApplication::Run()+0305 byte(s)
    0023:00476F1C Neuz.exe, WinMain()+0332 byte(s)
    0023:00915B9C Neuz.exe, WinMainCRTStartup()+0388 byte(s)
    0023:77143677 kernel32.dll, BaseThreadInitThunk()+0018 byte(s)
    0023:776D9F42 ntdll.dll, RtlInitializeExceptionChain()+0099 byte(s)
    0023:776D9F15 ntdll.dll, RtlInitializeExceptionChain()+0054 byte(s)
    and this is my wndbase.h:

    wndbase.h
    Spoiler:

    // WndBase.h: interface for the CWndBase class.
    //
    //////////////////////////////////////////////////////////////////////

    #if !defined(AFX_WNDBASE_H__0B45596D_70D7_48A4_BCB2_3D0F32F58E57__INCLUDED_)
    #define AFX_WNDBASE_H__0B45596D_70D7_48A4_BCB2_3D0F32F58E57__INCLUDED_

    #if _MSC_VER > 1000
    #pragma once
    #endif // _MSC_VER > 1000
    /*
    #ifdef __CLIENT
    #define CLIENT_WIDTH ( g_Neuz.m_d3dsdBackBuffer.Width )
    #define CLIENT_HEIGHT ( g_Neuz.m_d3dsdBackBuffer.Height )
    #define RECT_CLIENT CRect( 0, 0, CLIENT_WIDTH, CLIENT_HEIGHT )
    #endif
    */

    #define LAYOUT_NONE 0
    #define LAYOUT_RULERS 1
    #define LAYOUT_GRID 2

    #define WSIZE_WINDOW 0
    #define WSIZE_MIN 1
    #define WSIZE_MAX 2

    #include "WndStyle.h"

    #define D3DCOLOR_TEMP(a,b,g,r) \
    ((D3DCOLOR)((((a)&0xff)<<24)|(((r)&0xff)<<16)|(((g)&0xff)<<8)|((b)&0xff)))

    // Ŭ¶óÀ̾ðÆ®ÀÇ ÁÂÇ¥ ¾ò±â
    #define GET_CLIENT_POINT( hwnd, pt ) CPoint pt; ::GetCursorPos( &pt ); ::ScreenToClient( hwnd, &pt );

    // ÁÂÇ¥¸¦ ¸ÂÃß±â À§ÇÑ ´ÙÀ̾ó·Î±× : »ç¿ëÇÏ¸é ¾ÆÁÖ À¯¿ëÇÔ
    #define COORDI_DLG(c,x1,y1,x2,y2) static CCoordiDlg c(x1,y1,x2,y2); if(c.m_hWnd == NULL) c.Create(CCoordiDlg::IDD);

    class C2DRender;

    #include "ResManager.h"

    //_CHILD
    class CWndBase;

    typedef struct tagWNDMESSAGE
    {
    CWndBase* m_pWndBase ;
    UINT m_message ;
    WPARAM m_wParam ;
    LPARAM m_lParam ;
    } WNDMESSAGE,* LPWNDMESSAGE;

    //////////////////////////////////////////////////////////////////////////////
    // CWndBase
    //////////////////////////////////////////////////////////////////////////////

    class CWndBase
    {
    LPDIRECT3DVERTEXBUFFER9 m_pVB;

    static CPoint m_pointOld;
    static CRect m_rectOld;

    public:
    static CWndBase* m_pWndCapture;
    //BOOL m_bCapture;
    bool m_bPush; // Æ÷Ä¿½º À©µµ°¡ ´­·È³ª?
    int m_nResizeDir;

    //oid AddWnd(CWndBase* pWnd);
    //void RemoveWnd(CWndBase* pWnd);
    void DestroyAllWnd(CWndBase* pWndRoot); // ¸ðµç À©µµ¸¦ °­Á¦ »èÁ¦ ; Á¾·áÇÒ¶§ È£Ãâ
    void SetChildFocus( CWndBase* pWndBase, POINT point );
    CWndBase* GetChildFocus( CWndBase* pWndBase, POINT point );
    //protected:
    public:
    static CResManager m_resMng;
    static CMapStringToPtr m_strWndTileMap;
    CD3DApplication* m_pApp;
    CTheme* m_pTheme;
    CWndBase* m_pParentWnd;
    CPtrArray m_wndArray;
    UINT m_nIdWnd;
    bool m_bVisible;
    CSize m_sizeTile;
    DWORD m_dwStyle;
    bool m_bLButtonUp;
    bool m_bLButtonDown;
    bool m_bRButtonDown;
    bool m_bMButtonDown;
    bool m_bLButtonDowned;
    CString m_strTitle;
    CString m_strToolTip;
    C2DRender* m_p2DRender;
    CRect m_rectCurrentWindow;
    CRect m_rectCurrentClient;
    CRect m_rectWindow ; // Window ; ÆÐ¾î·±Æ®ºÎÅÍÀÇ ÁÂÇ¥
    CRect m_rectClient ; // Client ; ÆÐ¾î·±Æ®ºÎÅÍÀÇ ÁÂÇ¥ ( º¸Åë ¿¡Âî ¶§¹®¿¡ m_rectWindow º¸´Ù´Â Á¶±Ý ¾ÈÂÊ ÁÂÇ¥¸¦ °®´Â´Ù. )
    CRect m_rectLayout ; // Client ; ÆÐ¾î·±Æ®ºÎÅÍÀÇ ÁÂÇ¥ ( º¸Åë ¿¡Âî ¶§¹®¿¡ m_rectWindow º¸´Ù´Â Á¶±Ý ¾ÈÂÊ ÁÂÇ¥¸¦ °®´Â´Ù. )
    CPoint m_ptMouse;
    BOOL m_bGroup;
    CD3DFont* m_pFont;
    bool m_bAutoFree;
    bool m_bEnable;
    CWndBase* m_pWndFocusChild;
    bool m_bTabStop;
    bool m_bDefault;
    bool m_bActive;
    int m_nToolTipPos;
    BYTE m_byWndType;
    BOOL m_bKeyButton;
    DWORD m_dwColor;
    int m_nAlphaCount;
    bool m_bTile;
    CString m_strTexture;
    #if __VER >= 15 // __IMPROVE_QUEST_INTERFACE
    BOOL m_bNoCloseButton;
    #endif // __IMPROVE_QUEST_INTERFACE

    static BOOL m_bCling ;
    static BOOL m_bEdit ;
    static BOOL m_bFullWnd ;
    static CWndBase* m_pWndRoot ;
    static CWndBase* m_pWndFocus ; // ´ÙÀ̾ó·Î±× À©µµ Æ÷Ä¿½º
    static CWndBase* m_pCurFocus ; // ´ÙÀ̾ó·Î±×, Â÷Àϵå Áß ÃÖÁ¾ ÇöÀç Æ÷Ä¿½º

    #ifndef __VS2003
    static CPtrArray m_wndOrder ;
    #endif

    static CPtrArray m_wndRemove ;
    static CPtrArray m_postMessage ;
    //static CTexturePack m_texturePack ;
    static CTexture* m_pTexForbid;
    static CTimer m_timerForbid;
    static BOOL m_bForbid;
    static CPoint m_ptForbid;
    static HWND m_hWnd;
    static HCURSOR m_hDefaultCursor;
    static CWndBase* m_pWndOnMouseMove;
    static CWndBase* m_pWndOnSetCursor;
    static int m_nAlpha;
    static CTheme m_Theme;

    static BOOL SetForbidTexture( LPDIRECT3DDEVICE9 pd3dDevice, LPCTSTR lpszFileName );
    static void SetForbid( BOOL bForbid );
    static BOOL IsForbid() { return m_pTexForbid && m_bForbid; }

    CTexture* m_pTexture;
    // CString m_strTexture;

    BOOL IsPush() { return m_bPush; }
    CRect GetScreenRect();

    public:
    static CTextureMng m_textureMng;
    static SHORTCUT m_GlobalShortcut;
    BOOL m_bPickup; // Æ÷Ä¿½º À©µµ¸¦ µé¾ú³ª?

    void AddWnd(CWndBase* pWnd);
    void RemoveWnd(CWndBase* pWnd);

    // CString m_strSndEffect;
    int m_nWinSize; // 0 = nomal, 1 - minimaize, 2 = maximize

    void FitTextureSize();
    static void FreeTileTexture();

    CWndBase();
    virtual ~CWndBase();
    BOOL Create(DWORD dwStyle,const RECT& rect,CWndBase* pParentWnd,UINT nID);
    void SetTexture( LPDIRECT3DDEVICE9 pd3dDevice, LPCTSTR lpszFileName, BOOL bMyLoader = FALSE );
    void SetTexture( LPDIRECT3DDEVICE9 pd3dDevice, LPCTSTR lpKey, CTexture* m_pTexture );

    void RemoveDestroyWnd();
    void MoveParentCenter(); // À©µµ¸¦ ºÎ¸ð À©µµÀÇ Áß¾ÓÀ¸·Î ¿Å±ä´Ù.
    void MoveRectCenter(CRect rect); // À©µµ¸¦ rectÀÇ Áß¾ÓÀ¸·Î ¿Å±ä´Ù.
    void MovePointCenter(CPoint pt); // À©µµ¸¦ ptÀÇ Áß¾ÓÀ¸·Î ¿Å±ä´Ù.
    void Move( CPoint pt ); // ¿ÞµµÀÇ left,topÀ» pt·Î
    void Move( int x, int y ) { Move( CPoint( x, y ) ); } // ¿ÞµµÀÇ left,topÀ» pt·Î
    BOOL IsVisible() { return m_bVisible; } // À©µµ°¡ º¸ÀÌ´Â »óÅÂÀΰ¡.
    void SetVisible(BOOL bVisible) { m_bVisible = ( bVisible != FALSE ); } // À©µµ¸¦ º¸À̰ųª °¨Ãá´Ù.
    void SetCapture();
    void ReleaseCapture();
    CRect MakeCenterRect( int nWidth, int nHeight );
    CPoint GetClientCenter(); // ClientÀÇ Áß¾Ó ÁÂÇ¥¸¦ µ¹·ÁÁØ´Ù.
    CPoint GetStrCenter(C2DRender* p2DRender,LPCTSTR str); // È­¸é Á߽ɿ¡¼­ ½ºÆ®¸µÀÇ Áß¾Ó¿¡ Ãâ·ÂÇϱâ À§ÇÑ ÁÂÇ¥¸¦ µ¹·ÁÁØ´Ù.
    CPoint GetStrRectCenter(C2DRender* p2DRender,CRect rect,LPCTSTR str); // rectÀÇ Á߽ɿ¡¼­ ½ºÆ®¸µÀÇ Áß¾Ó¿¡ Ãâ·ÂÇϱâ À§ÇÑ ÁÂÇ¥¸¦ µ¹·ÁÁØ´Ù.
    CString GetTitle() { return m_strTitle; }
    void SetTitle(CString strTitle) { m_strTitle = strTitle; }
    DWORD GetStyle() { return m_dwStyle; }
    CWndBase* GetParentWnd() { return m_pParentWnd; }
    CRect GetClientRect( BOOL bParent = FALSE );
    CRect GetWindowRect( BOOL bParent = FALSE );
    CRect GetLayoutRect( BOOL bParent = FALSE );
    CRect GetWndRect() { return m_rectWindow; }
    BOOL IsWndRoot() { return this == m_pWndRoot; }
    BOOL IsOnWndBase(CPoint pt); // Æ÷ÀÎÆ®°¡ À©µµ À§¿¡ Àִ°¡?
    #ifndef __VS2003
    BOOL IsOpenAnywnd() { return m_wndOrder.GetSize() ? TRUE : FALSE; }
    #endif
    BOOL IsOpenModalWnd();
    CWndBase* GetFocusChild() { return m_pWndFocusChild; }
    CWndBase* GetFocusWnd() { return m_pWndFocus; }
    void GetLogFont(C2DRender* p2DRender,LOGFONT* pLogFont);
    int GetFontHeight();
    BOOL IsWndStyle(DWORD dwStyle) { return (m_dwStyle & dwStyle) ? TRUE : FALSE; }
    int GetWndStyle() { return m_dwStyle; }
    void SetWndStyle(DWORD dwStyle) { m_dwStyle = dwStyle; }
    int GetWndId() { return m_nIdWnd; }
    void SetWndId( DWORD dwWndId ) { m_nIdWnd = dwWndId; }
    void AddWndStyle(DWORD dwStyle) { m_dwStyle |= dwStyle; }
    void DelWndStyle(DWORD dwStyle) { m_dwStyle &= ~dwStyle; }
    CWndBase* GetWndBase( UINT idWnd );
    CWndBase* GetWndBase();
    CWndBase* FindWnd(UINT idWnd) { return GetWndBase( idWnd ); }
    CWndBase* GetChildWnd( UINT nID );
    CWndBase* GetDlgItem( UINT nID )
    {
    CWndBase *pWnd = GetChildWnd( nID );
    if( pWnd == NULL )
    Error( "GetDlgItem : nID=%d not Found.", nID );
    return pWnd;
    }
    BOOL IsOpenWnd(UINT nId);
    BOOL IsOpenWnd(CWndBase* pWnd);
    BOOL IsOpenWnd() { return m_nIdWnd ? TRUE : FALSE; }
    BOOL IsFocusWnd() { return m_pWndFocus == this; }
    BOOL IsFocusChild() { return m_pParentWnd ? m_pParentWnd->m_pWndFocusChild == this : FALSE; }
    CPoint GetMousePoint() { return m_ptMouse; }
    void SetGroup(BOOL bGroup) { m_bGroup = bGroup; }
    BOOL IsGroup() { return m_bGroup; }
    CPtrArray* GetWndArray() { return &m_wndArray; }
    void SetFont(CD3DFont* pFont) { m_pFont = pFont; }
    CD3DFont* GetFont() { return m_pFont; }
    void SetAutoFree(BOOL bFree) { m_bAutoFree = (bFree != FALSE ); }
    BOOL IsAutoFree() { return m_bAutoFree; }
    BOOL IsParentWnd(CWndBase* pParentWnd);
    BOOL IsWindowEnabled() const { return m_bEnable; }
    void EnableWindow(BOOL bEnable = TRUE) { m_bEnable = (bEnable != FALSE ); }
    LRESULT SendMessage(UINT message,WPARAM wParam = 0, LPARAM lParam = 0);
    BOOL PostMessage(UINT message,WPARAM wParam = 0, LPARAM lParam = 0);
    void SetToolTip(LPCTSTR lpszToolTip,int nPos = 0) { m_strToolTip = lpszToolTip; m_nToolTipPos = nPos; }
    void SetTabStop(BOOL bTabStop) { m_bTabStop = (bTabStop != FALSE); }
    virtual void SetFocus();
    void KillFocus( CWndBase* pWndFocus, CWndBase* pWndNew );
    void SetDefault(BOOL bDefault) { m_bDefault = (bDefault != FALSE); }
    BOOL IsDefault() { return m_bDefault; }
    BOOL IsFullWnd() { return m_bFullWnd; }
    CWndBase* FindFullWnd();
    void GradationRect( C2DRender* p2DRender, CRect rect, DWORD dwColor1t, DWORD dwColor1b, DWORD dwColor2b, int nMidPercent = 40 );
    BOOL WindowToScreen( LPPOINT lpPoint );
    BOOL WindowToScreen( LPRECT lpRect );
    BOOL ClientToScreen( LPPOINT lpPoint );
    BOOL ClientToScreen( LPRECT lpRect );
    BOOL ScreenToWindow( LPPOINT lpPoint );
    BOOL ScreenToWindow( LPRECT lpRect );
    BOOL ScreenToClient( LPPOINT lpPoint );
    BOOL ScreenToClient( LPRECT lpRect );

    CWndBase* GetFrameWnd();
    BOOL AdjustMinRect( CRect* pRect, int nWidth, int nHeight );
    BOOL AdjustMaxRect( CRect* pRect, int nWidth, int nHeight );

    void SetWndType( int nWndType) { m_byWndType = (BYTE)nWndType; }
    DWORD GetWndType() { return (DWORD)m_byWndType; }
    LPWNDCTRL GetWndCtrl( DWORD dwWndId ) { return m_resMng.GetAtControl( m_nIdWnd, dwWndId ); }
    LPWNDAPPLET GetWndApplet() { return m_resMng.GetAt( m_nIdWnd ); }

    static void ClipStrArray(C2DRender* p2DRender,CRect rect,int nLineSpace,
    CStringArray* pStringArray,CStringArray* pNewStringArray);

    virtual void AlighWindow( CRect rcOld, CRect rcNew );

    BOOL IsDestroy();
    void Destroy(BOOL bAutoFree = FALSE); // À©µµ¸¦ ÆÄ±«ÇÑ´Ù.
    void PaintChild(C2DRender* p2DRender);
    void Paint(C2DRender* p2DRender, BOOL bPaintChild = TRUE );
    void SetWndSize( int cx, int cy );
    virtual void OnMouseWndSurface( CPoint point );
    virtual void PaintRoot( C2DRender* p2DRender );
    virtual void PaintFrame( C2DRender* p2DRender );
    virtual void SetWndRect( CRect rectWnd, BOOL bOnSize = TRUE);
    virtual int GetResizeDir(CPoint ptClient);
    virtual BOOL IsPickupSpace(CPoint point);
    virtual BOOL Process();
    virtual void OnDraw(C2DRender* p2DRender);
    virtual BOOL OnDrawIcon(CWndBase* pWndBase,C2DRender* p2DRender);
    virtual void OnInitialUpdate();
    virtual void OnUpdate();
    virtual void OnDestroyChildWnd( CWndBase* pWndChild );
    virtual BOOL OnSetCursor( CWndBase* pWndBase, UINT nHitTest, UINT message );
    // message
    //Protected:
    virtual void OnLButtonUp(UINT nFlags, CPoint point);
    virtual void OnLButtonDown(UINT nFlags, CPoint point);
    virtual void OnRButtonUp(UINT nFlags, CPoint point);
    virtual void OnRButtonDown(UINT nFlags, CPoint point);
    virtual void OnMButtonUp(UINT nFlags, CPoint point);
    virtual void OnMButtonDown(UINT nFlags, CPoint point);
    virtual void OnLButtonDblClk( UINT nFlags, CPoint point);
    virtual void OnRButtonDblClk( UINT nFlags, CPoint point);
    virtual void OnMButtonDblClk( UINT nFlags, CPoint point);
    virtual void OnNonClientLButtonDblClk( UINT nFlags, CPoint point);
    virtual void OnMouseMove(UINT nFlags, CPoint point);
    virtual BOOL OnMouseWheel( UINT nFlags, short zDelta, CPoint pt );
    virtual void OnChar(UINT nChar);
    virtual void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
    virtual void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
    virtual void OnSize(UINT nType, int cx, int cy);
    virtual void OnPaint();
    virtual void OnClose();
    virtual void OnDestroy();
    virtual void OnTimer(UINT nIDEvent);
    virtual void OnMove(int x,int y);
    virtual void OnSetFocus(CWndBase* pOldWnd);
    virtual void OnKillFocus(CWndBase* pNewWnd);
    virtual BOOL OnEraseBkgnd(C2DRender* p2DRender);
    virtual BOOL OnDropIcon( LPSHORTCUT pShortcut, CPoint point = 0 );

    public:
    virtual BOOL OnSystemNotify( UINT message, UINT nID, LRESULT* pLResult );
    virtual BOOL OnParentNotify( UINT message, UINT nID, LRESULT* pLResult );
    virtual BOOL OnChildNotify( UINT nCode, UINT nID, LRESULT* pLResult );
    virtual BOOL OnCommand( UINT nID, DWORD dwMessage, CWndBase* pWndBase = NULL );
    virtual BOOL Initialize( CWndBase* pWndParent = NULL, DWORD dwWndId = 0);
    ///virtual LRESULT WndMsgProc( UINT message, WPARAM wParam, LPARAM lParam );

    LRESULT WindowRootProc( UINT message, WPARAM wParam, LPARAM lParam );
    #ifdef __V050823_JAPAN_ATOK
    virtual LRESULT WindowProc(UINT message,WPARAM wParam,LPARAM lParam);
    #else
    LRESULT WindowProc(UINT message,WPARAM wParam,LPARAM lParam);
    #endif
    virtual LRESULT DefWindowProc(UINT message,WPARAM wParam,LPARAM lParam);

    //virtual HRESULT OneTimeSceneInit();
    virtual HRESULT InitDeviceObjects();
    virtual HRESULT RestoreDeviceObjects();
    virtual HRESULT InvalidateDeviceObjects();
    virtual HRESULT DeleteDeviceObjects();
    //virtual HRESULT FinalCleanup() { return S_OK; }
    //virtual HRESULT Render();
    //virtual HRESULT FrameMove();
    virtual void AfterSkinTexture( LPWORD pDest, CSize size, D3DFORMAT d3dFormat = D3DFMT_A4R4G4B4 );
    virtual void AdditionalSkinTexture( LPWORD pDest, CSize size, D3DFORMAT d3dFormat = D3DFMT_A4R4G4B4 );
    virtual void AdjustWndBase( D3DFORMAT d3dFormat = D3DFMT_A4R4G4B4 );

    void MakeVertexBuffer();
    void RenderWnd();

    friend class CWndButton;
    };
    #endif // !defined(AFX_WNDBASE_H__0B45596D_70D7_48A4_BCB2_3D0F32F58E57__INCLUDED_)




    how could is fix this? anny help plz?


  2. #2
    Sorcerer Supreme Alexsh is offline
    Member +Rank
    Sep 2009 Join Date
    New YorkLocation
    306Posts

    Re: Neuz crach wen opening inventory!

    2012/12/ 9 17:43:30 GetDlgItem : nID=933 not Found.
    It looks like a problem in resData.h/resData.inc as if something's not properly defined. It's been a while since I've gotten any errors of the sort so i'm talking completely off memory. I more than likely think it has to do with resData though. When attempting to open the inventory it's crashing. Regardless it is a client problem, not a source/server problem.

    Try replacing your APP_INVENTORY code in resData.inc with this.
    Code:
    APP_INVENTORY "WndInventory3D.tga" "" 0 240 464 0x2410000 26
    {
    // Title String
    IDS_RESDATA_INC_002130
    }
    {
    // Help Key
    IDS_RESDATA_INC_002131
    }
    {
        WTYPE_CUSTOM WIDC_CUSTOM1 "" 0 178 4 222 48 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002132
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002133
        }
        WTYPE_TABCTRL WIDC_INVENTORY "" 1 8 250 226 400 0x220000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002134
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002135
        }
        WTYPE_CUSTOM WIDC_GOLD "" 0 72 403 93 424 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002136
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002137
        }
        WTYPE_STATIC WIDC_GOLD_NUM "" 0 102 404 206 424 0x2220000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002138
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002139
        }
        WTYPE_CUSTOM WIDC_CUSTOM2 "" 0 178 52 222 96 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002140
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002141
        }
        WTYPE_CUSTOM WIDC_CUSTOM3 "" 0 178 100 222 144 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002142
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002143
        }
        WTYPE_CUSTOM WIDC_CUSTOM4 "" 0 178 148 222 192 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002144
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002145
        }
        WTYPE_CUSTOM WIDC_CUSTOM5 "" 0 6 4 50 48 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002146
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002147
        }
        WTYPE_CUSTOM WIDC_CUSTOM6 "" 0 6 52 50 96 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002148
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002149
        }
        WTYPE_CUSTOM WIDC_CUSTOM7 "" 0 6 100 50 144 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002150
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002151
        }
        WTYPE_CUSTOM WIDC_CUSTOM8 "" 0 6 148 50 192 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002152
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002153
        }
        WTYPE_CUSTOM WIDC_CUSTOM9 "" 0 6 196 50 240 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002154
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002155
        }
        WTYPE_CUSTOM WIDC_CUSTOM10 "" 0 176 196 220 240 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002156
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002157
        }
        WTYPE_CUSTOM WIDC_CUSTOM11 "" 0 52 4 76 28 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002158
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002159
        }
        WTYPE_CUSTOM WIDC_CUSTOM12 "" 0 76 4 100 28 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002160
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002161
        }
        WTYPE_CUSTOM WIDC_CUSTOM13 "" 0 102 4 126 28 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002162
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002163
        }
        WTYPE_CUSTOM WIDC_CUSTOM14 "" 0 128 4 152 28 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002164
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002165
        }
        WTYPE_CUSTOM WIDC_CUSTOM15 "" 0 152 4 176 28 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002166
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002167
        }
        WTYPE_CUSTOM WIDC_CUSTOM16 "" 0 52 210 83 241 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002168
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002169
        }
        WTYPE_CUSTOM WIDC_CUSTOM17 "" 0 82 210 113 241 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002170
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002171
        }
        WTYPE_CUSTOM WIDC_CUSTOM18 "" 0 114 210 145 241 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002172
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002173
        }
        WTYPE_CUSTOM WIDC_CUSTOM19 "" 0 144 210 175 241 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002174
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002175
        }
        WTYPE_CUSTOM WIDC_CUSTOM20 "" 0 54 32 174 206 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_002176
        }
        {
        // ToolTip
    IDS_RESDATA_INC_002177
        }
        WTYPE_CUSTOM WIDC_CUSTOM21 "" 0 16 400 41 425 0x260000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_003778
        }
        {
        // ToolTip
    IDS_RESDATA_INC_003779
        }
        WTYPE_TABCTRL WIDC_TABCTRL1 "" 1 -95 -50 -4 41 0x220000 0 0 0 0 46 112 169
        {
        // Title String
    IDS_RESDATA_INC_005178
        }
        {
        // ToolTip
    IDS_RESDATA_INC_005179
        }
    
    
    }



Advertisement