[Release] MMT Official Season II (Eng)

  1. #2161
    Account Upgraded | Title Enabled! Malevicha is offline
    MemberRank
    Sep 2008 Join Date
    231Posts

    Re: [Release] MMT Official Season II (Eng)

    in this server can i use this anti dupe script? :?

    use MuOnline

    if exists(select * from dbo.sysobjects where type='p' and name='WZ_GetItemSerial')
    drop procedure WZ_GetItemSerial
    go

    CREATE procedure WZ_GetItemSerial
    as
    BEGIN
    DECLARE @ItemSerial int
    set nocount on
    begin transaction
    update GameServerInfo set @ItemSerial = ItemCount = (case when ItemCount < 0x7effffff then ItemCount+1
    else 1
    end )
    if(@@error <> 0)
    begin
    rollback transaction
    select-1
    end
    else
    begin
    commit transaction
    select @ItemSerial
    end
    END
    GO

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[trg_CheckSameID]') and OBJECTPROPERTY(id, N'IsTrigger') = 1)
    drop trigger [dbo].[trg_CheckSameID]
    GO

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[AllItemsLog]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[AllItemsLog]
    GO

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[CopyLog]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[CopyLog]
    GO

    CREATE TABLE [dbo].[AllItemsLog] (
    [items_id] [int] IDENTITY (1, 1) NOT NULL ,
    [items_type] [binary] (1) NOT NULL ,
    [items_serial] [binary] (4) NOT NULL ,
    [items_acid] [varchar] (10) COLLATE Chinese_PRC_CI_AS NOT NULL
    ) ON [PRIMARY]
    GO

    CREATE TABLE [dbo].[CopyLog] (
    [copy_id] [int] IDENTITY (1, 1) NOT NULL ,
    [copy_acid] [varchar] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [copy_whdata] [binary] (1200) NOT NULL ,
    [copy_date] [datetime] NOT NULL
    ) ON [PRIMARY]
    GO

    ALTER TABLE [dbo].[AllItemsLog] ADD
    CONSTRAINT [DF_CT_ITEM_item] DEFAULT (0) FOR [items_type],
    CONSTRAINT [DF_CT_ITEM_itemid] DEFAULT (0) FOR [items_serial],
    CONSTRAINT [DF_CT_ITEM_itemrole] DEFAULT ('\') FOR [items_acid]
    GO

    CREATE INDEX [IX_CT_ITEM] ON [dbo].[AllItemsLog]([items_type], [items_serial]) ON [PRIMARY]
    GO

    ALTER TABLE [dbo].[CopyLog] ADD
    CONSTRAINT [DF_CopyLog_copy_date] DEFAULT (getdate()) FOR [copy_date]
    GO

    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_NULLS ON
    GO
    CREATE TRIGGER [dbo].[trg_CheckSameID] ON [dbo].[character]
    FOR UPDATE
    AS
    BEGIN
    IF UPDATE(inventory)
    BEGIN
    SET NOCOUNT ON
    DECLARE
    @wh_acid varchar(10),
    @wh_data binary(1200),
    @wh_type binary(1),
    @wh_serial binary(4),
    @cr_user varchar(10),
    @cr_acid varchar(10),
    @cr_data binary(760),
    @cr_type binary(1),
    @cr_serial binary(4),
    @al_acid varchar(10),
    @j int,
    @k int,
    @find bit
    SELECT @cr_acid=i.accountid,
    @cr_data=i.inventory
    FROM inserted i
    SET @j=0
    SET @find=0
    WHILE @j<76 AND @cr_data IS NOT NULL
    BEGIN
    SET @cr_type=SUBSTRING(@cr_data,@j*10+1,1)
    SET @cr_serial=SUBSTRING(@cr_data,@j*10+4,4)
    IF @cr_type<>0xFF AND @cr_serial<>0x00000000
    BEGIN
    SELECT @al_acid=items_acid FROM allitemslog WHERE items_type=@cr_type AND items_serial=@cr_serial

    IF @al_acid IS NULL
    INSERT INTO allitemslog (items_type,items_serial,items_acid) VALUES (@cr_type,@cr_serial,@cr_acid)
    ELSE
    BEGIN
    UPDATE allitemslog SET items_acid=@cr_acid WHERE items_type=@cr_type AND items_serial=@cr_serial

    SELECT @wh_data=items FROM warehouse WHERE accountid=@al_acid
    SET @k=0
    WHILE @k<120 AND @wh_data IS NOT NULL
    BEGIN
    SET @wh_type=SUBSTRING(@wh_data,@k*10+1,1)
    SET @wh_serial=SUBSTRING(@wh_data,@k*10+4,4)
    IF @wh_type=@cr_type AND @wh_serial=@cr_serial
    SET @find=1
    SET @k=@k+1
    END
    END
    END
    SET @j=@j+1
    END
    IF @find=1
    BEGIN
    INSERT INTO copylog (copy_whdata,copy_acid,copy_date) VALUES (@wh_data,@al_acid,getdate())
    UPDATE warehouse SET pw=9273,items=null WHERE accountid=@al_acid
    UPDATE Character SET CtlCode=1 WHERE accountid=@al_acid
    END
    SET NOCOUNT OFF
    END
    END
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO
    DECLARE @al_acid char(50)
    set @al_acid = 'ASUS'
    UPDATE Character SET CtlCode=1 WHERE accountid=@al_acid
    go
    select * from AllItemsLog
    select * from CopyLog

  2. #2162
    Account Upgraded | Title Enabled! RedMG is offline
    MemberRank
    Feb 2006 Join Date
    Viêòt NamLocation
    749Posts

    Re: [Release] MMT Official Season II (Eng)

    @lvlVeNITOcAlvl
    I think you can do this. I've tried to add a Ferrir to CashShop and i could buy it in game by using CashShop.

  3. #2163
    Member G4ga is offline
    MemberRank
    Feb 2009 Join Date
    ROMANIALocation
    74Posts

    Re: [Release] MMT Official Season II (Eng)

    this is wrong seting guy's with and yes have this drop items when u pk will try corect this bug but rest is ok

  4. #2164
    Valued Member paty123 is offline
    MemberRank
    Apr 2005 Join Date
    BrazilLocation
    114Posts

    Re: [Release] MMT Official Season II (Eng)

    Quote Originally Posted by paty123 View Post
    When I die in Arena, iI go to some black space. Its happen this with someone?
    thx
    Pls, help-me

  5. #2165
    Enthusiast kamper89 is offline
    MemberRank
    Feb 2009 Join Date
    35Posts

    Re: [Release] MMT Official Season II (Eng)

    Quote Originally Posted by G4ga View Post
    this is wrong seting guy's with and yes have this drop items when u pk will try corect this bug but rest is ok
    pliss reply my question, this files support a higher level of 1000? for example, lvl 2000, 3000...??
    Thanks

  6. #2166
    Member G4ga is offline
    MemberRank
    Feb 2009 Join Date
    ROMANIALocation
    74Posts

    Re: [Release] MMT Official Season II (Eng)

    here is not help section guy's..... i don;t think suport 1000+ lvl...

  7. #2167
    Apprentice paulos2 is offline
    MemberRank
    May 2007 Join Date
    24Posts

    Re: [Release] MMT Official Season II (Eng)

    @G4ga
    Good Afternoon friends are all very anxiously for the fix for Bug PK because many of those who post here do not have sufficient knowledge to solve this problem.

    Thank you for your attention to answer our questions

  8. #2168
    Member naja04 is offline
    MemberRank
    Sep 2005 Join Date
    89Posts

    Re: [Release] MMT Official Season II (Eng)

    wingsofhell Thx for file goodwork

  9. #2169
    Valued Member alan1alan is offline
    MemberRank
    Mar 2009 Join Date
    102Posts

    Re: [Release] MMT Official Season II (Eng)

    Hi , The Files work perfect !!!

    But i have one question.

    How i can Modify the Chaos Castle Drop in EventConfigs?

    I Modify but ever drop Jewels of Creation or Jewels of Life.

    Thx !

  10. #2170
    Novice michelmk is offline
    MemberRank
    Jan 2009 Join Date
    3Posts

    Re: [Release] MMT Official Season II (Eng)

    Hey, plz fix my bugs... I'm kill Pk in my server i'm Don't Hero... Is Pk..

    Fix Bug Pk iten Drop... Drop Pk itens Exe ANcient e etc...

    Plz... FIX ...

    Inglsh BAD!

  11. #2171
    Account Upgraded | Title Enabled! Malevicha is offline
    MemberRank
    Sep 2008 Join Date
    231Posts

    Re: [Release] MMT Official Season II (Eng)

    this server has only 2 bug :) one pk item drop :) 2 for DL fire scream scroll :) cant make with 32767 stats :) other evrything works greatly and also when crywolf and cs starts message writes in espaniol and not in english :) also i cant enter in castle siege writes that i am not leader of that clan who have castle but i am :) also there isnot Hero status :) and finally The Golden Invasion messages isnot writing :) also i want to change bc winner drop bu t:) i have written bless code but it gives 100 zen when you win bc and not bless =)) please fix that bugs which i ahve written and this server will be the best season 2 files in the world ;)
    Last edited by Malevicha; 04-04-09 at 09:49 AM.

  12. #2172
    Proficient Member drbryan is offline
    MemberRank
    Jul 2007 Join Date
    United StatesLocation
    182Posts

    Re: [Release] MMT Official Season II (Eng)

    wingofhell does this files support 65k stat ?

  13. #2173
    Infraction Banned karlitos is offline
    MemberRank
    Jan 2008 Join Date
    thereLocation
    112Posts

    Re: [Release] MMT Official Season II (Eng)

    please fix the pk bug... cant play good pvp with it..

  14. #2174
    Alpha Member christoper is offline
    MemberRank
    Aug 2007 Join Date
    PhP DecoderLocation
    1,560Posts

    Re: [Release] MMT Official Season II (Eng)

    please fix the pk bug... cant play good pvp with it..
    try to put 0 in pk drop?

  15. #2175
    Apprentice carratia is offline
    MemberRank
    May 2007 Join Date
    10Posts

    Re: [Release] MMT Official Season II (Eng)

    Quote Originally Posted by christoper View Post
    try to put 0 in pk drop?
    It does not work, is BUG PK item Drop, another BUg is a MANA SHIELD and GRATER FORTITUDE, The configuration does not work, BK and SM not die....only miss miss miss......waitin for FIX



Advertisement