Card Packs

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41
  1. #16
    Apprentice prapra is offline
    MemberRank
    Apr 2006 Join Date
    13Posts

    Re: Card Packs

    just posting if someone have the same problem, now that i saw the logs (yeah, lol) i will try to repair"
    Code:
    2011-01-17 17:40:51	107	Lolo	1	[E_ODBC] ErrCode(42S02) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Invalid object name 'Pangya_GDBLog.DBO.TZ_CARD_LOG'.)
    2011-01-17 17:40:51	107	Lolo	1	[F_QUERY] LastSuccQuery(exec dbo.USP_USER_ROOM 3), CurrQuery(exec dbo.USP_CARD_JOIN_S4 3, 134219777, 4486, 2080374794, 12, 0, 1)
    2011-01-17 17:40:52	101	Lolo	2	CallProfile [Count:1696]
    2011-01-17 17:41:02	101	Lolo	2	CallProfile [Count:1679]
    2011-01-17 17:41:12	101	Lolo	2	CallProfile [Count:1688]
    2011-01-17 17:41:22	101	Lolo	2	CallProfile [Count:1686]
    2011-01-17 17:41:32	101	Lolo	2	CallProfile [Count:1706]
    2011-01-17 17:41:43	101	Lolo	2	CallProfile [Count:1702]
    Any idea?
    Last edited by prapra; 17-01-11 at 08:51 PM.

  2. #17
    Deny everything. Tsukasa is offline
    MemberRank
    Jun 2005 Join Date
    Net SlumLocation
    558Posts

    Re: Card Packs

    Edit the procedure USP_CARD_JOIN_S4 and remove or comment out the line that inserts a log entry into the nonexistent table TZ_CARD_LOG of the nonexistent database Pangya_GDBLog.

  3. #18
    Apprentice shadowsfx is offline
    MemberRank
    Jun 2009 Join Date
    20Posts

    Re: Card Packs

    Hey prapra would you mind helping me with the card? how did u manage to add them?

  4. #19
    Apprentice prapra is offline
    MemberRank
    Apr 2006 Join Date
    13Posts

    Re: Card Packs

    Quote Originally Posted by Tsukasa View Post
    Edit the procedure USP_CARD_JOIN_S4 and remove or comment out the line that inserts a log entry into the nonexistent table TZ_CARD_LOG of the nonexistent database Pangya_GDBLog.
    Spoiler:

    USE [Pangya_S4_TH]
    GO
    /****** Object: StoredProcedure [dbo].[USP_CARD_JOIN_S4] Script Date: 01/17/2011 18:20:13 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO

    ALTER PROC [dbo].[USP_CARD_JOIN_S4] (
    @UID INT
    , @JOIN_TYPEID INT
    , @JOIN_ITEMID INT
    , @CARD_TYPEID INT
    , @CARD_ITEMID INT
    , @CARD_TYPE TINYINT
    , @SLOT TINYINT
    ) -- -- WITH ENCRYPTION
    AS

    /**************************************************************************************************
    20080513 HYUN HAEJIN - USP_CARD_JOIN_USE 에서 S4로 업그레이드
    캐릭터 및 캐디카드 파츠장착

    2009-02-12, GOMI97 : 캐릭터, 캐디 이외카드 장착 불가
    상태에 따른 결과코드 추가
    0 -- ROLLBACK => 1 로 변경
    1 -- 성공 => 0
    9 -- 차감할 카드수량 부족 : 2009-04-28 추가
    4 -- JOIN_TYPEID 장착불가

    2009-04-28, GOMI97 : 카드 보유수량 추가 체크
    2009-06-19, GOMI97 : 장착할 의상 상태 체크 (VALID) ERRCODE = 8

    ERRCODE
    0 : 성공
    1 : SYS ERR
    4 : CARD_TYPE 캐릭터, 캐디 카드아님
    8 : 장착의상 체크
    9 : 카드수량 부족


    EXEC USP_CARD_JOIN_S4
    @UID = 3411537
    , @JOIN_TYPEID = 135807079
    , @JOIN_ITEMID = 572268755
    , @CARD_TYPEID = 2080374788
    , @CARD_ITEMID = 766 -- 766
    , @CARD_TYPE = 1
    , @SLOT = 2


    **************************************************************************************************/
    BEGIN

    SET NOCOUNT ON

    DECLARE @ERR TINYINT, @CARD_POP_ERR INT, @CARD_PUSH_ERR INT, @JOIN_ITEM_ID INT , @QTY INT, @TYPES TINYINT
    SET @ERR = 0
    SET @QTY = 1
    SET @JOIN_ITEM_ID = 0
    SET @TYPES = 4

    IF EXISTS ( SELECT 1 FROM PANGYA_ITEM_WAREHOUSE WITH (NOLOCK) WHERE UID = @UID AND ITEM_ID = @JOIN_ITEMID AND TYPEID = @JOIN_TYPEID AND VALID = 1 ) BEGIN

    IF ( @CARD_TYPE = 0 OR @CARD_TYPE = 1 ) BEGIN

    -- #1. MINUS CARD QTY
    EXEC USP_CARD_POP_S4 @UID, @CARD_ITEMID, @CARD_TYPEID, @QTY, 4, @CARD_POP_ERR OUTPUT
    -- SELECT @CARD_POP_ERR


    IF ( @CARD_POP_ERR = 0 ) BEGIN
    BEGIN TRAN
    -- #2. CARD = PARTS JOIN
    SELECT @JOIN_ITEM_ID = JOIN_IDX
    FROM DBO.TD_CARD_JOIN2 WITH (NOLOCK)
    WHERE UID = @UID
    AND JOIN_TYPEID = @JOIN_TYPEID
    AND JOIN_ITEMID = @JOIN_ITEMID
    AND CARD_TYPE = @CARD_TYPE
    AND SLOT = @SLOT
    AND USE_DT < GETDATE()
    AND END_DT IS NULL
    AND USE_YN = 'Y'


    IF ( @JOIN_ITEM_ID > 0 ) BEGIN

    UPDATE DBO.TD_CARD_JOIN2
    SET CARD_TYPEID = @CARD_TYPEID
    , USE_DT = GETDATE()
    WHERE UID = @UID
    AND JOIN_TYPEID = @JOIN_TYPEID
    AND JOIN_ITEMID = @JOIN_ITEMID
    AND JOIN_IDX = @JOIN_ITEM_ID

    SELECT @ERR = CASE WHEN ( @@ROWCOUNT <> 1 AND @@ERROR <> 0 ) THEN @ERR + 1 ELSE @ERR END

    END ELSE BEGIN

    INSERT INTO DBO.TD_CARD_JOIN2 (UID, JOIN_TYPEID, JOIN_ITEMID, CARD_TYPEID, CARD_TYPE, SLOT, USE_DT, USE_YN)
    VALUES (@UID, @JOIN_TYPEID, @JOIN_ITEMID, @CARD_TYPEID, @CARD_TYPE, @SLOT, GETDATE(), 'Y')

    SELECT @ERR = CASE WHEN ( @@ROWCOUNT <> 1 AND @@ERROR <> 0 ) THEN @ERR + 1 ELSE @ERR END, @JOIN_ITEM_ID = SCOPE_IDENTITY()

    END

    IF (@ERR = 0) BEGIN
    COMMIT TRAN
    SELECT RESULT = @ERR

    END ELSE BEGIN
    ROLLBACK TRAN
    SELECT RESULT = @ERR

    END


    END ELSE BEGIN -- POP END
    -- ROLLBACK CARD : ADD
    SET @ERR = @CARD_POP_ERR
    SELECT RESULT = @CARD_POP_ERR

    -- FINAL NEW CARD LOG
    -- INSERT INTO Pangya_GDBLog.DBO.TZ_CARD_LOG (TYPES, ERRCODE, UID, ORI_ITEMID, CARD_ITEMID, CARD_TYPEID, QTY, FINAL_QTY, REGDATE)
    -- SELECT @TYPES, ERRCODE = @ERR, @UID, ORI_CARD_ITEMID = @CARD_ITEMID,
    -- CARD_ITEMID = @JOIN_ITEM_ID,
    -- CARD_TYPEID = @JOIN_ITEMID,
    -- ADD_QTY = CASE WHEN (@ERR != 0) THEN 0 ELSE @QTY END,
    -- QTY = CASE WHEN (@ERR != 0) THEN 0 ELSE @QTY END, GETDATE()
    -- -- FINAL NEW CARD LOG

    END

    END ELSE BEGIN
    -- RETURN CARD_TYPE NOT CHARACTER, CADDIE : 4
    SET @ERR = 4
    SELECT RESULT = @ERR


    END
    END ELSE BEGIN
    -- 장착할 의상 없음
    SET @ERR = 8
    SELECT RESULT = @ERR
    END

    END

    Code:
    2011-01-17 18:26:36	107	Lolo	1	[E_ODBC] ErrCode(42S02) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Invalid object name 'Pangya_GDBLog.DBO.TZ_CARD_LOG'.)
    2011-01-17 18:26:36	107	Lolo	1	[F_QUERY] LastSuccQuery( exec dbo.ProcUpdateLoginInfo 'shimpz', '127.0.0.1', 20201, 0 ), CurrQuery(exec dbo.USP_CARD_JOIN_S4 3, 134219777, 4486, 2080374791, 16, 0, 1)
    2011-01-17 18:26:42	101	Lolo	2	CallProfile [Count:1669]
    2011-01-17 18:26:51	107	Lolo	1	[E_ODBC] ErrCode(42000) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Could not find stored procedure 'dbo.USP_CARD_SPCL_POP_S5'.)
    2011-01-17 18:26:51	107	Lolo	1	[F_QUERY] LastSuccQuery(exec dbo.ProcPCBang_Get_Point 3), CurrQuery(exec dbo.USP_CARD_SPCL_POP_S5  3, 2088763424, 18, 0, 12, 2, 30)
    Still the same

  5. #20
    Creator of Code chreadie is offline
    MemberRank
    Mar 2006 Join Date
    SwedenLocation
    603Posts

    Re: Card Packs

    Modify the SP and change "Pangya_GDBLog.DBO.TZ_CARD_LOG" to "Pangya_S4_TH.DBO.TZ_CARD_LOG"

  6. #21
    Apprentice prapra is offline
    MemberRank
    Apr 2006 Join Date
    13Posts

    Re: Card Packs

    Quote Originally Posted by shadowsfx View Post
    Hey prapra would you mind helping me with the card? how did u manage to add them?
    i had to add manually the cards i wanted to drop from the card packs
    this is on [Pangya_S4_TH].[dbo].[TA_CARDPACK_ITEM]
    Code:
    PACK_TYPEID	CARD_TYPEID    QTY RARETYPE    SEQ      PROB	USE_YN	MOD_SEQ	MOD_DT	card_type
    2092957696	2080374791	1	1	23	50.000	 y	23	2011-01-17 15:39:00	3
    2092957696	2080374794	2	1	24	50.000	 y	24	2011-01-17 15:39:00	3
    2092957696	2080374795	3	1	25	50.000	 y	25	2011-01-17 15:39:00	3
    2092957696	2084569098	1	1	26	50.000	 y	26	2011-01-17 15:40:00	3
    2092957696	2084569106	2	1	28	50.000	 y	28	2011-01-17 15:40:00	3
    2092957696	2084569113	3	1	29	50.000	 y	29	2011-01-17 15:40:00	3
    2092957696	2088763414	1	1	31	50.000	 y	31	2011-01-17 15:41:00	3
    2092957696	2088763416	2	1	30	50.000	 y	30	2011-01-17 15:40:00	3
    2092957696	2088763424	3	1	34	50.000	 y	1	2011-01-17 16:13:00	3
    this one is [dbo].[TA_CARDPACK_ACC]
    Code:
    PACK_TYPEID	SEQ	PACK_NM_KR	PACK_NM_EN	OUTQTY	USE_YN	IN_DATE
    2092957696	4	2092957696	NULL	3	Y	2011-01-16 19:12:00
    2092957700	3	2092957700	NULL	1	Y	2011-01-16 19:03:00
    and here is some ID for the cards i used
    Code:
    2080374794	Arthur S. Rare   +3 spin slot
    2080374791	Hana Secret      +1 control slot + 4 curve slot 
    2084569098	Titan Boo Secret (Wind 9-6 -2 wind, 5-2 -1 Wind)
    2088763424	Elf Card         (add for 30 min Elf' effect)
    2084569106	Lolo S.Rare      (+6y on power shot)
    2084569113	Caddie Secret    (add +2 pixels on impact zone)
    2088763416	Billy            (+1 item on inventory)
    2088763414	power gauge      (start with +1 Powershot)


    ---------- Post added at 08:47 PM ---------- Previous post was at 08:44 PM ----------

    Quote Originally Posted by chreadie View Post
    Modify the SP and change "Pangya_GDBLog.DBO.TZ_CARD_LOG" to "Pangya_S4_TH.DBO.TZ_CARD_LOG"
    still the same!
    i found this too:
    Code:
    2011-01-17 19:27:54	107	Lolo	1	[E_ODBC] ErrCode(42S02) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Invalid object name 'Pangya_GDBLog.DBO.TZ_CARD_LOG'.)
    2011-01-17 19:27:54	107	Lolo	1	[F_QUERY] LastSuccQuery(exec dbo.ProcGet_PCBang_Point_Item), CurrQuery(exec dbo.USP_CARD_JOIN_S4 3, 134242307, 4559, 2084569106, 17, 1, 1)
    2011-01-17 19:27:55	101	Lolo	2	CallProfile [Count:1671]
    Last edited by prapra; 17-01-11 at 10:29 PM.

  7. #22
    Novice Nootres is offline
    MemberRank
    Dec 2010 Join Date
    2Posts

    Re: Card Packs

    The cards can I add a user.
    But once I open a game room.
    is following in the log

    Code:
    0x00642160 4 ei.tmp->ei.log.txt E:\PANGYA_SRV\PY_LOGDIR/20201_20110101_2256.1.ei.tmp ]]  0x00B155A8 4 4 ] 2011-01-01 22:57:09	1	Pang-CB Server	4	[S_CARD]Card Attach : Card(TID:2084569113, ItemID:32) PARTS(TID:134242331, ItemID:8926) SLOT:5
    0x00642160 4 ei.tmp->ei.log.txt E:\PANGYA_SRV\PY_LOGDIR/20201_20110101_2256.1.ei.tmp ]]  0x00B155A8 4 4 ] 2011-01-01 22:57:09	1	Pang-CB Server	4	[N_CARD] Delete : Cadie (Secret)(Tid:2084569113, Uid:32), CurrNum(28), DecreaseNum(1), RemainNum(27)

    the card is delete

  8. #23
    Creator of Code chreadie is offline
    MemberRank
    Mar 2006 Join Date
    SwedenLocation
    603Posts

    Re: Card Packs

    Quote Originally Posted by prapra View Post
    i had to add manually the cards i wanted to drop from the card packs
    this is on [Pangya_S4_TH].[dbo].[TA_CARDPACK_ITEM]
    Code:
    PACK_TYPEID	CARD_TYPEID    QTY RARETYPE    SEQ      PROB	USE_YN	MOD_SEQ	MOD_DT	card_type
    2092957696	2080374791	1	1	23	50.000	 y	23	2011-01-17 15:39:00	3
    2092957696	2080374794	2	1	24	50.000	 y	24	2011-01-17 15:39:00	3
    2092957696	2080374795	3	1	25	50.000	 y	25	2011-01-17 15:39:00	3
    2092957696	2084569098	1	1	26	50.000	 y	26	2011-01-17 15:40:00	3
    2092957696	2084569106	2	1	28	50.000	 y	28	2011-01-17 15:40:00	3
    2092957696	2084569113	3	1	29	50.000	 y	29	2011-01-17 15:40:00	3
    2092957696	2088763414	1	1	31	50.000	 y	31	2011-01-17 15:41:00	3
    2092957696	2088763416	2	1	30	50.000	 y	30	2011-01-17 15:40:00	3
    2092957696	2088763424	3	1	34	50.000	 y	1	2011-01-17 16:13:00	3
    this one is [dbo].[TA_CARDPACK_ACC]
    Code:
    PACK_TYPEID	SEQ	PACK_NM_KR	PACK_NM_EN	OUTQTY	USE_YN	IN_DATE
    2092957696	4	2092957696	NULL	3	Y	2011-01-16 19:12:00
    2092957700	3	2092957700	NULL	1	Y	2011-01-16 19:03:00
    and here is some ID for the cards i used
    Code:
    2080374794	Arthur S. Rare   +3 spin slot
    2080374791	Hana Secret      +1 control slot + 4 curve slot 
    2084569098	Titan Boo Secret (Wind 9-6 -2 wind, 5-2 -1 Wind)
    2088763424	Elf Card         (add for 30 min Elf' effect)
    2084569106	Lolo S.Rare      (+6y on power shot)
    2084569113	Caddie Secret    (add +2 pixels on impact zone)
    2088763416	Billy            (+1 item on inventory)
    2088763414	power gauge      (start with +1 Powershot)


    ---------- Post added at 08:47 PM ---------- Previous post was at 08:44 PM ----------


    still the same!
    i found this too:
    Code:
    2011-01-17 19:27:54	107	Lolo	1	[E_ODBC] ErrCode(42S02) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Invalid object name 'Pangya_GDBLog.DBO.TZ_CARD_LOG'.)
    2011-01-17 19:27:54	107	Lolo	1	[F_QUERY] LastSuccQuery(exec dbo.ProcGet_PCBang_Point_Item), CurrQuery(exec dbo.USP_CARD_JOIN_S4 3, 134242307, 4559, 2084569106, 17, 1, 1)
    2011-01-17 19:27:55	101	Lolo	2	CallProfile [Count:1671]
    I forgot i added that table to my database, either add it or comment that row in the SP. A comment in MS SQL Server is a line that starts with --

    ---------- Post added at 06:23 AM ---------- Previous post was at 06:22 AM ----------

    Quote Originally Posted by Nootres View Post
    The cards can I add a user.
    But once I open a game room.
    is following in the log

    Code:
    0x00642160 4 ei.tmp->ei.log.txt E:\PANGYA_SRV\PY_LOGDIR/20201_20110101_2256.1.ei.tmp ]]  0x00B155A8 4 4 ] 2011-01-01 22:57:09	1	Pang-CB Server	4	[S_CARD]Card Attach : Card(TID:2084569113, ItemID:32) PARTS(TID:134242331, ItemID:8926) SLOT:5
    0x00642160 4 ei.tmp->ei.log.txt E:\PANGYA_SRV\PY_LOGDIR/20201_20110101_2256.1.ei.tmp ]]  0x00B155A8 4 4 ] 2011-01-01 22:57:09	1	Pang-CB Server	4	[N_CARD] Delete : Cadie (Secret)(Tid:2084569113, Uid:32), CurrNum(28), DecreaseNum(1), RemainNum(27)

    the card is delete
    It doesnt give you an error and back when i played there were no cards so my guess is that it should be like that. Its a consumable like Lucky Pangya.

  9. #24
    Apprentice tourweb01 is offline
    MemberRank
    Jan 2011 Join Date
    9Posts

    Re: Card Packs

    Quote Originally Posted by prapra View Post
    i had to add manually the cards i wanted to drop from the card packs
    this is on [Pangya_S4_TH].[dbo].[TA_CARDPACK_ITEM]
    Code:
    PACK_TYPEID	CARD_TYPEID    QTY RARETYPE    SEQ      PROB	USE_YN	MOD_SEQ	MOD_DT	card_type
    2092957696	2080374791	1	1	23	50.000	 y	23	2011-01-17 15:39:00	3
    2092957696	2080374794	2	1	24	50.000	 y	24	2011-01-17 15:39:00	3
    2092957696	2080374795	3	1	25	50.000	 y	25	2011-01-17 15:39:00	3
    2092957696	2084569098	1	1	26	50.000	 y	26	2011-01-17 15:40:00	3
    2092957696	2084569106	2	1	28	50.000	 y	28	2011-01-17 15:40:00	3
    2092957696	2084569113	3	1	29	50.000	 y	29	2011-01-17 15:40:00	3
    2092957696	2088763414	1	1	31	50.000	 y	31	2011-01-17 15:41:00	3
    2092957696	2088763416	2	1	30	50.000	 y	30	2011-01-17 15:40:00	3
    2092957696	2088763424	3	1	34	50.000	 y	1	2011-01-17 16:13:00	3
    this one is [dbo].[TA_CARDPACK_ACC]
    Code:
    PACK_TYPEID	SEQ	PACK_NM_KR	PACK_NM_EN	OUTQTY	USE_YN	IN_DATE
    2092957696	4	2092957696	NULL	3	Y	2011-01-16 19:12:00
    2092957700	3	2092957700	NULL	1	Y	2011-01-16 19:03:00
    and here is some ID for the cards i used
    Code:
    2080374794	Arthur S. Rare   +3 spin slot
    2080374791	Hana Secret      +1 control slot + 4 curve slot 
    2084569098	Titan Boo Secret (Wind 9-6 -2 wind, 5-2 -1 Wind)
    2088763424	Elf Card         (add for 30 min Elf' effect)
    2084569106	Lolo S.Rare      (+6y on power shot)
    2084569113	Caddie Secret    (add +2 pixels on impact zone)
    2088763416	Billy            (+1 item on inventory)
    2088763414	power gauge      (start with +1 Powershot)
    [COLOR="Silver"]

    ---------- Post added at 08:47 PM ---------- Previous post was at 08:44 PM ----------
    I do not understand. Add to it a problem
    Will be able to add these lines to what it
    Please Help me

    Beginner

  10. #25
    Apprentice prapra is offline
    MemberRank
    Apr 2006 Join Date
    13Posts

    Re: Card Packs

    OK, i now can equip cards, but when i try to use a Billy card, i get this error
    Code:
    2011-01-18 14:00:01	107	Lolo	1	[E_ODBC] ErrCode(42000) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Could not find stored procedure 'dbo.USP_CARD_SPCL_POP_S5'.)
    2011-01-18 14:00:01	107	Lolo	1	[F_QUERY] LastSuccQuery(exec dbo.ProcGet_PCBang_Point_Item), CurrQuery(exec dbo.USP_CARD_SPCL_POP_S5  3, 2088763416, 15, 0, 11, 2, 120)
    and i cant find this dbo.USP_CARD_SPCL_POP on dbo.ProcGet_PCBang_Point_Item

  11. #26
    Apprentice shadowsfx is offline
    MemberRank
    Jun 2009 Join Date
    20Posts

    Re: Card Packs

    Quote Originally Posted by prapra View Post
    i had to add manually the cards i wanted to drop from the card packs
    this is on [Pangya_S4_TH].[dbo].[TA_CARDPACK_ITEM]
    Code:
    PACK_TYPEID	CARD_TYPEID    QTY RARETYPE    SEQ      PROB	USE_YN	MOD_SEQ	MOD_DT	card_type
    2092957696	2080374791	1	1	23	50.000	 y	23	2011-01-17 15:39:00	3
    2092957696	2080374794	2	1	24	50.000	 y	24	2011-01-17 15:39:00	3
    2092957696	2080374795	3	1	25	50.000	 y	25	2011-01-17 15:39:00	3
    2092957696	2084569098	1	1	26	50.000	 y	26	2011-01-17 15:40:00	3
    2092957696	2084569106	2	1	28	50.000	 y	28	2011-01-17 15:40:00	3
    2092957696	2084569113	3	1	29	50.000	 y	29	2011-01-17 15:40:00	3
    2092957696	2088763414	1	1	31	50.000	 y	31	2011-01-17 15:41:00	3
    2092957696	2088763416	2	1	30	50.000	 y	30	2011-01-17 15:40:00	3
    2092957696	2088763424	3	1	34	50.000	 y	1	2011-01-17 16:13:00	3
    this one is [dbo].[TA_CARDPACK_ACC]
    Code:
    PACK_TYPEID	SEQ	PACK_NM_KR	PACK_NM_EN	OUTQTY	USE_YN	IN_DATE
    2092957696	4	2092957696	NULL	3	Y	2011-01-16 19:12:00
    2092957700	3	2092957700	NULL	1	Y	2011-01-16 19:03:00
    and here is some ID for the cards i used
    Code:
    2080374794	Arthur S. Rare   +3 spin slot
    2080374791	Hana Secret      +1 control slot + 4 curve slot 
    2084569098	Titan Boo Secret (Wind 9-6 -2 wind, 5-2 -1 Wind)
    2088763424	Elf Card         (add for 30 min Elf' effect)
    2084569106	Lolo S.Rare      (+6y on power shot)
    2084569113	Caddie Secret    (add +2 pixels on impact zone)
    2088763416	Billy            (+1 item on inventory)
    2088763414	power gauge      (start with +1 Powershot)


    ---------- Post added at 08:47 PM ---------- Previous post was at 08:44 PM ----------


    still the same!
    i found this too:
    Code:
    2011-01-17 19:27:54	107	Lolo	1	[E_ODBC] ErrCode(42S02) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Invalid object name 'Pangya_GDBLog.DBO.TZ_CARD_LOG'.)
    2011-01-17 19:27:54	107	Lolo	1	[F_QUERY] LastSuccQuery(exec dbo.ProcGet_PCBang_Point_Item), CurrQuery(exec dbo.USP_CARD_JOIN_S4 3, 134242307, 4559, 2084569106, 17, 1, 1)
    2011-01-17 19:27:55	101	Lolo	2	CallProfile [Count:1671]
    Thank you very much prapra, ill test it right now, i didn't have the chance to check the forum before because of my classes and work. u.u

    ----

    Quote Originally Posted by prapra View Post
    OK, i now can equip cards, but when i try to use a Billy card, i get this error
    Code:
    2011-01-18 14:00:01	107	Lolo	1	[E_ODBC] ErrCode(42000) ErrMsg([Microsoft][SQL Server Native Client 10.0][SQL Server]Could not find stored procedure 'dbo.USP_CARD_SPCL_POP_S5'.)
    2011-01-18 14:00:01	107	Lolo	1	[F_QUERY] LastSuccQuery(exec dbo.ProcGet_PCBang_Point_Item), CurrQuery(exec dbo.USP_CARD_SPCL_POP_S5  3, 2088763416, 15, 0, 11, 2, 120)
    and i cant find this dbo.USP_CARD_SPCL_POP on dbo.ProcGet_PCBang_Point_Item
    I'm having this problem too.
    Last edited by shadowsfx; 19-01-11 at 04:18 AM.

  12. #27
    Member o800920 is offline
    MemberRank
    Dec 2008 Join Date
    51Posts

    Re: Card Packs

    [E_CARD] CardPack Open : ErrorCode(1), Query(exec dbo.USP_CARDPACK_USE_S4 3, 2092957700, 1)

    how can i fix it

  13. #28
    Apprentice shadowsfx is offline
    MemberRank
    Jun 2009 Join Date
    20Posts

    Re: Card Packs

    it's probably because of the Pangya_GDBLog.DBO.TZ_CARD_LOG call, since it's trying to modify a non-existent table from a non existent db. make a comment out of the entire block and check again.

  14. #29
    Member o800920 is offline
    MemberRank
    Dec 2008 Join Date
    51Posts

    Re: Card Packs

    Quote Originally Posted by shadowsfx View Post
    it's probably because of the Pangya_GDBLog.DBO.TZ_CARD_LOG call, since it's trying to modify a non-existent table from a non existent db. make a comment out of the entire block and check again.
    do you have Pangya_GDBLog.DBO.TZ_CARD_LOG process sql code??

  15. #30
    Apprentice shadowsfx is offline
    MemberRank
    Jun 2009 Join Date
    20Posts

    Re: Card Packs

    it looks like this:

    Code:
    -- FINAL NEW CARD LOG
    --	INSERT INTO Pangya_GDBLog.DBO.TZ_CARD_LOG (TYPES, ERRCODE, UID, ORI_ITEMID, CARD_ITEMID, CARD_TYPEID, QTY, FINAL_QTY, REGDATE)
    	--SELECT	@TYPES, ERRCODE = @ERR, @UID, ORI_CARD_ITEMID = @CARD_ITEMID, 
    	--		CARD_ITEMID = @JOIN_ITEM_ID, 
    	--		CARD_TYPEID = @JOIN_ITEMID, 
    	--		ADD_QTY = CASE WHEN (@ERR != 0) THEN 0 ELSE @QTY END, 
    	--		QTY = CASE WHEN (@ERR != 0) THEN 0 ELSE @QTY END, GETDATE()
    	-- FINAL NEW CARD LOG
    just like that put a -- to comment it out. those blocks are in the SP for the cards in the Pangya_TH_S4 db

    -----------------

    Now going back on track. Does someone know a fix for the timed cards? i've been trying like crazy but nothing ):
    Last edited by shadowsfx; 19-01-11 at 11:03 PM.



Page 2 of 3 FirstFirst 123 LastLast

Advertisement