Good day RZ pls help me this time i am using muemu s6 ep 3 downgrade to s3
everything was fine i can delete character and now my i cant delete my character.
but my query is fine and here is my query:
USE [MuOnline]
GO
/****** Object: StoredProcedure [dbo].[WZ_DeleteCharacter] Script Date: 03/15/2016 23:28:47 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Procedure [dbo].[WZ_DeleteCharacter]
@account varchar(10),
@name varchar(10)
AS
BEGIN
SET NOCOUNT ON
SET XACT_ABORT ON
DECLARE @result tinyint
SET @result = 0
If NOT EXISTS ( SELECT Name FROM Character WHERE Name = @name )
begin
SET @result = 0
end
else
begin
SET @result = 1
DELETE FROM Character WHERE AccountID = @account AND Name= @name
DELETE FROM OptionData WHERE Name = @name
DELETE FROM QuestKillCount WHERE Name = @name
DELETE FROM MasterSkillTree WHERE Name = @name
DELETE FROM EventLeoTheHelper WHERE Name = @name
DELETE FROM EventSantaClaus WHERE Name = @name
DELETE FROM RankingDuel WHERE Name = @name
DELETE FROM RankingBloodCastle WHERE Name = @name
DELETE FROM RankingChaosCastle WHERE Name = @name
DELETE FROM RankingDevilSquare WHERE Name = @name
DELETE FROM RankingIllusionTemple WHERE Name = @name
end
SELECT @result
SET NOCOUNT OFF
SET XACT_ABORT OFF
END
and for the WcoinC and WCoinP
it doest appear in game but in webshop it looks fine ( i can buy a set)
but in game my WCoinC and WCoinP = 0
pls help






Reply With Quote![[Help] About WCoinC and WCoinP and delete character muemu](http://ragezone.com/hyper728.png)

