Item Shop problem

Results 1 to 11 of 11
  1. #1
    Member AlphaStigma is offline
    MemberRank
    Jun 2011 Join Date
    71Posts

    sad Item Shop problem

    i need help about my ranshop when i buy item from item shop i cant redeem my item in item bank


  2. #2
    Sorcerer Supreme philallstar is offline
    Member +Rank
    Sep 2010 Join Date
    kawit,cavite,phLocation
    253Posts

    Re: Item Shop problem

    make sure your glogic.rcc in your client or server is compatible

  3. #3
    Sorcerer Supreme Mr`Virus--- is offline
    Member +Rank
    Oct 2009 Join Date
    Beside You!!Location
    444Posts

    Re: Item Shop problem

    Quote Originally Posted by philallstar View Post
    make sure your glogic.rcc in your client or server is compatible
    sir what are you talking about? it's about ran CP not in-game.

    @TS on your database>RanShop>Tables>dbo.ShopPurchase

    on your dbo.shoppurchase (please delete all content).
    then change the purflag to 1 then try it again on your shop if you get the item.

    if not change the purflag again to 0

    that's it.
    I also encounter this problem.
    Resolve it in this step.

  4. #4
    Member AlphaStigma is offline
    MemberRank
    Jun 2011 Join Date
    71Posts

    Re: Item Shop problem

    purflag to 1 where i can change it in ShopPurflag?

  5. #5
    Elite Member Hitachi is offline
    Member +Rank
    Jul 2011 Join Date
    Nihon DesuLocation
    193Posts

    Re: Item Shop problem

    Code:
    USE [RanShop]
    GO
    /****** Object:  Table [dbo].[ShopItemMap]    Script Date: 07/24/2011 18:41:25 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[ShopItemMap](
    	[ProductNum] [int] IDENTITY(1,1) NOT NULL,
    	[ItemMain] [int] NULL,
    	[ItemSub] [int] NULL,
    	[ItemName] [varchar](100) NULL,
    	[ItemList] [smallint] NULL CONSTRAINT [DF_ShopItemMap_ItemList]  DEFAULT ((1)),
    	[ItemMoney] [int] NOT NULL CONSTRAINT [Df_shopitemmap_ItemMoney]  DEFAULT ((0)),
    	[ItemType] [int] NOT NULL CONSTRAINT [Df_shopitemmap_ItemType]  DEFAULT ((0)),
    	[ItemComment] [varchar](300) NULL,
    	[Duration] [varchar](50) NULL,
    	[Category] [int] NULL,
    	[ItemStock] [int] NOT NULL CONSTRAINT [DF__ShopItemM__ItemS__5070F446]  DEFAULT ((0)),
    	[ItemImage] [varchar](300) NULL,
     CONSTRAINT [PK_ShopItemMap] PRIMARY KEY CLUSTERED 
    (
    	[ProductNum] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    
    GO
    SET ANSI_PADDING OFF


    Code:
    USE [RanShop]
    GO
    /****** Object:  Table [dbo].[ShopPurchase]    Script Date: 03/09/2011 16:30:26 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[ShopPurchase](
    	[PurKey] [varchar](21) NULL,
    	[UserUID] [varchar](20) NOT NULL,
    	[ProductNum] [int] NOT NULL,
    	[PurPrice] [int] NOT NULL CONSTRAINT [DF_ShopPurchase_PurPrice]  DEFAULT ((0)),
    	[PurFlag] [int] NOT NULL CONSTRAINT [DF_ShopPurchase_PurFlag]  DEFAULT ((0)),
    	[PurDate] [datetime] NOT NULL CONSTRAINT [DF_ShopPurchase_PurDate]  DEFAULT (getdate()),
    	[PurChgDate] [datetime] NULL
    ) ON [PRIMARY]
    
    GO
    SET ANSI_PADDING OFF

  6. #6
    Member AlphaStigma is offline
    MemberRank
    Jun 2011 Join Date
    71Posts

    Re: Item Shop problem

    Itachi the item is there but i cant redeem it in item bank when i click the item and relog the item is gone if i dont click the item in item bank it wont gone when relog but still its stuck in item bank

  7. #7
    Elite Member Genjou is offline
    Member +Rank
    Dec 2008 Join Date
    218Posts

    Re: Item Shop problem

    mine also wont show in item bank when i buy item in shop im using babyran blue CP

  8. #8
    Sorcerer Supreme Mr`Virus--- is offline
    Member +Rank
    Oct 2009 Join Date
    Beside You!!Location
    444Posts

    Re: Item Shop problem

    Quote Originally Posted by AlphaStigma View Post
    purflag to 1 where i can change it in ShopPurflag?
    as i said in my 1st reply.
    open you SQL>database>RanShop>Tables>dbo.ShopPurchase>(right click and click Design)
    dbo.ShopPurchase(will appear)
    next
    Look (or click PurFlag)
    PurFlag Settings will appear)
    @(General)
    this will be appear
    (Name) --> PurFlag
    Allow Null --> No
    Data Type --> int
    Default Value or Biding--> ((0)) [Change this to 1]

    Quote Originally Posted by Genjou View Post
    mine also wont show in item bank when i buy item in shop im using babyran blue CP
    sir try to follow the guide i reply. hope it's help.

  9. #9
    Member AlphaStigma is offline
    MemberRank
    Jun 2011 Join Date
    71Posts

    Re: Item Shop problem

    man still not working :( im using babyran blue website idk whats wrong the sql setting or the website :(

  10. #10
    Member james1202 is offline
    MemberRank
    Jun 2014 Join Date
    63Posts

    Re: Item Shop problem

    My Problem in RanShop I can See the Items in Website but i can buy and i can use the Item when I buy in website only the Pictures of Items not appearing in website

  11. #11
    Elite Member momongpogs is offline
    Member +Rank
    Jun 2010 Join Date
    228Posts

    Re: Item Shop problem

    okay let me know if you still have problems with your item shop. Because when im exploring and trying current database shared here and used on old website, there is problem with the purkey. even you execute those script (which is also provide here on ragezone) It wont work you have to make your own script for you to make compatible with your game client & Website(input) & Database. I would love to help you using teamviewer and make custom script.

    for short theres problem on declaring purkey on your database logs.



Advertisement