[Release]-DupeItemFinder ( Dành cho Admin MU )

  • Người khởi tạo C.15
  • Ngày bắt đầu
Cho vào Server Config Pass sa trong đó...Chạy file dupeitemfinder.exe để biết...
 
TTG cho hỏi đây là cũ hay mới nhỉ ???
Cẩn thận với Hasty hack dupe :D

Thích thì cho Query Fix-DupeItemFinder
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 = ItemCount+1

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
 
Back
Top