Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya > Shaiya Private Server
You last visited: Today at 11:00

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



All Toon Names Don't Exist!

Discussion on All Toon Names Don't Exist! within the Shaiya Private Server forum part of the Shaiya category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jan 2013
Posts: 55
Received Thanks: 7
All Toon Names Don't Exist!

Hey..

Well the problem i am facing is when i go to pick a character name
an enter it , every single name i try enter does is already in use

How do i fix this problem...

Cheers
MrComodoDragon is offline  
Old 02/05/2013, 12:08   #2
 
TeddyBear94's Avatar
 
elite*gold: 10
Join Date: May 2012
Posts: 1,857
Received Thanks: 2,627
u fix that problem by simply using the search engine. How often do we need to tell u that?
if the first quiery isnt working use the fix i posted on page 2
TeddyBear94 is offline  
Thanks
2 Users
Old 02/05/2013, 13:15   #3
 
elite*gold: 0
Join Date: Jan 2013
Posts: 55
Received Thanks: 7
Quote:
Originally Posted by TeddyBear94 View Post
u fix that problem by simply using the search engine. How often do we need to tell u that?
if the first quiery isnt working use the fix i posted on page 2
BTW i have read all that , The query's don't work ..
Yes i read it , but why release a query whats to fix ur own
problem an not explain it too others ? Can you explain a bit more about this fix an how to fix it
in a little bit more detail..

Cheers
MrComodoDragon is offline  
Old 02/05/2013, 17:07   #4
 
Sh1nra's Avatar
 
elite*gold: 5
Join Date: Mar 2012
Posts: 1,007
Received Thanks: 498
You tried this?

Quote:
Originally Posted by TeddyBear94 View Post
DBCC DBReIndex ('PS_GameData.dbo.Chars')
Just start a new Query in sql, past this and click on execute
Sh1nra is offline  
Old 02/05/2013, 17:25   #5
 
elite*gold: 0
Join Date: Jan 2013
Posts: 55
Received Thanks: 7
Quote:
Originally Posted by Sh1nra View Post
You tried this?



Just start a new Query in sql, past this and click on execute
I have tried this Query already , for some reason that i cannot understand it
still persists too tell me the same thing..
MrComodoDragon is offline  
Old 02/05/2013, 22:01   #6
 
Philipp_'s Avatar
 
elite*gold: 576
Join Date: Mar 2011
Posts: 348
Received Thanks: 994
It might help if you show us your logs, but remember to put them in spoilers, please.
Philipp_ is offline  
Thanks
2 Users
Old 02/06/2013, 00:43   #7
 
elite*gold: 0
Join Date: Jan 2013
Posts: 55
Received Thanks: 7
This is the error log ..

MrComodoDragon is offline  
Old 02/06/2013, 07:14   #8
 
Philipp_'s Avatar
 
elite*gold: 576
Join Date: Mar 2011
Posts: 348
Received Thanks: 994
The problem is not in the dbo.Chars table, as stated above, it is in the usp_Create_Char_R procedure. I bet you tried to edit it and made a mistake.. Run the following query to fix the problem - It will reset your procedure to default.
Code:
USE [PS_GameData]
GO
/****** Object:  StoredProcedure [dbo].[usp_Create_Char_R]    Script Date: 06.02.2013 07:11:37 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO

/****** 개체: 저장 프로시저 dbo.usp_Create_Char_R    스크립트 날짜: 2006-05-30 오후 12:53:23 ******/

ALTER  Proc [dbo].[usp_Create_Char_R]

@ServerID tinyint,
@UserID varchar(12),
@UserUID int,
@CharName varchar(50) ,

@Slot Tinyint,
@Family Tinyint,
@Grow Tinyint,
@Hair Tinyint,
@Face Tinyint,
@Size Tinyint,
@Job Tinyint,
@Sex Tinyint,
@Level Smallint,
@Statpoint Smallint,
@Skillpoint Smallint,
@Str Smallint,
@Dex Smallint,
@Rec Smallint,
@Int Smallint,
@Luc Smallint,
@Wis Smallint,
@Hp Smallint,
@Mp Smallint,
@Sp Smallint,
@Map Smallint,
@Dir Smallint,
@Exp Int,
@Money Int,
@Posx Real,
@Posy Real,
@Posz Real,
@Hg Smallint,
@Vg Smallint,
@Cg Tinyint,
@Og Tinyint,
@Ig Tinyint,


/* 여기까지 인자값 주어져야 함 */

/* SP 내부 참조용 변수 */

@CharID int = 0,
@NameCnt tinyint = 0

AS

SET NOCOUNT ON

DECLARE @Ret int

SET @CharName = LTRIM(RTRIM(@CharName))
SET @Ret = 0
SET @SkillPoint = 5

SET @NameCnt = (SELECT ISNULL(COUNT(*),0) FROM Chars WHERE CharName=@CharName AND Del=0)

IF(@NameCnt <> 0)
BEGIN
	RETURN -2
END
ELSE
BEGIN
	IF EXISTS ( SELECT CharID FROM Chars WHERE CharName=@CharName AND Del = 1 AND [Level] >10 AND DeleteDate > DATEADD(dd, -7, GETDATE()) )
	BEGIN
		RETURN -2
	END

	BEGIN TRANSACTION

	INSERT INTO Chars(ServerID,UserID, UserUID, CharName, Slot, Family, Grow, 
	Hair, Face, [Size], Job, Sex, [Level], StatPoint, SkillPoint, 
	[Str], Dex, Rec, [Int], Luc, Wis, HP, MP, SP, Map, Dir, [Exp], [Money], 
	PosX, PosY, Posz, Hg, Vg, Cg, Og, Ig, RenameCnt, RemainTime)

	VALUES(@ServerID,@UserID, @UserUID, @CharName, @Slot, @Family, @Grow, 
	@Hair, @Face, @Size, @Job, @Sex, @Level, @StatPoint, @SkillPoint, 
	@Str, @Dex, @Rec, @Int, @Luc, @Wis, @HP, @MP, @SP, @Map, @Dir, @Exp, @Money, 
	@PosX, @PosY, @Posz, @Hg, @Vg, @Cg, @Og, @Ig, 0, 0)

	IF( @@ERROR=0 )
	BEGIN
		COMMIT TRANSACTION
	END
	ELSE
	BEGIN
		ROLLBACK TRANSACTION
		RETURN -1
	END

	SET @CharID = IDENT_CURRENT('Chars')
END

RETURN @CharID

SET NOCOUNT OFF
Philipp_ is offline  
Thanks
3 Users
Old 02/06/2013, 11:07   #9
 
elite*gold: 0
Join Date: Jan 2013
Posts: 55
Received Thanks: 7
Hmm a bit confused a ran that query successfully an restarted my server
an db an it still keeps telling me the same.

Maybe this might help u a bit better

MrComodoDragon is offline  
Reply


Similar Threads Similar Threads
WTT OS Lailah Account 61 HM 52 UM 1-15 toon 20-30 toon
11/12/2012 - Shaiya Trading - 5 Replies
WTS Account on lailah(Doesnt really matter cause servers are gonna get merged soon anyways) 61 HM War - Token Toon 52 UM Battle Guard- Leveling toon 1-15 Toon and 20-30 Toon. There is some gear so that you can farm but nothing TOO uber. Looking for OPs ONLY.
hey WTT my 3 uber maxed toon in shiaya haven for OS shaiya 1 maxed toon orc or def
10/31/2012 - Shaiya Trading - 0 Replies
WTT for shaiya OS toons pm me in skipe : biscuit455
WTB Shaiya US 20-30Uber Toon/1-15 Uber Toon
02/26/2012 - Shaiya Trading - 0 Replies
How Title Says: Im Looking For Shaiya US 1-15/20-30 toon (preferably 20-30) I Can Offer Shaiya Exile Uber Acc P.S The 20-30Toon must be uber(UM,lvl30,Sonic,Enchants,Linked,eled,etc) Contacting Me: Pm Me / / / Add Me In Skype: mr.bubbledouble Yahoo: [email protected] FB: Tincau Mihai
[Names] All Server Names! Recommended Servers Are Marked!
02/15/2009 - CO2 Private Server - 36 Replies
Hey i saw Many server that are using the same names xD its funny so here is a list to help u out. Later I Will Make A List With Avaible Names And I Will Put In The (Already In Use) Names What Server Is Dead And What Server Is Alive! THE BLUE SERVERS ARE RECOMMENDED! First 1-146 Names That Are In Use! CoEmu PorousCO CoUnleashed TCWNN
change color of item names or guild names?
05/07/2006 - Conquer Online 2 - 2 Replies
How can i change the color of the item names or guild names? -- they are both yellow and screw up my bot... so i cant be in a guild to us my bot and pick up items.



All times are GMT +2. The time now is 11:00.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.