Quote:
Originally Posted by JohnHeatz
To point you out in some direction, you just need to set the default to 60 instead of 1 on the level column on the chars table
|
Well the way I read and understood that was basically setting their level via DB AFTER the toon is made. Then again maybe you are referring to opening it via "Design". If so I have done that while it is labeled "smallint" and I changed the "Default Value or Binding" from ((0)) to ((60)) but it didn't work.
Now I am also inside the stored procedure as Viper said but not sure what exactly to edit but I had an idea of maybe trying:
(This is part of the query that I am looking at)
/* 여기까지 인자값 주어져야 함 */
/* SP 내부 참조용 변수 */
@CharID int = 0,
@NameCnt tinyint = 0
AS
SET NOCOUNT ON
DECLARE @Ret int
SET @CharName = LTRIM(RTRIM(@CharName))
SET @SkillPoint = 5
SET @Ret = 0
Now what I thought about editing or changing on this would be this particular section:
AS
SET NOCOUNT ON
DECLARE @Ret int
SET @CharName = LTRIM(RTRIM(@CharName))
SET @Level = 60
SET @StatPoint = 531
SET @SkillPoint = 300
SET @Ret = 0
Now I am not sure if this would work and or if it did, if I would need to change it somewhere else. Just looked like common sense to me in that aspect of looking at it.