Cant buy item in game PREMIUM shop

Results 1 to 12 of 12
  1. #1
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Cant buy item in game PREMIUM shop

    recently i added in game cash shop/vip shop whatever u call, in which we can buy items with coins. i fixed up the database and source.. I can buy bounty items but not cash items, it doesnt even pop up a msg after pressing buy button.. its like buy button is dead there..
    my changes were as folows :

    nBuyMode = 1; //cashshop
    nBuyMode=2; //staff shop
    else
    Normal Mode //bounty shop

    every thing is fine, i can see coins in my account, only thing is i cant buy any item. can anyone help me with this?
    george told me you have to make separate packet for cashshop buy button.. can anyone suggest me, its database problem or source? and also give hints for fixes. !


  2. #2
    Developer / Patch Finder Tankado is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    451Posts

    Re: Cant buy item in game PREMIUM shop

    again, it's not coded....
    and you need the check in the spbuybountyitem
    the sql part what i gave u

  3. #3
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Re: Cant buy item in game PREMIUM shop

    Quote Originally Posted by SeaTroll View Post
    again, it's not coded....
    and you need the check in the spbuybountyitem
    the sql part what i gave u
    fine but everything's fine with sql i think.. can buy bounty items also i can see coins in account..

  4. #4
    In Progress... FFXIV... Anju is offline
    MemberRank
    Oct 2010 Join Date
    Mist Ward 7 #38Location
    1,946Posts

    Re: Cant buy item in game PREMIUM shop

    Code:
    IF ([thebuymode]= 1) BEGIN
    			UPDATE	dbo.Account 
    			SET		Coins = Coins - @Price 
    			WHERE	AID = @AID 
    			AND		(Coins - @Price >= 0);
    		END
    Do you have something like this in your dbo.spBuyBountyItem?

  5. #5
    Developer / Patch Finder Tankado is offline
    MemberRank
    Oct 2011 Join Date
    The NetherlandsLocation
    451Posts

    Re: Cant buy item in game PREMIUM shop

    Quote Originally Posted by Anju View Post
    Code:
    IF ([thebuymode]= 1) BEGIN
    			UPDATE	dbo.Account 
    			SET		Coins = Coins - @Price 
    			WHERE	AID = @AID 
    			AND		(Coins - @Price >= 0);
    		END
    Do you have something like this in your dbo.spBuyBountyItem?
    i already code that for him :P

  6. #6
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Re: Cant buy item in game PREMIUM shop

    Quote Originally Posted by Anju View Post
    Code:
    IF ([thebuymode]= 1) BEGIN
    			UPDATE	dbo.Account 
    			SET		Coins = Coins - @Price 
    			WHERE	AID = @AID 
    			AND		(Coins - @Price >= 0);
    		END
    Do you have something like this in your dbo.spBuyBountyItem?
    yea deatroll did thatbut not working lol !

    Quote Originally Posted by SeaTroll View Post
    i already code that for him :P
    dont b so selfish =P

  7. #7
    In Progress... FFXIV... Anju is offline
    MemberRank
    Oct 2010 Join Date
    Mist Ward 7 #38Location
    1,946Posts

    Re: Cant buy item in game PREMIUM shop

    Probably the MatchServer doesn't have the function to buy the staff or cash items.

  8. #8
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Re: Cant buy item in game PREMIUM shop

    Quote Originally Posted by Anju View Post
    Probably the MatchServer doesn't have the function to buy the staff or cash items.
    it has :|

  9. #9
    In Progress... FFXIV... Anju is offline
    MemberRank
    Oct 2010 Join Date
    Mist Ward 7 #38Location
    1,946Posts

    Re: Cant buy item in game PREMIUM shop

    It's most likely that the MatchServer problem.

  10. #10
    Enthusiast ZohanGP is offline
    MemberRank
    Mar 2013 Join Date
    39Posts

    Re: Cant buy item in game PREMIUM shop

    can release the code?

    relase code shop vip

  11. #11
    Its Friday :D! trunksx is offline
    MemberRank
    Feb 2007 Join Date
    PerúLocation
    232Posts

    Re: Cant buy item in game PREMIUM shop

    debug at the cannot buy item line

  12. #12
    Currently Stoned ! Ronny786 is offline
    MemberRank
    Dec 2011 Join Date
    Lost WorldLocation
    984Posts

    Re: Cant buy item in game PREMIUM shop

    Quote Originally Posted by trunksx View Post
    debug at the cannot buy item line
    nvm. i'll make new function ^^



Advertisement