Register for your free account! | Forgot your password?

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

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

Advertisement



[FIX] Character starting kills (120000)

Discussion on [FIX] Character starting kills (120000) within the Shaiya PServer Development forum part of the Shaiya Private Server category.

Reply
 
Old 01/16/2016, 07:33   #31
 
Shaiya Galaxy's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 138
Received Thanks: 51
Thank you for fixing my server
Shaiya Galaxy is offline  
Old 07/16/2017, 13:56   #32
 
elite*gold: 0
Join Date: Jul 2017
Posts: 12
Received Thanks: 0
Sorry to bring back the TOPIC but, how can i set it to permanently?
I used 4.5 from OmegaFiles everytime i create a newly chars the Kills will start at 120000

How can i fixed it?
Thank you!
meroy2147 is offline  
Old 07/16/2017, 16:46   #33
 
Heifnir's Avatar
 
elite*gold: 0
Join Date: Jun 2017
Posts: 77
Received Thanks: 53
If you don't know how to fix something basic as this, you should not make a server.
Heifnir is offline  
Old 07/16/2017, 16:59   #34
 
Sodawa's Avatar
 
elite*gold: 0
Join Date: Oct 2014
Posts: 25
Received Thanks: 8
Savage
Sodawa is offline  
Old 07/16/2017, 22:20   #35
 
Heifnir's Avatar
 
elite*gold: 0
Join Date: Jun 2017
Posts: 77
Received Thanks: 53
Quote:
Originally Posted by Sodawa View Post
Savage
This is not being savage. It's basically the truth.
Heifnir is offline  
Old 07/18/2017, 15:07   #36
 
elite*gold: 0
Join Date: Jun 2017
Posts: 7
Received Thanks: 1
USE [PS_GameData]
GO
/****** Object: Table [dbo].[Chars] Script Date: 09/05/2011 13:22:38 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Chars](
[ServerID] [tinyint] NOT NULL,
[UserID] [varchar](12) NOT NULL,
[UserUID] [int] NOT NULL,
[CharID] [int] IDENTITY(1,1) NOT NULL,
[CharName] [varchar](30) NOT NULL,
[New] [tinyint] NOT NULL CONSTRAINT [DF_Chars_New] DEFAULT (1),
[Del] [tinyint] NOT NULL CONSTRAINT [DF_Chars_Del] DEFAULT (0),
[Slot] [tinyint] NOT NULL,
[Family] [tinyint] NOT NULL,
[Grow] [tinyint] NOT NULL,
[Hair] [tinyint] NOT NULL,
[Face] [tinyint] NOT NULL,
[Size] [tinyint] NOT NULL,
[Job] [tinyint] NOT NULL,
[Sex] [tinyint] NOT NULL,
[Level] [smallint] NOT NULL CONSTRAINT [DF_Chars_level] DEFAULT (0),
[StatPoint] [smallint] NOT NULL CONSTRAINT [DF_Chars_StatPoint] DEFAULT (0),
[SkillPoint] [smallint] NOT NULL CONSTRAINT [DF_Chars_SkillPoint] DEFAULT (0),
[Str] [smallint] NOT NULL,
[Dex] [smallint] NOT NULL,
[Rec] [smallint] NOT NULL,
[Int] [smallint] NOT NULL,
[Luc] [smallint] NOT NULL,
[Wis] [smallint] NOT NULL,
[HP] [smallint] NOT NULL,
[MP] [smallint] NOT NULL,
[SP] [smallint] NOT NULL,
[Map] [smallint] NOT NULL CONSTRAINT [DF_Chars_map] DEFAULT (0),
[Dir] [smallint] NOT NULL CONSTRAINT [DF_Chars_dir] DEFAULT (0),
[Exp] [int] NOT NULL CONSTRAINT [DF_Chars_exp] DEFAULT (0),
[Money] [int] NOT NULL CONSTRAINT [DF_Chars_money] DEFAULT (0),
[PosX] [real] NOT NULL CONSTRAINT [DF_Chars_posx] DEFAULT (674.442),
[PosY] [real] NOT NULL CONSTRAINT [DF_Chars_posy] DEFAULT (3.640),
[Posz] [real] NOT NULL CONSTRAINT [DF_Chars_posz] DEFAULT (1000.924),
[Hg] [smallint] NOT NULL,
[Vg] [smallint] NOT NULL,
[Cg] [tinyint] NOT NULL,
[Og] [tinyint] NOT NULL,
[Ig] [tinyint] NOT NULL,
[K1] [int] NOT NULL CONSTRAINT [DF_Chars_K1] DEFAULT ((0)),
[K2] [int] NOT NULL CONSTRAINT [DF_Chars_K2] DEFAULT (0),
[K3] [int] NOT NULL CONSTRAINT [DF_Chars_K3] DEFAULT (0),
[K4] [int] NOT NULL CONSTRAINT [DF_Chars_K4] DEFAULT (0),
[KillLevel] [tinyint] NOT NULL CONSTRAINT [DF_Chars_KillLevel] DEFAULT (0),
[DeadLevel] [tinyint] NOT NULL CONSTRAINT [DF_Chars_DeadLevel] DEFAULT (0),
[RegDate] [datetime] NOT NULL CONSTRAINT [DF_Chars_RegDate] DEFAULT (getdate()),
[DeleteDate] [datetime] NULL,
[JoinDate] [datetime] NULL,
[LeaveDate] [datetime] NULL,
[RenameCnt] [tinyint] NOT NULL,
[OldCharName] [varchar](30) NULL,
[RemainTime] [int] NOT NULL CONSTRAINT [DF_Chars_RemainTime] DEFAULT (0),
CONSTRAINT [PK_Chars] PRIMARY KEY CLUSTERED
(
[CharID] 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




This is the FIx for 120000 Kills
Lugat is offline  
Old 07/18/2017, 15:24   #37
 
Heifnir's Avatar
 
elite*gold: 0
Join Date: Jun 2017
Posts: 77
Received Thanks: 53
Quote:
Originally Posted by Lugat View Post
USE [PS_GameData]
GO
/****** Object: Table [dbo].[Chars] Script Date: 09/05/2011 13:22:38 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Chars](
[ServerID] [tinyint] NOT NULL,
[UserID] [varchar](12) NOT NULL,
[UserUID] [int] NOT NULL,
[CharID] [int] IDENTITY(1,1) NOT NULL,
[CharName] [varchar](30) NOT NULL,
[New] [tinyint] NOT NULL CONSTRAINT [DF_Chars_New] DEFAULT (1),
[Del] [tinyint] NOT NULL CONSTRAINT [DF_Chars_Del] DEFAULT (0),
[Slot] [tinyint] NOT NULL,
[Family] [tinyint] NOT NULL,
[Grow] [tinyint] NOT NULL,
[Hair] [tinyint] NOT NULL,
[Face] [tinyint] NOT NULL,
[Size] [tinyint] NOT NULL,
[Job] [tinyint] NOT NULL,
[Sex] [tinyint] NOT NULL,
[Level] [smallint] NOT NULL CONSTRAINT [DF_Chars_level] DEFAULT (0),
[StatPoint] [smallint] NOT NULL CONSTRAINT [DF_Chars_StatPoint] DEFAULT (0),
[SkillPoint] [smallint] NOT NULL CONSTRAINT [DF_Chars_SkillPoint] DEFAULT (0),
[Str] [smallint] NOT NULL,
[Dex] [smallint] NOT NULL,
[Rec] [smallint] NOT NULL,
[Int] [smallint] NOT NULL,
[Luc] [smallint] NOT NULL,
[Wis] [smallint] NOT NULL,
[HP] [smallint] NOT NULL,
[MP] [smallint] NOT NULL,
[SP] [smallint] NOT NULL,
[Map] [smallint] NOT NULL CONSTRAINT [DF_Chars_map] DEFAULT (0),
[Dir] [smallint] NOT NULL CONSTRAINT [DF_Chars_dir] DEFAULT (0),
[Exp] [int] NOT NULL CONSTRAINT [DF_Chars_exp] DEFAULT (0),
[Money] [int] NOT NULL CONSTRAINT [DF_Chars_money] DEFAULT (0),
[PosX] [real] NOT NULL CONSTRAINT [DF_Chars_posx] DEFAULT (674.442),
[PosY] [real] NOT NULL CONSTRAINT [DF_Chars_posy] DEFAULT (3.640),
[Posz] [real] NOT NULL CONSTRAINT [DF_Chars_posz] DEFAULT (1000.924),
[Hg] [smallint] NOT NULL,
[Vg] [smallint] NOT NULL,
[Cg] [tinyint] NOT NULL,
[Og] [tinyint] NOT NULL,
[Ig] [tinyint] NOT NULL,
[K1] [int] NOT NULL CONSTRAINT [DF_Chars_K1] DEFAULT ((0)),
[K2] [int] NOT NULL CONSTRAINT [DF_Chars_K2] DEFAULT (0),
[K3] [int] NOT NULL CONSTRAINT [DF_Chars_K3] DEFAULT (0),
[K4] [int] NOT NULL CONSTRAINT [DF_Chars_K4] DEFAULT (0),
[KillLevel] [tinyint] NOT NULL CONSTRAINT [DF_Chars_KillLevel] DEFAULT (0),
[DeadLevel] [tinyint] NOT NULL CONSTRAINT [DF_Chars_DeadLevel] DEFAULT (0),
[RegDate] [datetime] NOT NULL CONSTRAINT [DF_Chars_RegDate] DEFAULT (getdate()),
[DeleteDate] [datetime] NULL,
[JoinDate] [datetime] NULL,
[LeaveDate] [datetime] NULL,
[RenameCnt] [tinyint] NOT NULL,
[OldCharName] [varchar](30) NULL,
[RemainTime] [int] NOT NULL CONSTRAINT [DF_Chars_RemainTime] DEFAULT (0),
CONSTRAINT [PK_Chars] PRIMARY KEY CLUSTERED
(
[CharID] 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




This is the FIx for 120000 Kills

Why giving him the whole table when he can simply right click on dbo.Chars, Design and change the default value in the K1 column ?
Heifnir is offline  
Thanks
1 User
Old 07/18/2017, 18:00   #38
 
elite*gold: 0
Join Date: Jun 2017
Posts: 7
Received Thanks: 1
so he dont need Acktivate Brain Copy and Past
Lugat is offline  
Reply


Similar Threads Similar Threads
WTT iSRO(RedSea)lvl 106 character for rSRO Artemis character!
09/07/2010 - Silkroad Online Trading - 10 Replies
Hey guys/girls, I want to trade my lvl 106 rogue/bard on RedSea server. Rev6.com - The 6th Revolution Character information: -name : SrO_Diabolik -build : rogue/bard full STR -skills : rogue/bard lvl 106 with skills up to date with about 250 k sp left -items:+2 +3 items with blue,101+5 dagger crit 18,shield 101+5 br 18 -never banned
cabal new character starting location
04/18/2009 - Cabal Online - 4 Replies
i am new to cabal and i discovered that different battle style starts at different location and receives different quests. my question is,when can different battle styles take the same quest and work together in hunting?because im going to play this game with friends with different battle styles and decided to work together in hunting. plz help me,thx a lot.
[Help] Character starting stuff
07/04/2008 - EO PServer Hosting - 19 Replies
any1 know how to change the default character stuff like they get mads and wads and 2 starting gear, where do i look to change this, and its got nothing t odo with right clicking design table in cq_user also how to change the map that u start in, if any1 knows plz reply asap



All times are GMT +2. The time now is 03:45.


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.