Cabal GM Tool EP8 (edited from TDChien

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 33
  1. #16
    Dark Cabal Games sasuke is online now
    MemberRank
    Oct 2007 Join Date
    In your houseLocation
    1,663Posts
    can anyone create that procedure?

  2. #17
    Member nikdra is online now
    MemberRank
    Dec 2020 Join Date
    SQL-UE5-PHP-C++Location
    64Posts
    1)Why should someone do something for you?
    2)You don't have hands?
    3)If you don't want to learn, you better leave the game dev .
    4) don't like lazy people.

  3. #18
    Dark Cabal Games sasuke is online now
    MemberRank
    Oct 2007 Join Date
    In your houseLocation
    1,663Posts
    Quote Originally Posted by nikdra View Post
    1)Why should someone do something for you?
    2)You don't have hands?
    3)If you don't want to learn, you better leave the game dev .
    4) don't like lazy people.
    first of all nobody asked you anything second thing until recently you were crying over my discord and now come here and be a know-it-all if you have to give these answers you better leave Ragezone

  4. #19
    Member nikdra is online now
    MemberRank
    Dec 2020 Join Date
    SQL-UE5-PHP-C++Location
    64Posts
    Wow, you sound like a real man.

  5. #20
    Apprentice playboy99 is offline
    MemberRank
    Sep 2013 Join Date
    8Posts
    Quote Originally Posted by sasuke View Post
    for me too
    Here cabal_sp_get_charpet

    ALTER PROCEDURE [dbo].[cabal_sp_get_charpet]
    (@PetSerial INT, @PetId INT, @CharId INT, @KINdIdx INT)
    ASBEGIN SELECT * FROM cabal_pet_table where OwnerCharIdx = @CharIdEND

  6. #21
    Dark Cabal Games sasuke is online now
    MemberRank
    Oct 2007 Join Date
    In your houseLocation
    1,663Posts
    Quote Originally Posted by playboy99 View Post
    Here cabal_sp_get_charpet

    ALTER PROCEDURE [dbo].[cabal_sp_get_charpet]
    (@PetSerial INT, @PetId INT, @CharId INT, @KINdIdx INT)
    ASBEGIN SELECT * FROM cabal_pet_table where OwnerCharIdx = @CharIdEND
    bro gives this query error

  7. #22
    Apprentice playboy99 is offline
    MemberRank
    Sep 2013 Join Date
    8Posts
    Quote Originally Posted by sasuke View Post
    bro gives this query error
    You need some knowledge ab Sql. Search gg how to create store procedure and you can find out.

  8. #23
    Valued Member amiidotcom is offline
    MemberRank
    Aug 2016 Join Date
    MYLocation
    108Posts
    Quote Originally Posted by sasuke View Post
    bro gives this query error
    Bro . Easy things .

    From alter change to create.


    CREATE PROCEDURE [dbo].[cabal_sp_get_charpet]
    (@PetSerial INT, @PetId INT, @CharId INT, @KINdIdx INT)
    ASBEGIN SELECT * FROM cabal_pet_table where OwnerCharIdx = @CharIdEND

  9. #24
    Valued Member Aerox009x is offline
    MemberRank
    Jul 2018 Join Date
    119Posts
    Use Server01
    GO
    CREATE PROCEDURE [dbo].[cabal_sp_get_charpet](@PetSerial INT, @PetId INT, @CharId INT, @KINdIdx INT)
    AS
    BEGIN SELECT * FROM cabal_pet_table where OwnerCharIdx = @CharId
    End

    Very easy for you ....T.T

  10. #25
    Account Upgraded | Title Enabled! RGaming is online now
    MemberRank
    Jul 2009 Join Date
    PronteraLocation
    581Posts
    Quote Originally Posted by playboy99 View Post
    Here cabal_sp_get_charpet

    ALTER PROCEDURE [dbo].[cabal_sp_get_charpet]
    (@PetSerial INT, @PetId INT, @CharId INT, @KINdIdx INT)
    ASBEGIN SELECT * FROM cabal_pet_table where OwnerCharIdx = @CharIdEND
    thank you bro I've try to create it yesterday but still getting error
    Last edited by RGaming; 26-10-22 at 12:16 PM.

  11. #26
    Member doogydog is offline
    MemberRank
    Nov 2018 Join Date
    59Posts
    what's error....?


    Error.
    column name 'Reputation' is ambiguous.



  12. #27
    Member hefajstos is offline
    MemberRank
    Aug 2009 Join Date
    87Posts
    You do not need to create a new stored procedure.
    Open FUC_CharacterAddItem.Designer.cs and replace the name in line 826 with
    DataTable dataTable = UtilityDatabase.selectStoredPro (GlobalClass.SQLGameDB, "cabal_sp_get_charpet", arrayList); on
    DataTable dataTable = UtilityDatabase.selectStoredPro (GlobalClass.SQLGameDB, "cabal_sp_get_petinfo", arrayList);
    Save and compile. Or create sp =

    USE [SERVER01]
    GO
    /****** Object: StoredProcedure [dbo].[cabal_sp_get_charpet] ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    CREATE PROCEDURE [dbo].[cabal_sp_get_charpet]
    (@PetSerial INT, @PetId INT, @CharId INT, @KINdIdx INT)
    AS
    BEGIN
    SELECT * FROM cabal_pet_table where OwnerCharIdx = @CharId
    END

    GO
    Last edited by hefajstos; 02-11-22 at 07:47 PM.

  13. #28
    Enthusiast TripleXXX is offline
    MemberRank
    Sep 2022 Join Date
    38Posts
    some get GM skill missing ???? how fix this????. only get one gm skill and 2 gm buff only.

  14. #29
    Valued Member Aerox009x is offline
    MemberRank
    Jul 2018 Join Date
    119Posts
    anyone test the mail on this tools have error.. i create the procedure still got some error. the mail is use for giving compensation to all players..

    https://ibb.co/ZxKvBV8
    Last edited by Aerox009x; 02-11-22 at 12:19 PM.

  15. #30
    Apprentice playboy99 is offline
    MemberRank
    Sep 2013 Join Date
    8Posts
    Quote Originally Posted by TripleXXX View Post
    some get GM skill missing ???? how fix this????. only get one gm skill and 2 gm buff only.
    It's depends on your Cabal Version, Is there GM skill in your Cabal.enc, your files?

    - - - Updated - - -

    Quote Originally Posted by Aerox009x View Post
    anyone test the mail on this tools have error.. i create the procedure still got some error. the mail is use for giving compensation to all players..

    https://ibb.co/ZxKvBV8
    Edit your procedure in your DB, remove parameter @ReceiverCharIdx

    Here my procedure


    ALTER PROCEDURE [dbo].[cabal_sp_mail_send_all]
    ( @Title varchar(40), @Content varchar(512), @Alz bigint = 0, @itemKindIdx int = 0, @itemOption int = 0, @itemDurationIdx int = 0)
    ASbegin DECLARE @CharacterIdx int DECLARE CURSOR_ACCOUNTS CURSOR FOR SELECT CharacterIdx FROM Server01.dbo.cabal_character_table
    OPEN CURSOR_ACCOUNTS FETCH NEXT FROM CURSOR_ACCOUNTS INTO @CharacterIdx WHILE @@FETCH_STATUS = 0 BEGIN INSERT INTO
    cabal_mail_received_table
    ( IsCommitted, ReceiverCharIdx, Type, Alz, ItemKindIdx, ItemOption, ItemDurationIdx, SenderCharIdx, Title, Content )
    VALUES
    ( 1,
    -- IsCommitted @CharacterIdx,
    dbo.Mail_GetGMType(),
    @Alz,
    @itemKindIdx,
    @itemOption,
    @itemDurationIdx,
    1,
    -- GM : 1,
    미쟁: 0 @Title,
    @Content )
    FETCH NEXT FROM CURSOR_ACCOUNTS INTO @CharacterIdx End CLOSE CURSOR_ACCOUNTS DEALLOCATE CURSOR_ACCOUNTSEND



Page 2 of 3 FirstFirst 123 LastLast

Advertisement