A GM/Dev can read this. Can't guarantee it'll work, but it's worth a shot.
In MSSQL:
Open World00_Character database.
Goto Programmability/Stored Procedures.
Right click dbo.p_Char_Create.
Click Modify.
Add this between the already existing IF EXIST code and BEGIN TRAN:
- Code:
-
IF EXISTS (SELECT sID FROM tCharacter(NOLOCK) WHERE sID = @sID)
BEGIN
RETURN
END
ELSE
Goto Query and Click Parse to see if there are any errors in your code.
Click execute to save the procedure.
-I'll also just say, creds to generaldave of Kryptodev, just so nobody gets mad at me.-