Plus Auto Notice(Sample + Source)

Page 9 of 25 FirstFirst 123456789101112131415161719 ... LastLast
Results 121 to 135 of 372
  1. #121
    Member >>LiNkS<< is offline
    MemberRank
    Apr 2007 Join Date
    Alex NorthLocation
    96Posts

    Re: Plus Auto Notice(Sample + Source)

    What if i want to know other Operation? for example i want to know when a item has been destroyed.

  2. #122
    Member herolord46 is offline
    MemberRank
    Aug 2012 Join Date
    90Posts

    Re: Plus Auto Notice(Sample + Source)

    How To Fix ITEM NAMES ?
    ads-305-z.jpg

  3. #123
    Member >>LiNkS<< is offline
    MemberRank
    Apr 2007 Join Date
    Alex NorthLocation
    96Posts

    Re: Plus Auto Notice(Sample + Source)

    Quote Originally Posted by herolord46 View Post
    How To Fix ITEM NAMES ?
    ads-305-z.jpg
    Read the post lemoniscool said how to do:

    Quote Originally Posted by lemoniscool View Post
    for everyone that wants to change code name into the real item name ..
    copy the lines for all items from textdata_equip&skill.txt then remove everything but the Name code name (SN_ITEM_BLABLA) and the real name, after that remove the SN_ from name code names and then seperate them with one tab. after that copy it all to a database named SRO_VT_SHARD.sbo._ItemName (create that table with 2 columns first one named CodeName128 varchar and the other one named Name also varchar)

    after that all you have to do is change the query inside _AddLogItem:

    PHP Code:
    select @iname Name from SRO_VT_SHARD.dbo._ItemName where CodeName128 in(select CodeName128 from SRO_VT_SHARD.dbo._RefObjCommon where id = @iid
    Attachment 132687

  4. #124
    LEARNING PX2000 is offline
    MemberRank
    May 2009 Join Date
    Cagayan de Oro,Location
    417Posts

    Re: Plus Auto Notice(Sample + Source)

    Quote Originally Posted by >>LiNkS<< View Post
    What if i want to know other Operation? for example i want to know when a item has been destroyed.
    "Destroy" operation is 41 .. correct me if i'm wrong

    Quote Originally Posted by herolord46 View Post
    How To Fix ITEM NAMES ?
    ads-305-z.jpg
    Code:
    /****** Object:  Table [dbo].[_RefObjItemName]    Script Date: 06/26/2013 11:37:48 ******/
    SET ANSI_NULLS ON
    GO
    
    
    SET QUOTED_IDENTIFIER ON
    GO
    
    
    SET ANSI_PADDING ON
    GO
    
    
    CREATE TABLE [dbo].[_RefObjItemName](
    	[Service] [int] NOT NULL,
    	[NameStrID128] [varchar](128) NOT NULL,
    	[Lang1] [varchar](128) NULL,
    	[Lang2] [varchar](128) NULL,
    	[Lang3] [varchar](128) NULL,
    	[Lang4] [varchar](128) NULL,
    	[Lang5] [varchar](128) NULL,
    	[Lang6] [varchar](128) NULL,
    	[Lang7] [varchar](128) NULL,
    	[Lang8] [varchar](128) NULL,
    	[Lang9] [varchar](128) NULL,
    	[Lang10] [varchar](128) NULL,
    	[Lang11] [varchar](128) NULL,
    	[Lang12] [varchar](128) NULL,
    	[Lang13] [varchar](128) NULL,
    	[Lang14] [varchar](128) NULL,
    	[Lang15] [varchar](128) NULL,
    	[Lang16] [varchar](128) NULL,
    	[Lang17] [varchar](128) NULL,
    	[Lang18] [varchar](128) NULL,
    	[Lang19] [varchar](128) NULL,
    	[Lang20] [varchar](128) NULL,
    	[Index] [int] IDENTITY(1,1) NOT NULL,
     CONSTRAINT [PK__RefObjItemName] PRIMARY KEY CLUSTERED 
    (
    	[Index] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON, FILLFACTOR = 90) ON [PRIMARY]
    ) ON [PRIMARY]
    
    
    GO
    
    
    SET ANSI_PADDING OFF
    GO
    
    
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang1]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang2]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang3]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang4]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang5]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang6]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang7]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang8]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang9]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang10]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang11]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang12]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang13]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang14]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang15]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang16]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang17]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang18]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang19]
    GO
    ALTER TABLE [dbo].[_RefObjItemName] ADD  DEFAULT (0) FOR [Lang20]
    GO

  5. #125
    Member herolord46 is offline
    MemberRank
    Aug 2012 Join Date
    90Posts

    Re: Plus Auto Notice(Sample + Source)

    lemoniscool you share please dbo._ItemName I dont maked :S

  6. #126
    Xeulin™ Showtek is offline
    MemberRank
    Nov 2011 Join Date
    UKLocation
    264Posts

    Re: Plus Auto Notice(Sample + Source)

    Quote Originally Posted by herolord46 View Post
    lemoniscool you share please dbo._ItemName I dont maked :S
    Use PX2000 query and insert this: items.txt

  7. #127
    Member herolord46 is offline
    MemberRank
    Aug 2012 Join Date
    90Posts

    Re: Plus Auto Notice(Sample + Source)

    Working Fine now. Adv Not Woking ? I using +2 adv Notice Not Write :S ?
    ads-305-z.jpg

  8. #128
    Member omega0511 is offline
    MemberRank
    Apr 2006 Join Date
    74Posts

    Re: Plus Auto Notice(Sample + Source)

    hep The version is incorrect, please restart the programm !

  9. #129
    Account Upgraded | Title Enabled! lemoniscool is offline
    MemberRank
    Nov 2009 Join Date
    GermanyLocation
    579Posts

    Re: Plus Auto Notice(Sample + Source)

    Quote Originally Posted by herolord46 View Post
    lemoniscool you share please dbo._ItemName I dont maked :S
    PHP Code:
    USE [SRO_VT_SHARD]
    GO

    /****** Object:  Table [dbo].[_ItemName]    Script Date: 06/26/2013 18:01:43 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    SET ANSI_PADDING ON
    GO

    CREATE TABLE 
    [dbo].[_ItemName](
        [
    CodeName128] [varchar](50NOT NULL,
        [
    Name] [varchar](50NOT NULL
    ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF
    GO 
    after creating it insert the lines from the attached text file into the table



    btw, im almost done with the newer version of this tool
    Attached Files Attached Files

  10. #130
    Valued Member Mixizi is offline
    MemberRank
    Oct 2012 Join Date
    122Posts

    Re: Plus Auto Notice(Sample + Source)

    Quote Originally Posted by lemoniscool View Post
    PHP Code:
    USE [SRO_VT_SHARD]
    GO

    /****** Object:  Table [dbo].[_ItemName]    Script Date: 06/26/2013 18:01:43 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    SET ANSI_PADDING ON
    GO

    CREATE TABLE 
    [dbo].[_ItemName](
        [
    CodeName128] [varchar](50NOT NULL,
        [
    Name] [varchar](50NOT NULL
    ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF
    GO 
    after creating it insert the lines from the attached text file into the table



    btw, im almost done with the newer version of this tool
    Will you release the source code ?

  11. #131
    Apprentice Csarmy is offline
    MemberRank
    May 2013 Join Date
    14Posts

    Re: Plus Auto Notice(Sample + Source)

    sro-2013-06-26-22-a

    Fixx :)

  12. #132
    In the Emperor name Caosfox is offline
    MemberRank
    Jun 2011 Join Date
    Balcora GateLocation
    1,608Posts

    Re: Plus Auto Notice(Sample + Source)

    Quote Originally Posted by Mixizi View Post
    Will you release the source code ?
    yup, source is going to be released

  13. #133
    Enthusiast onurgs59 is offline
    MemberRank
    Sep 2011 Join Date
    31Posts

    Re: Plus Auto Notice(Sample + Source)

    Can we do it and above +8 ?

  14. #134
    LEARNING PX2000 is offline
    MemberRank
    May 2009 Join Date
    Cagayan de Oro,Location
    417Posts

    Re: Plus Auto Notice(Sample + Source)

    Quote Originally Posted by onurgs59 View Post
    Can we do it and above +8 ?
    if(@strDesc_separado >= 8) //+8 or above +8

  15. #135
    Apprentice blackblood9 is offline
    MemberRank
    May 2012 Join Date
    8Posts

    Re: Plus Auto Notice(Sample + Source)

    Guys any One Can Upload the Fixed One Because the last Version saying Version is Wrong all the time



Advertisement