why removing? if you can create a check char database?
Code:
USE [CHARACTER_01_DBF]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[CHECK_CHARS]
[MENTION=323619]aCCount[/MENTION] VARCHAR(32) = '',
[MENTION=792744]Players[/MENTION]lot int = 0
AS
SET NOCOUNT ON
SELECT * FROM CHARACTER_TBL WHERE account [MENTION=323619]aCCount[/MENTION] AND playerslot = [MENTION=792744]Players[/MENTION]lot AND isblock ='F'
SET NOCOUNT OFF
/* FOR CHARACTER OVERRIDE BUG */
GO