Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Nickname Problems

Status
Not open for further replies.
Junior Spellweaver
Joined
Jan 18, 2011
Messages
113
Reaction score
25
Ive searched other threads and found no anser so i'll post it here

Code:
USE [Pangya_S4_TH]
GO
/****** Object: StoredProcedure [dbo].[USP_NICKNAME_UPDATE] Script Date: 02/01/2011 22:12:36 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[USP_NICKNAME_UPDATE]
@x int,
@y varchar(20)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
DECLARE @Occupied INT
EXEC @Occupied = [dbo].[USP_NICKNAME_CHECK] @y
IF @Occupied = 0 BEGIN
UPDATE Pangya_Member_Info
SET NickName = @y WHERE userid = @x
SELECT 0
END
ELSE BEGIN
SELECT 1
END
END

i used that code to try and update my nickname in game and it wont stay also in my info my login id apears in lower case is there anyway to correct this i'll attach pics below as soon as i log out my nickname reverds back to my login id also my login ID is displayed under my info page in lower case any way to remove it from being Shown..
 

Attachments

You must be registered for see attachments list
Creator of Code
Joined
Mar 5, 2006
Messages
371
Reaction score
131
Can anyone confirm this on a official server? How it is supposed to change the nickname.

Also what tables are referenced from the SPs?

Im at work now but ill look into it when i get home.
 
Newbie Spellweaver
Joined
Nov 27, 2006
Messages
68
Reaction score
12
i didn't notice any prob with changing nicknames ingame.
Works fine for me.
On the private server, you have to put the new nickname in your infos. Then you have a message for the fee then its done.
And you can trace the nicknames in the tables and the member info table is updated too.

Edit:
to change your nickname: click on the tool icon ingame (upper right corner) and select "game" tab
in this window you can see your nickname: insert the new nick and click on modify.
that's all.
 
Last edited:
Newbie Spellweaver
Joined
Oct 31, 2008
Messages
53
Reaction score
4
Can anyone confirm this on a official server? How it is supposed to change the nickname.

Also what tables are referenced from the SPs?

Im at work now but ill look into it when i get home.

Pangya thai shows the Login ID on the profile instead of the nickname.
 
Status
Not open for further replies.
Back
Top