Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya
You last visited: Today at 21:54

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

Advertisement



[Help] Problem in Guild Creation

Discussion on [Help] Problem in Guild Creation within the Shaiya forum part of the MMORPGs category.

Reply
 
Old   #1
 
sandolkakos's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 395
Received Thanks: 313
[FIXED] Problem in Guild Creation

Hi guys, i am geting a error in Guild Creation.
I can Create one Guild, but if i Shutdown my server, the Guild dont appears in next Server Start. Cause the Guild only stay recorded in Memory.

in my logs i have detected the error, that also happen when i try execute the script to create manually in SQL Query.

I already have looked about this error in Google, but dont sucess in all results.
If somebody know how fix, and can help me, i thank you now

PS_DBAGENT__system.log:
Code:
2010-03-04 02:30:21 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server][COLOR="Red"]Transaction context in use by another session[/COLOR]., SQL STATE: 42000, NATIVE ERROR: 3910 (0xF46)

2010-03-04 02:30:21 DBGuild::CreateGuild Failed 2, TesteGuilde, 3, Kirsten01[ADM], qerr=-1, EXEC usp_Create_Guild2_E 2,'TesteGuilde','myLogin',3,'myCharName',0,'Teste Guilde 01'
Test 01 with Procedure in SQL Query:
Code:
EXEC usp_Create_Guild2_E 2,'TesteGuilde','myLogin',3,'myCharName',0,'Teste Guilde 01'

error:
Msg 3910, Level 16, State 2, Line 1
[COLOR="Red"]Transaction context in use by another session.[/COLOR]
Test 02 with Direct INSERT in SQL Query:
Code:
INSERT INTO Guilds(GuildID,GuildName,MasterUserID,MasterCharID,MasterName,Country,TotalCount,GuildPoint,CreateDate)
	VALUES(2,'TesteGuilde','myLogin',3,'myCharName',0,0,0,GETDATE())

error:
Msg 3910, Level 16, State 2, Line 1
[COLOR="Red"]Transaction context in use by another session.[/COLOR]
************************************************** *
@edit - FIX BELLOW

i have fixed, the problem was the Language in Table Structure.
With Guild Leaders Name Purple working; and without crashes when to view Guild Message.

i have traded = Korean_Wansung_CI_AS
for = Chinese_PRC_Stroke_CI_AS

if you already have some Guild created, CAUTION! SAVE BEFORE!

1. DELETE your dbo.Guilds TABLE
2. Use this SQL Query:

Code:
USE [PS_GameData]
GO
/****** Creation Guild Fixed by sandolkakos: Shaiya-UGO Server - www.universalgamesonline.com.br  ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Guilds](
	[RowID] [int] IDENTITY(1,1) NOT NULL,
	[GuildID] [int] NOT NULL,
	[GuildName] [varchar](30) COLLATE Chinese_PRC_Stroke_CI_AS NOT NULL,
	[MasterUserID] [varchar](18) COLLATE Chinese_PRC_Stroke_CI_AS NOT NULL,
	[MasterCharID] [int] NOT NULL,
	[MasterName] [varchar](30) COLLATE Chinese_PRC_Stroke_CI_AS NOT NULL,
	[Country] [tinyint] NOT NULL,
	[TotalCount] [smallint] NOT NULL,
	[GuildPoint] [int] NOT NULL,
	[Del] [tinyint] NOT NULL CONSTRAINT [DF_Guilds_Del]  DEFAULT ((0)),
	[CreateDate] [datetime] NOT NULL,
	[DeleteDate] [datetime] NULL,
 CONSTRAINT [PK_Guilds] PRIMARY KEY CLUSTERED 
(
	[GuildID] ASC
)WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF
if somebody have other doubt about this, i will help.
sandolkakos is offline  
Thanks
10 Users
Old 03/05/2010, 17:56   #2
 
elite*gold: 0
Join Date: Nov 2009
Posts: 101
Received Thanks: 21
i found this:

but i didnt got it working, might be cause of my miserable knowledge of mssql
Schwap is offline  
Thanks
1 User
Old 03/06/2010, 13:27   #3
 
ProfNerwosol's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 449
Received Thanks: 644
There is a Trigger on dbo.Guilds, which whenever this table is changed, adds a record to PS_UserData.dbo.CreatedGuilds which doesn't exist. I tried creating it to make it work but without success so I deleted that Trigger. Everything went smoothly after that, but I don't have my guild listed in Guild List ingame. Figures...
ProfNerwosol is offline  
Thanks
1 User
Old 03/06/2010, 22:14   #4
 
sandolkakos's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 395
Received Thanks: 313
thanks for your helps, i will try the oLago and ProfNerwosol solutions.

ProfNerwosol, you speak that your guilds dont appears listed inGame, but when you restart the server, the Guilds continue ?
sandolkakos is offline  
Old 03/06/2010, 23:33   #5
 
ProfNerwosol's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 449
Received Thanks: 644
Quote:
Originally Posted by sandolkakos View Post
thanks for your helps, i will try the oLago and ProfNerwosol solutions.

ProfNerwosol, you speak that your guilds dont appears listed inGame, but when you restart the server, the Guilds continue ?
Yup, the guild exists even when I restart the server. The only problems I encountered is ... guild name over guild leaders head is white not purple; oh and game crashes when I try to view guild message. No idea why.
ProfNerwosol is offline  
Old 03/07/2010, 04:07   #6
 
sandolkakos's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 395
Received Thanks: 313
Quote:
Originally Posted by ProfNerwosol View Post
Yup, the guild exists even when I restart the server. The only problems I encountered is ... guild name over guild leaders head is white not purple; oh and game crashes when I try to view guild message. No idea why.
Thanks for Explain my brother, i will test this, and go back here to inform my result.

@edit
i have fixed, the problem was the Language in Table Structure.
With Guild Leaders Name Purple working; and without crashes when to view Guild Message.

i have traded = Korean_Wansung_CI_AS
for = Chinese_PRC_Stroke_CI_AS

if you already have some Guild created, CAUTION! SAVE BEFORE!

1. DELETE your dbo.Guilds TABLE
2. Use this SQL Query:

Code:
USE [PS_GameData]
GO
/****** Creation Guild Fixed by sandolkakos: Shaiya-UGO Server - www.universalgamesonline.com.br  ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Guilds](
	[RowID] [int] IDENTITY(1,1) NOT NULL,
	[GuildID] [int] NOT NULL,
	[GuildName] [varchar](30) COLLATE Chinese_PRC_Stroke_CI_AS NOT NULL,
	[MasterUserID] [varchar](18) COLLATE Chinese_PRC_Stroke_CI_AS NOT NULL,
	[MasterCharID] [int] NOT NULL,
	[MasterName] [varchar](30) COLLATE Chinese_PRC_Stroke_CI_AS NOT NULL,
	[Country] [tinyint] NOT NULL,
	[TotalCount] [smallint] NOT NULL,
	[GuildPoint] [int] NOT NULL,
	[Del] [tinyint] NOT NULL CONSTRAINT [DF_Guilds_Del]  DEFAULT ((0)),
	[CreateDate] [datetime] NOT NULL,
	[DeleteDate] [datetime] NULL,
 CONSTRAINT [PK_Guilds] PRIMARY KEY CLUSTERED 
(
	[GuildID] ASC
)WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF
if somebody have other doubt about this, i will help.
sandolkakos is offline  
Thanks
5 Users
Old 03/07/2010, 23:11   #7
 
thunderxc's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 80
Received Thanks: 13
OkaY I tried this in my test server. Im not sure if working because I have not reset the server.

How do I change the guild rank? Also how can I turn on the GRB Event?

Thanks
thunderxc is offline  
Old 03/08/2010, 00:33   #8
 
sandolkakos's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 395
Received Thanks: 313
Quote:
Originally Posted by thunderxc View Post
OkaY I tried this in my test server. Im not sure if working because I have not reset the server.

How do I change the guild rank? Also how can I turn on the GRB Event?

Thanks
i still dont know about this events,
i am knowing this game now in my PServer, and i am learning all things

Because this error in Guild, only today with the FIX, that my players have created GUILDs.
sandolkakos is offline  
Old 03/08/2010, 00:58   #9
 
thunderxc's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 80
Received Thanks: 13
Quote:
Originally Posted by sandolkakos View Post
i still dont know about this events,
i am knowing this game now in my PServer, and i am learning all things

Because this error in Guild, only today with the FIX, that my players have created GUILDs.
Thank you sir for the update. I really appreciate it.


EDIT: How to remove 5 days waiting on Guild House ?
thunderxc is offline  
Old 06/19/2010, 17:56   #10
 
remnikalija's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 340
Received Thanks: 52
this is not working to me
remnikalija is offline  
Old 06/23/2010, 19:04   #11
 
(Virus)'s Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 71
Received Thanks: 22
Thank You verry much for this, sandolkakos
(Virus) is offline  
Old 03/30/2011, 01:04   #12
 
elite*gold: 0
Join Date: May 2009
Posts: 2
Received Thanks: 1
How to remove 5 days waiting on Guild House

Quote:
Originally Posted by thunderxc View Post
Thank you sir for the update. I really appreciate it.


EDIT: How to remove 5 days waiting on Guild House ?
Not sure if there is a script available, but if you go into the PS_GameData dbo.GuildDetails table and in the UseHouse collum, change the 0 to a 1. worked for me. Hop its ok as at least a temp fix.

EDIT: To change the guild rank, the rank collum is also in the dbo.GuildDetails table. simply change the info to the desired rank and hey hey, your good to go.
FU84R is offline  
Thanks
1 User
Old 03/30/2011, 09:33   #13
 
elite*gold: 0
Join Date: Feb 2011
Posts: 214
Received Thanks: 205
You can also use the GM commands =)
Xx.LaMin.xX is offline  
Reply


Similar Threads Similar Threads
[HELP]Guild + emblem creation issue
09/21/2017 - Dekaron Private Server - 6 Replies
Hi , It was supposed to be easy to create a guild especially if you were the creator , but in this case , I've encountered this scenario. I've created a guild name let us say 'Test' after the 'Test' guild was created my guild-creator character doesn't have any rank even a default rank doesn't applied. I am expecting that my character should be the Guild Master , but it did not .. when I checked my character's rank it is blank.. So next one I tried to create a guild emblem but after the...
[Guild Creation] Name Hack?
08/17/2009 - Dekaron - 3 Replies
Hey, a while ago you could make a guild using [ ' { + ` ~ characters in the guild name. Now you cant. It says "you have typed incorrect language" I want to make a guild using this in the name: ' How can I do this, now that there is a filter? I see people using invalid names. So there must be a way to make a guild using those characters. Guild trying to create/example: John'sClub
Character Creation Problem
11/15/2008 - Flyff Private Server - 11 Replies
wenn ich einen character probiere zu machen dann passiert er nichts. Bitte helfen Sie mir mit diesem Bug :) thanks (edit) It doesn't crash. but the button you cant click anymore and i wont create..



All times are GMT +2. The time now is 21:54.


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.