UnderWorld-Online :: Cap110 Database Hacked Saw1337

Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    Apprentice kafemis is offline
    MemberRank
    Dec 2013 Join Date
    7Posts

    UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Database

    Full Clıent

    Script

    Start quest reward items:



    We've edited all Baghdad and Jupiter mobs




    New Areas
    Survival area (Uniques)



    Job war system





    Champions system







    Hacked By Saw1337

    Read Me

    Skype: hasan.aksoy42

    Facebook: www.fb.com/OkumadaSokam


  2. #2
    Apprentice musty10 is offline
    MemberRank
    Oct 2011 Join Date
    8Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    sql 2012?

  3. #3
    Learning denise456 is offline
    MemberRank
    Feb 2012 Join Date
    BrasilLocation
    318Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Quote Originally Posted by musty10 View Post
    sql 2012?
    Yeah bro SQL 2012

  4. #4
    Account Upgraded | Title Enabled! cyucyu is online now
    MemberRank
    Mar 2007 Join Date
    296Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    SMC:

    connot connect to division manager (access denied)

  5. #5
    Member Coolza is offline
    MemberRank
    Mar 2013 Join Date
    72Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Change sec_primary, sec_content =231

  6. #6
    Member fuddreckers2 is offline
    MemberRank
    Jan 2013 Join Date
    92Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    well you released old backup of my database but there's some bugs on the old backup lemme see if you can fix it

  7. #7
    Apprentice kafemis is offline
    MemberRank
    Dec 2013 Join Date
    7Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Quote Originally Posted by musty10 View Post
    sql 2012?
    Yes bro. Sql 2012

    - - - Updated - - -

    Quote Originally Posted by cyucyu View Post
    thank you!
    np bro.

    - - - Updated - - -

    Quote Originally Posted by cyucyu View Post
    SMC:

    connot connect to division manager (access denied)
    Yes Change sec_primary, sec_content =231

    - - - Updated - - -

    Quote Originally Posted by Abner Jimenes View Post
    bug o something?
    No Bug

    - - - Updated - - -

    Quote Originally Posted by bares1993 View Post
    hasan for president !
    ..... :)

  8. #8
    Apprentice radhanac is offline
    MemberRank
    Jan 2013 Join Date
    6Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    you need make 321 in your GM account

  9. #9
    Apprentice Wynh is offline
    MemberRank
    Feb 2013 Join Date
    18Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Job war system does not work
    and
    SR_GameServer.exe does not run

  10. #10
    Apprentice R Zone is offline
    MemberRank
    Jun 2014 Join Date
    11Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    USE [SRO_VT_SHARD]GO
    /****** Object: StoredProcedure [dbo].[_UPDATE_COST] Script Date: 26.02.2012 14:03:32 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO


    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    -- »???°³?? (??¼±E£)
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@


    ALTER PROCEDURE [dbo].[_UPDATE_COST]
    @Operation tinyint,
    @CharID int,
    @PaymentDevice int,
    @PackageItemCodeName varchar(129),
    @RemainGold bigint,
    @OwnSilkToPay int,
    @GiftSilkToPay int,
    @OffsetOptionalPoint int,
    @MileageToPay int
    AS


    SET NOCOUNT ON


    declare @PaymentDeviceTemp int
    declare @RemainOwnSilk int
    declare @RemainGiftSilk int
    declare @RemainMileage int
    declare @Result int


    set @RemainOwnSilk = 0
    set @RemainGiftSilk = 0
    set @RemainMileage = 0


    IF (@RemainGold < 0 or @MileageToPay < 0 or @OwnSilkToPay < 0 or @GiftSilkToPay < 0 or @OffsetOptionalPoint < 0)
    BEGIN
    RETURN -2001
    END


    DECLARE @PC_ID INT
    set @PC_ID = @CharID
    ----------------------------------------------------------
    -- Operation?? µû¶?¼* A¯A? ?³¸¯?? ¾?A?µ?°? ³?¾î ??¼?µµ A?°?, cos ¾?A?µ?°? ³?¾î ?? ¼?µµ A?´U.
    -- ?³¸¯?? ¾?A?µ?¸¦ ¾îA¶´? ¾E¾?³»¾? CI°?´U.
    ----------------------------------------------------------
    if (@Operation = 19)
    begin
    -- COS ?ë ¹°C°A» ±¸AOC?°?´I±?... ?³¸¯ ?£¾?¼* µ· »©?à¾???...
    SELECT @PC_ID = OwnerCharID FROM _CharCOS WHERE ID = @PC_ID
    IF (@@ERROR <> 0 OR @@ROWCOUNT = 0)
    BEGIN
    RETURN -2002
    END
    end
    /*
    #define EXPAND_DEVICE_GOLDPRICE 1
    #define EXPAND_DEVICE_SILKPRICE 2
    #define EXPAND_DEVICE_GIFTSILKPRICE 4
    #define EXPAND_DEVICE_GUILDPOINT 8
    #define EXPAND_DEVICE_MILEAGE 16
    */


    if ((@PaymentDevice & (2 | 4 | 16 )) > 0)
    begin
    -- ½C?©, ¼±¹°½C?©, ¸¶AI¸®??¸¦ ±î¾? CI´A±¸¸¸.
    -- ´U, ¸¶AI¸®??´A ?E¼CA?´U.


    -- ?³¸¯??AC JID¸¦ ¾?¾î?A³E¶?.
    declare @JID int
    select top 1 @JID = UserJID from _User
    where CharID = @PC_ID
    IF (@@ROWCOUNT = 0 OR @@ERROR <> 0)
    BEGIN
    RETURN -2006
    END


    DECLARE @PackageItemID int
    select @PackageItemID = ID from dbo._RefPackageItem where codename128 = @PackageItemCodeName


    DECLARE @rvalue int
    -- EXEC @rvalue = SRO_VT_ACCOUNT.DBO._ConsumeSilkByGameServer @JID, @OwnSilkToPay OUTPUT, @GiftSilkToPay OUTPUT, @MileageToPay output, 1, @CharID
    EXEC @rvalue = SRO_VT_ACCOUNT.DBO._ConsumeSilkByGameServer @JID, @OwnSilkToPay OUTPUT, @GiftSilkToPay OUTPUT, @MileageToPay output, 0, @CharID, @PackageItemID , 0


    IF (@rvalue < 0 OR @@ERROR <> 0)
    BEGIN
    RETURN -2012
    END
    --------------------------
    --<< 1. ¼??¤ Aü ??µ? >> -- ??E*
    --------------------------
    -- -- °OA? ¼*¹?AE??¼* °»½? ¹?±â A§C? cost °?A» °?°? ?×A????? ³?¾îµ?´U.
    -- insert into _ResultOfPackageItemToMappingWithServerSide
    -- values (@Operation, @CharID, 255, @OwnSilkToPay, 2, 0, 1)
    --
    -- if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    -- begin
    -- return -2007
    -- end
    --
    -- insert into _ResultOfPackageItemToMappingWithServerSide
    -- values (@Operation, @CharID, 254,@GiftSilkToPay, 4, 0, 1)
    --
    -- if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    -- begin
    -- return -2007
    -- end
    --
    -- insert into _ResultOfPackageItemToMappingWithServerSide
    -- values (@Operation, @CharID, 253,@MileageToPay, 16, 0, 1)
    --------------------------
    --<< 1. ¼??¤ E? ??µ? >> --
    --------------------------
    -- °OA? ¼*¹?AE??¼* °»½? ¹?±â A§C? cost °?A» °?°? ?×A????? ³?¾îµ?´U.
    insert into _ResultOfPackageItemToMappingWithServerSide
    values (@Operation, @CharID, 255, @OwnSilkToPay, 2, 0, 1, 0)


    if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    begin
    return -2007
    end


    insert into _ResultOfPackageItemToMappingWithServerSide
    values (@Operation, @CharID, 254,@GiftSilkToPay, 4, 0, 1, 0)


    if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    begin
    return -2007
    end


    insert into _ResultOfPackageItemToMappingWithServerSide
    values (@Operation, @CharID, 253,@MileageToPay, 16, 0, 1, 0)




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


    if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    begin
    return -2007
    end
    end


    -- gold
    if ((@PaymentDevice & 1) > 0)
    begin
    UPDATE _Char SET RemainGold = @RemainGold WHERE CharID = @PC_ID
    IF (@@ERROR <> 0 OR @@ROWCOUNT = 0)
    BEGIN
    RETURN -2003
    END
    end


    -- guildpoint
    if ((@PaymentDevice & 8) > 0)
    BEGIN
    -- ±?µ?¸¦ ¾E¾???¶?.
    declare @GuildID int
    select @GuildID = GuildID from _GuildMember
    where CharID = @PC_ID


    IF (@@ERROR <> 0 OR @@ROWCOUNT = 0)
    BEGIN
    RETURN -2004
    END


    -- ±?µ? ?÷AI?® ±î¶?.
    update _Guild set GatheredSP = GatheredSP - @OffsetOptionalPoint
    where GatheredSP >= @OffsetOptionalPoint and ID = @GuildID


    IF (@@ERROR <> 0 OR @@ROWCOUNT = 0)
    BEGIN
    /*
    -- ¾?A»¼?µµ A?´A°?´U.


    -- by novice. 2010-01-15 ??·¯??µ? µ¥A???Cü E®A?
    -- ??·? ??¼®µC¾î A?´? ??µ?A???¸¸, ??E? °³¹?CI´A »ç¶÷µéA?
    -- ¼??¤µC?? ¾EA? ³»?ëA» ?¸°? E¥¶?½?·¯?? C? ¼? A?¾î¼*
    -- A? ?I??±î?? ¼??¤C?¹?¸²!
    -- declare @Slot tinyint
    declare @Slot int
    declare @RefItemSerial64 bigint
    declare @RefItemDBID bigint
    declare @RefItemID int
    declare @Type tinyint


    -- by novice. 2010-01-15 ??·¯??µ? µ¥A???Cü E®A?
    -- set @Slot = 0xd0 -- error_num ¼*¹???¼* »ç?ëCI´A ??·¯


    -- MAKE_SRO_SP_ERR_TYPE( _UPDATE_COST, 0x0004);
    -- DEFINE_SRO_SP_ERR( SRO_SP_ERR_NOT_ENOUGH_GUILD_POINT, _UPDATE_COST, 0x8001 ); // ==> 0x80010004
    -- BIND_SRO_SP_ERR_TO_SRO_ERR( SRO_SP_ERR_NOT_ENOUGH_GUILD_POINT, STRGERR_NOT_ENOUGH_GUILDPOINT );
    set @Slot = 0x80010004 -- error_num ¼*¹???¼* »ç?ëCI´A ??·¯
    set @RefItemSerial64 = 0
    set @RefItemDBID = 0
    set @RefItemID = 0
    set @Type = 2
    select @Operation, @Slot, @RefItemSerial64, @RefItemDBID, @RefItemID, @Type
    */
    RETURN -2005
    END
    --------------------------
    --<< 2. ¼??¤ Aü ??µ? >> --
    --------------------------
    -- °OA? ¼*¹?AE??¼* °»½? ¹?±â A§C? cost °?A» °?°? ?×A????? ³?¾îµ?´U.
    -- insert into _ResultOfPackageItemToMappingWithServerSide
    -- values (@Operation, @CharID, 252, @OffsetOptionalPoint, 8, 0, 1)
    --------------------------
    --<< 2. ¼??¤ E? ??µ? >> --
    --------------------------
    -- °OA? ¼*¹?AE??¼* °»½? ¹?±â A§C? cost °?A» °?°? ?×A????? ³?¾îµ?´U.
    insert into _ResultOfPackageItemToMappingWithServerSide
    values (@Operation, @CharID, 252, @OffsetOptionalPoint, 8, 0, 1, 0)




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


    if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    begin
    return -2007
    end
    end


    -- honorpoint
    else if ((@PaymentDevice & 32) > 0)
    begin
    -- honorpoint ±î¶?.
    update _TrainingCampMember set HonorPoint = HonorPoint - @OffsetOptionalPoint
    where HonorPoint >= @OffsetOptionalPoint and CharID = @PC_ID


    if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    begin
    return -2006
    end
    --------------------------
    --<< 3. ¼??¤ Aü ??µ? >> --
    --------------------------
    -- °OA? ¼*¹?AE??¼* °»½? ¹?±â A§C? cost °?A» °?°? ?×A????? ³?¾îµ?´U.
    -- insert into _ResultOfPackageItemToMappingWithServerSide
    -- values (@Operation, @CharID, 252, @OffsetOptionalPoint, 32, 0, 1)


    --------------------------
    --<< 3. ¼??¤ E? ??µ? >> --
    --------------------------
    -- °OA? ¼*¹?AE??¼* °»½? ¹?±â A§C? cost °?A» °?°? ?×A????? ³?¾îµ?´U.
    insert into _ResultOfPackageItemToMappingWithServerSide
    values (@Operation, @CharID, 252, @OffsetOptionalPoint, 32, 0, 1, 0)




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


    if (@@ERROR <> 0 or @@ROWCOUNT = 0)
    begin
    return -2007
    end
    end


    SET NOCOUNT OFF




    return 1


    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    --@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    For Fix DC

  11. #11
    Apprentice kafemis is offline
    MemberRank
    Dec 2013 Join Date
    7Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337


  12. #12
    Apprentice msbmohamed is offline
    MemberRank
    Nov 2012 Join Date
    24Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    perfect database , but everything like scrolls or even premium in item mall or in npc scrolls when i click to use the item i get dc , then after i relog i found the item opened , also some scrolls give

    would be Thanks if some one could help me with solution

    - - - Updated - - -



    that's another problem in the skill for the new scrolls in game
    any one could tell me how i can start to fix the red lines and the dc which occuer from this scrolls ?

  13. #13
    Novice AZM0S is offline
    MemberRank
    May 2013 Join Date
    3Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Quote Originally Posted by msbmohamed View Post
    perfect database , but everything like scrolls or even premium in item mall or in npc scrolls when i click to use the item i get dc , then after i relog i found the item opened , also some scrolls give

    would be Thanks if some one could help me with solution

    - - - Updated - - -



    that's another problem in the skill for the new scrolls in game
    any one could tell me how i can start to fix the red lines and the dc which occuer from this scrolls ?
    About your first problem it happens only with lottery scrolls and i didn't find a solution yet..
    You can fix the red lines problem by adding effects to the scroll's skills..

  14. #14
    Apprentice msbmohamed is offline
    MemberRank
    Nov 2012 Join Date
    24Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Quote Originally Posted by AZM0S View Post
    About your first problem it happens only with lottery scrolls and i didn't find a solution yet..
    You can fix the red lines problem by adding effects to the scroll's skills..

    not lottery scrolls only , i take dc if i use any item in game like normal premium and devil also all the new scrolls
    and for the red lines can u share the skilleffect lines and database lines Pl0x ?

    ThQ in Advance
    Last edited by msbmohamed; 22-06-14 at 05:08 PM.

  15. #15
    Enthusiast mrchymto is offline
    MemberRank
    Jun 2008 Join Date
    44Posts

    Re: UnderWorld-Online :: Cap110 Database Hacked Saw1337

    Script link dead, pls reupload
    Last edited by mrchymto; 24-06-14 at 03:28 AM.



Page 1 of 2 12 LastLast

Advertisement