Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya > Shaiya Private Server
You last visited: Today at 14:03

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

Advertisement



[Help]Relog=reset kills

Discussion on [Help]Relog=reset kills within the Shaiya Private Server forum part of the Shaiya category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Oct 2012
Posts: 89
Received Thanks: 4
[Help]Relog=reset kills

I have proble. All toons start with 1kk+ kills;/
Command /set Toon kill 0 reseted all kills but after relog kills back
Try follow this tut --> But not help

QQers19 is offline  
Old 01/18/2013, 22:14   #2
 
elite*gold: 0
Join Date: May 2010
Posts: 342
Received Thanks: 87
Hello, try to see in configuration of ur table PS_GameData.dbo.chars, before to open or modify u clic on design/creation to see if there is one value per defauts who is setup... Generally the pb of the kill and death add in creation of toon come from one default setup so look there maybe it can resolve it...

ps : if u find one value per default u just need to replace (number) -->to ((0))...

hope it can help u

Regards,

"Me"
_Diavolino_ is offline  
Old 01/18/2013, 22:37   #3
 
[ADM]Prophecy™'s Avatar
 
elite*gold: 0
Join Date: Jan 2013
Posts: 4
Received Thanks: 2
dsadas

Quote:
Originally Posted by _Diavolino_ View Post
Hello, try to see in configuration of ur table PS_GameData.dbo.chars, before to open or modify u clic on design/creation to see if there is one value per defauts who is setup... Generally the pb of the kill and death add in creation of toon come from one default setup so look there maybe it can resolve it...

ps : if u find one value per default u just need to replace (number) -->to ((0))...

hope it can help u

Regards,

"Me"
You're saying the same thing says the fix
[ADM]Prophecy™ is offline  
Old 01/18/2013, 22:52   #4
 
elite*gold: 0
Join Date: Oct 2012
Posts: 89
Received Thanks: 4
U mean this?:
Code:
USE [PS_GameData]
GO

/****** Object:  Table [dbo].[Chars]    Script Date: 2013-01-18 22:50:17 ******/
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,
	[Del] [tinyint] NOT NULL,
	[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,
	[StatPoint] [smallint] NOT NULL,
	[SkillPoint] [smallint] NOT NULL,
	[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,
	[Dir] [smallint] NOT NULL,
	[Exp] [int] NOT NULL,
	[Money] [int] NOT NULL,
	[PosX] [real] NOT NULL,
	[PosY] [real] NOT NULL,
	[Posz] [real] NOT NULL,
	[Hg] [smallint] NOT NULL,
	[Vg] [smallint] NOT NULL,
	[Cg] [tinyint] NOT NULL,
	[Og] [tinyint] NOT NULL,
	[Ig] [tinyint] NOT NULL,
	[K1] [int] NOT NULL,
	[K2] [int] NOT NULL,
	[K3] [int] NOT NULL,
	[K4] [int] NOT NULL,
	[KillLevel] [tinyint] NOT NULL,
	[DeadLevel] [tinyint] NOT NULL,
	[RegDate] [datetime] NOT NULL,
	[DeleteDate] [datetime] NULL,
	[JoinDate] [datetime] NULL,
	[LeaveDate] [datetime] NULL,
	[RenameCnt] [tinyint] NOT NULL,
	[OldCharName] [varchar](30) NULL,
	[RemainTime] [int] NOT NULL,
	[LoginStatus] [tinyint] NULL,
 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
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_New]  DEFAULT (1) FOR [New]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_Del]  DEFAULT (0) FOR [Del]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_level]  DEFAULT (0) FOR [Level]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_StatPoint]  DEFAULT (0) FOR [StatPoint]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_SkillPoint]  DEFAULT (0) FOR [SkillPoint]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_map]  DEFAULT (0) FOR [Map]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_dir]  DEFAULT (0) FOR [Dir]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_exp]  DEFAULT (0) FOR [Exp]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_money]  DEFAULT (0) FOR [Money]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_posx]  DEFAULT (674.442) FOR [PosX]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_posy]  DEFAULT (3.640) FOR [PosY]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_posz]  DEFAULT (1000.924) FOR [Posz]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_K1]  DEFAULT ((0)) FOR [K1]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_K2]  DEFAULT (0) FOR [K2]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_K3]  DEFAULT (0) FOR [K3]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_K4]  DEFAULT (0) FOR [K4]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_KillLevel]  DEFAULT (0) FOR [KillLevel]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_DeadLevel]  DEFAULT (0) FOR [DeadLevel]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_RegDate]  DEFAULT (getdate()) FOR [RegDate]
GO

ALTER TABLE [dbo].[Chars] ADD  CONSTRAINT [DF_Chars_RemainTime]  DEFAULT (0) FOR [RemainTime]
GO
QQers19 is offline  
Old 01/18/2013, 23:12   #5
 
elite*gold: 0
Join Date: May 2010
Posts: 342
Received Thanks: 87
Smile

this is telling with different word... after ths "fix" does not explain how to access to the default value same u should as All elite get Brain.exe... i understand why much ppl are ****** off cuz of answer without any way...talk to talk <--- for prophecy better to rest on topic for helping the guy no ? xD
ps Just to remind that its one forum of Help so to do only the kind of comment that u can doing u can keep for u it rest useless...


for u qqers, just look

ALTER TABLE [dbo].[Chars] ADD CONSTRAINT [DF_Chars_K1] DEFAULT ((0)) FOR [K1]
GO

ALTER TABLE [dbo].[Chars] ADD CONSTRAINT [DF_Chars_K2] DEFAULT (0) FOR [K2]
GO

default 0 ... but this is the script of creation generally they are at 0 efault and not the database directly...look to the capture and if not try to change ur database PS_Game to see if u get the same pb... dont forget to keep one save...

Regards,

"Me"
Attached Images
File Type: jpg Capture.JPG (153.9 KB, 88 views)
_Diavolino_ is offline  
Thanks
1 User
Old 01/18/2013, 23:29   #6
 
elite*gold: 0
Join Date: Oct 2012
Posts: 89
Received Thanks: 4
K1:

K2:

Still max kills
QQers19 is offline  
Thanks
1 User
Old 01/18/2013, 23:38   #7
 
elite*gold: 0
Join Date: May 2010
Posts: 342
Received Thanks: 87
ur game.exe is it right too ? as the game.exe get one rolll major everywhere ^^

and did u try to created a new toon to see if the modification is taking... and before do one restart of dabase too from managementstudio...try it if not as it can be one error in psgame wich version are u using ? take one released not in indeveloppement i means the epi 6 not ready yet
_Diavolino_ is offline  
Old 01/18/2013, 23:43   #8
 
elite*gold: 0
Join Date: Oct 2012
Posts: 89
Received Thanks: 4
this files;

So need new PS_game.exe?
QQers19 is offline  
Old 01/18/2013, 23:51   #9
 
elite*gold: 0
Join Date: May 2010
Posts: 342
Received Thanks: 87
... For sure ... as its one episod 4 evoluated and mix 5/6 u cant get actually one definitly version 6 without psgame.exe 6 who control the game ... the owner of this thread telll that its not ready yet cuz there are much bug to fix ... i dont advise u to use it
Teddybear present one version of ep 5 who are stable and nice done u could test with it and to customise with the necessary allready fix from ep 6 map item alllthese in client side . But i think u dont need to search more the pb come from the ep 6 who is realease to help it to correct all the bug on communauty after u use it its correct but there is bug ...

Regards and good Luck !

"Me"
_Diavolino_ is offline  
Thanks
1 User
Old 01/19/2013, 05:34   #10
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,977
Arrow Shaiya PServer Development -> Shaiya Private Server

#Moved to the right section
JohnHeatz is offline  
Thanks
1 User
Old 01/19/2013, 13:06   #11
 
elite*gold: 0
Join Date: Oct 2012
Posts: 89
Received Thanks: 4
I try instal new ps_game.exe but with new ps game i can connect to game but cant logiin toons "connect error 0"

Work only in my first ps game



Some1 can see wats is wrong with this? ;/
QQers19 is offline  
Old 01/20/2013, 20:13   #12
 
elite*gold: 0
Join Date: Dec 2012
Posts: 76
Received Thanks: 65
The problem is the ps_game.exe is buggy
Old-School is offline  
Old 01/21/2013, 15:54   #13
 
elite*gold: 0
Join Date: Oct 2012
Posts: 89
Received Thanks: 4
I know that but i don't know how fix it



Quote:
Originally Posted by QQers19 View Post
I try instal new ps_game.exe but with new ps game i can connect to game but cant logiin toons "connect error 0"

Work only in my first ps game
QQers19 is offline  
Reply


Similar Threads Similar Threads
WTS 2x 114 Bard/Cleric on Orion (Skill reset,Stat reset, Prem+,1000% 10x)
12/11/2012 - Silkroad Online Trading - 5 Replies
- 2x 114 Bard/Cleric on Orion All have: - 1 Skill reset - 1 Stat reset - Prem+ - 1000% 10x more then 1b Gold on 2 Accounts. Cheap!!
In der Z8games mall für crossfire gibt es 2 items '(K/D reset und W/L reset)
11/10/2012 - CrossFire - 13 Replies
was bringt das ?:confused:
Jedes mal Raid ID reset nach relog
09/13/2012 - WoW Exploits, Hacks, Tools & Macros - 26 Replies
Hallo elitepvpers! Heute habe ich etwas (hoffentlich) neues Entdeckt wie man Raids so oft man möchte machen kann! 1. Charakter transferieren(KEIN Fraktionswechsel) 2. Raid machen (Bsp. Karazhan erster Boss fürs Mount) 3. Aus- und wieder Einloggen(ID verschwunden) 4. Anderen Spieler einladen um einen Schlachtzug zu öffnen 5. Den Raid wieder machen Nach jedem relog ist keine Raid ID mehr da!
TRADE MY ALL IN ONE HACK IN SOUL CRASH--- ( RESET ,RENAME,RESET GAUGE,WEApON BOOSTER
04/25/2012 - Facebook - 7 Replies
I WANT TO TRADE THIS HACK FOR NINJA SAGA TOKEN HACK pERMANENT.. OR SURVEY THAT GIVES 400 TOKEN EVERY SURVEY.. THIS HACK IN SOUL CRASH ARE ALL pERMANENT SO I NEED pERMANENT ALSO... pM ME IF YOU ARE INTERSTED.. ADD THIS [email protected] my number 09293707807 ... dont be foolish to scam me... this is true.. be a good friend.. thank you... hope can help me/.......
need help in STATS RESET,RENAME AND RESET GAUGE HACK>>>
04/21/2012 - Facebook - 0 Replies
pLEASE pOST HERE THE pROCEDURE ON HOW TO HACK RENAME ,, RESET AND GAUGE HACK... I WANT TO KNOW IT.. THANK YOU



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


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.