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!

[Share]database RanGame1, Haircolor & Hairstyle fixed..

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 21, 2006
Messages
74
Reaction score
4
After fixing some minor sp_procedure.. i've managed to use the HairColor without rollback..

Edit:-
Here is the Actual RanGame1 database.. which i modified..

Via Rapidshare:


Also for some sp_procedure i also added in RanLog


Via Mediafire(thnks to eijnebsky99 for the links):-
RanGame1


RanLog



Note: This database has not yet fixed the pet and also other error..tq

Credits to Ragezone
 
Last edited:
Newbie Spellweaver
Joined
Nov 30, 2006
Messages
34
Reaction score
0
i've test this database....yes...it fix the hair color....but the problem is pet right?? any update??
 
Upvote 0
Junior Spellweaver
Joined
Mar 2, 2007
Messages
163
Reaction score
15
My Server dont have gang creation problems only hair color and Pet.
 
Upvote 0
-sama
Loyal Member
Joined
May 3, 2008
Messages
1,392
Reaction score
7
hm....
Does this fix the pet + hair bug?(completed? or still incomplete)
and....
How will I help my db not wipe out if I will get this backup?
I will replace my Query to that Query??????????
If I can't Understand you
please add me
seraph_angels12@yahoo.com
thx

and Is this the query? of RAnGame1??????????????


Do I need to replace RanLog too?
Can anyone give me If I still need.
 
Upvote 0
Newbie Spellweaver
Joined
Aug 21, 2006
Messages
74
Reaction score
4
Problem in wiping database? Use this instead of my RanGame1.bak
USE [RanGame1]
GO
/****** Object: StoredProcedure [dbo].[UpdateChaHairColor] Script Date: 06/29/2008 15:38:36 edited by sanarunnow******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[UpdateChaHairColor]
@nChaNum int,
@nChaHairColor int,
@nReturn int OUTPUT
AS
DECLARE
@error_var int,
@rowcount_var int

SET NOCOUNT ON

SET @nReturn = 0

UPDATE ChaInfo
SET ChaHairColor=@nChaHairColor
WHERE ChaNum=@nChaNum

SELECT @error_var = @@ERROR, @rowcount_var = @@ROWCOUNT
IF @error_var <> 0 OR @rowcount_var = 0
BEGIN
SET @nReturn = -1
SET NOCOUNT OFF
RETURN @nReturn
END
ELSE
BEGIN
SET @nReturn = 0
SET NOCOUNT OFF
RETURN @nReturn
END

Copy paste and run this script at your database.. by using sql query method

Pls Note: this will only fix your HairColor rollback problem..
 
Last edited:
Upvote 0
Experienced Elementalist
Joined
Jun 7, 2008
Messages
231
Reaction score
1
@all

Info to have perfect no rollback for pet at RanLog i think magenik put the error appearing in Field Server....The PetInven or something appear he stored it at RanLog..... And He Added Something On RanGame1...
 
Upvote 0
-sama
Loyal Member
Joined
May 3, 2008
Messages
1,392
Reaction score
7
sanarunnow said:
Problem in wiping database? Use this instead of my RanGame1.bak
Quote:
USE [RanGame1]
GO
/****** Object: StoredProcedure [dbo].[UpdateChaHairColor] Script Date: 06/29/2008 15:38:36 edited by sanarunnow******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

CREATE PROCEDURE [dbo].[UpdateChaHairColor]
@nChaNum int,
@nChaHairColor int,
@nReturn int OUTPUT
AS
DECLARE
@error_var int,
@rowcount_var int

SET NOCOUNT ON

SET @nReturn = 0

UPDATE ChaInfo
SET ChaHairColor=@nChaHairColor
WHERE ChaNum=@nChaNum

SELECT @error_var = @@ERROR, @rowcount_var = @@ROWCOUNT
IF @error_var <> 0 OR @rowcount_var = 0
BEGIN
SET @nReturn = -1
SET NOCOUNT OFF
RETURN @nReturn
END
ELSE
BEGIN
SET @nReturn = 0
SET NOCOUNT OFF
RETURN @nReturn
END
Copy paste and run this script at your database.. by using sql query method

Pls Note: this will only fix your HairColor rollback problem..

hmm? I will replcae my RanGame1 Query?
This won't Replace my own data?/
like character????????????????????///

and This only fix Ran color?
I thought Both??

Tenzou said:
@all

Info to have perfect no rollback for pet at RanLog i think magenik put the error appearing in Field Server....The PetInven or something appear he stored it at RanLog..... And He Added Something On RanGame1...

thx for the iNfo.
 
Upvote 0
Joined
Jan 17, 2008
Messages
320
Reaction score
0
hayzz i have now DB for Color and style that will not roll back your char!! ~_~ and i have a pet that will not roll back!!

@nurjah

can i have your NPC talk that can create a gang for mix class then i will give you my DB for no roll back of hair color, style, and PET!!
 
Upvote 0
-sama
Loyal Member
Joined
May 3, 2008
Messages
1,392
Reaction score
7
michael Can I get your
Hair color + style and pet fix???

just queries..??
plz??

and

sanarunnow said:
Problem in wiping database? Use this instead of my RanGame1.bak


USE [RanGame1]
GO
/****** Object: StoredProcedure [dbo].[UpdateChaHairColor] Script Date: 06/29/2008 15:38:36 edited by sanarunnow******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

CREATE PROCEDURE [dbo].[UpdateChaHairColor]
@nChaNum int,
@nChaHairColor int,
@nReturn int OUTPUT
AS
DECLARE
@error_var int,
@rowcount_var int

SET NOCOUNT ON

SET @nReturn = 0

UPDATE ChaInfo
SET ChaHairColor=@nChaHairColor
WHERE ChaNum=@nChaNum

SELECT @error_var = @@ERROR, @rowcount_var = @@ROWCOUNT
IF @error_var <> 0 OR @rowcount_var = 0
BEGIN
SET @nReturn = -1
SET NOCOUNT OFF
RETURN @nReturn
END
ELSE
BEGIN
SET @nReturn = 0
SET NOCOUNT OFF
RETURN @nReturn
END

Copy paste and run this script at your database.. by using sql query method

Pls Note: this will only fix your HairColor rollback problem..
hmm? I will replcae my RanGame1 Query?
This won't Replace my own data?/
like character????????????????????///

and This only fix Ran color?
I thought Both??

Tenzou said:
@all

Info to have perfect no rollback for pet at RanLog i think magenik put the error appearing in Field Server....The PetInven or something appear he stored it at RanLog..... And He Added Something On RanGame1...
thx for the iNfo.















and How WIll I edit The Queries at RanGame1???????????????????????????////
any ideas?
Can I have a guide, or just tell me a tip on how to edit.?
 
Upvote 0
Newbie Spellweaver
Joined
Aug 21, 2006
Messages
74
Reaction score
4
hayzz i have now DB for Color and style that will not roll back your char!! ~_~ and i have a pet that will not roll back!!

@nurjah

can i have your NPC talk that can create a gang for mix class then i will give you my DB for no roll back of hair color, style, and PET!!

so why you didnt share it.. no offense but i think the "OLD atitude" still exist.. I miss the old dayzzz...

Thanks

@SeraphiPod

This is a query to fix the sp_procedure.. it didnt affect your database..
 
Last edited:
Upvote 0
Joined
Jan 17, 2008
Messages
320
Reaction score
0
hayzzz i want to have an exchange so my sharing will not like my old shared of skill to 300 that someone blame me that i shared it with no procedure or step!!! hahahaha!!!
 
Upvote 0
-sama
Loyal Member
Joined
May 3, 2008
Messages
1,392
Reaction score
7
so why you didnt share it.. no offense but i think the "OLD atitude" still exist.. I miss the old dayzzz...

Thanks

@SeraphiPod

This database is a query to fix the sp_procedure.. it didnt affect your database..

now, I mean,
How can I edit my RanGame1 Query?
..................................................
thx sanarunnow, just asking, didn't did that yet
sp_procedure?
and
can you explain more what that does the query do?, sorry, really can't understand the other posts
cause
examplename: for hair
examplename: for pet?
i really don't know, so thank you for the ansZwer
@michael
and I'll search for ur 300 skills ^_^
 
Upvote 0
Joined
Jan 17, 2008
Messages
320
Reaction score
0
hahahha i delete my thread of 300 skills cause someone making a noise that my skill is out of animation!! so what will i do that the EP3 animation and EP4 are now change hahaha but my players really happy to my skills ^_^ and they saying really cool!!
 
Upvote 0
Omega Male
Loyal Member
Joined
May 12, 2008
Messages
2,547
Reaction score
437
Guys please stop bringing back old threads.
sanarunnow - [Share]database RanGame1, Haircolor & Hairstyle fixed.. - RaGEZONE Forums
 
Upvote 0
Status
Not open for further replies.
Back
Top