Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya > Shaiya Private Server > Shaiya PServer Development
You last visited: Today at 08:13

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

Advertisement



Guild disappear when resetting server / Gremios desaparecen al resetear servidor

Discussion on Guild disappear when resetting server / Gremios desaparecen al resetear servidor within the Shaiya PServer Development forum part of the Shaiya Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2015
Posts: 9
Received Thanks: 2
Guild disappear when resetting server / Gremios desaparecen al resetear servidor

Hello, good morning or night ...

Sorry to bother with this topic but I need help,
When you create a guild on my server and restart it, this does not return to appear in the game but if it appears as created and not eliminated in the databases .. Probe elitepvpers several scripts and none worked and at this point not because maybe It is doing something wrong.


Code:
----------------------SCRIPT 1--------------------------------------------------
Use PS_gamedata

drop table [dbo].[Guilds]

CREATE TABLE [dbo].[Guilds] (
	[RowID] [int] IDENTITY (1, 1) NOT NULL ,
	[GuildID] [int] NOT NULL ,
	[GuildName] [varchar] (30) COLLATE Latin1_General_CI_AS NOT NULL ,
	[MasterUserID] [varchar] (18) COLLATE Latin1_General_CI_AS NOT NULL ,
	[MasterCharID] [int] NOT NULL ,
	[MasterName] [varchar] (30) COLLATE Latin1_General_CI_AS NOT NULL ,
	[Country] [tinyint] NOT NULL ,
	[TotalCount] [smallint] NOT NULL ,
	[GuildPoint] [int] NOT NULL ,
	[Del] [tinyint] DEFAULT (0) ,
	[CreateDate] [datetime] (getdate())  ,
	[DeleteDate] [datetime] (getdate()) 
) ON [PRIMARY]



----------------------SCRIPT 2--------------------------------------------------


USE [PS_GameData]
GO
/****** Object: Table [dbo].[Guilds] Script Date: 09/29/2011 06:36:30 ******/
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_AI NOT NULL,
[MasterUserID] [varchar](12) COLLATE Chinese_PRC_Stroke_CI_AI NOT NULL,
[MasterCharID] [int] NOT NULL,
[MasterName] [varchar](30) COLLATE Chinese_PRC_Stroke_CI_AI 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 (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF




----------------------SCRIPT 3--------------------------------------------------


CREATE TABLE [dbo].[Guilds](
	[RowID] [int] IDENTITY(1,1) NOT NULL,
	[GuildID] [int] NOT NULL,
	[GuildName] [varchar](30) NOT NULL,
	[MasterUserID] [varchar](12) NOT NULL,
	[MasterCharID] [int] NOT NULL,
	[MasterName] [varchar](30) NOT NULL,
	[Country] [tinyint] NOT NULL,
	[TotalCount] [smallint] NOT NULL,
	[GuildPoint] [int] NOT NULL,
	[Del] [tinyint] NOT NULL,
	[CreateDate] [datetime] NOT NULL,
	[DeleteDate] [datetime] NULL,
 CONSTRAINT [PK_Guilds] PRIMARY KEY CLUSTERED 
(
	[GuildID] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO

ALTER TABLE [dbo].[Guilds] ADD  CONSTRAINT [DF_Guilds_Del]  DEFAULT ((0)) FOR [Del]
GO

----------------------SCRIPT 3--------------------------------------------------
ALL ARE TESTED AND NOTHING

Spanish - Espaņol



Hola, Buenos dias o noches...
Lamento molestar con este tema pero necesito ayuda,
Al crear un gremio en mi servidor y reiniciarlo, este no vuelve a figurar en el juego pero si figura como creado y no eliminado en las bases de datos.. Probe con varios scripts de elitepvpers y ninguno funciono y a estas alturas no se porque tal vez este haciendo algo mal .



Code:
----------------------SCRIPT 1--------------------------------------------------
Use PS_gamedata

drop table [dbo].[Guilds]

CREATE TABLE [dbo].[Guilds] (
	[RowID] [int] IDENTITY (1, 1) NOT NULL ,
	[GuildID] [int] NOT NULL ,
	[GuildName] [varchar] (30) COLLATE Latin1_General_CI_AS NOT NULL ,
	[MasterUserID] [varchar] (18) COLLATE Latin1_General_CI_AS NOT NULL ,
	[MasterCharID] [int] NOT NULL ,
	[MasterName] [varchar] (30) COLLATE Latin1_General_CI_AS NOT NULL ,
	[Country] [tinyint] NOT NULL ,
	[TotalCount] [smallint] NOT NULL ,
	[GuildPoint] [int] NOT NULL ,
	[Del] [tinyint] DEFAULT (0) ,
	[CreateDate] [datetime] (getdate())  ,
	[DeleteDate] [datetime] (getdate()) 
) ON [PRIMARY]



----------------------SCRIPT 2--------------------------------------------------


USE [PS_GameData]
GO
/****** Object: Table [dbo].[Guilds] Script Date: 09/29/2011 06:36:30 ******/
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_AI NOT NULL,
[MasterUserID] [varchar](12) COLLATE Chinese_PRC_Stroke_CI_AI NOT NULL,
[MasterCharID] [int] NOT NULL,
[MasterName] [varchar](30) COLLATE Chinese_PRC_Stroke_CI_AI 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 (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF




----------------------SCRIPT 3--------------------------------------------------


CREATE TABLE [dbo].[Guilds](
	[RowID] [int] IDENTITY(1,1) NOT NULL,
	[GuildID] [int] NOT NULL,
	[GuildName] [varchar](30) NOT NULL,
	[MasterUserID] [varchar](12) NOT NULL,
	[MasterCharID] [int] NOT NULL,
	[MasterName] [varchar](30) NOT NULL,
	[Country] [tinyint] NOT NULL,
	[TotalCount] [smallint] NOT NULL,
	[GuildPoint] [int] NOT NULL,
	[Del] [tinyint] NOT NULL,
	[CreateDate] [datetime] NOT NULL,
	[DeleteDate] [datetime] NULL,
 CONSTRAINT [PK_Guilds] PRIMARY KEY CLUSTERED 
(
	[GuildID] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO

ALTER TABLE [dbo].[Guilds] ADD  CONSTRAINT [DF_Guilds_Del]  DEFAULT ((0)) FOR [Del]
GO

----------------------SCRIPT 3--------------------------------------------------
ESTAN TODO PROBADOS Y NADA


Alguien sabe alguna otra forma de solucionar este detalle o le ah pasado?
CHRISTIANre is offline  
Old 02/04/2016, 21:48   #2
 
st.jimmy998's Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 343
Received Thanks: 137
Entra a tu Base de Datos, GameData<Guild<Eliminar, reinicia tu SQL e inserta el segundo script. reincia tu servidor y listo
st.jimmy998 is offline  
Old 02/05/2016, 10:12   #3
 
elite*gold: 0
Join Date: Aug 2015
Posts: 9
Received Thanks: 2
Buenas, Disculpen la demora. Intente lo sugerido y lamentablemente sigue pasando lo mismo. El gremio sigue desapareciendo, Pero sucede que cuando abro la tabla dbo.Guilds esta vacia, cosa que antes no lo hacia.

Hi, Sorry for the delay. Try suggested and unfortunately continues to pass the same. The guild continues to disappear, But it happens that when I open the dbo.Guilds table is empty, which did not before.
CHRISTIANre is offline  
Old 02/05/2016, 12:26   #4
 
elite*gold: 0
Join Date: Aug 2013
Posts: 244
Received Thanks: 56
Quote:
Originally Posted by CHRISTIANre View Post
Buenas, Disculpen la demora. Intente lo sugerido y lamentablemente sigue pasando lo mismo. El gremio sigue desapareciendo, Pero sucede que cuando abro la tabla dbo.Guilds esta vacia, cosa que antes no lo hacia.

Hi, Sorry for the delay. Try suggested and unfortunately continues to pass the same. The guild continues to disappear, But it happens that when I open the dbo.Guilds table is empty, which did not before.
check this.
[Admin]Slice is offline  
Old 02/05/2016, 17:02   #5




 
Autrux's Avatar
 
elite*gold: 1
Join Date: Dec 2010
Posts: 33,281
Received Thanks: 5,715
Arrow Shaiya Private Server -> Shaiya PServer De…

#moved…
Autrux is offline  
Reply


Similar Threads Similar Threads
Resetting 2nd pw on int
01/24/2013 - Kal Online - 7 Replies
Hi, are there still ppl around that can reset 2nd pw? if yes, pls contact me. need some help on int. ty Edit: Was a bought Account (seller gave wrong ID card), and got hacked, hacker changed 2nd pw so C/S wont help
Phoenix Server //Servidor Fenix
05/06/2011 - Shaiya PServer Advertising - 11 Replies
http://img26.imageshack.us/f/shaiya0003ie.jpg/Serv idor EP 5.3 XP 50 is second to sixth XP 100 final week - Armor / layers Level 70 - Boss of Dungeon of Victims 2 Floor - Lapis sonic and Flash - First boss of the dungeon of Victims 2 Floor - Armor level 60 + - Base Expeditionary Dungeon (Accessed by Abarona, Palaion Regnum) - Most of the drop in AP is in Battle Zone (Any map)
The Legion Dissapears - Las Legiones Desaparecen
10/01/2010 - EO PServer Hosting - 1 Replies
cyberghoser1 Database/Server I have a problem when I create my Legion and then reboot the server and go back inside and I have no legion but the data base is kept the Legion. SOLUTIONS that you can give me that. Thanks for any help.



All times are GMT +2. The time now is 08:13.


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.