hello im interested to know how i change the lvl at charselection like if you make a new char ur lvl 20
Printable View
hello im interested to know how i change the lvl at charselection like if you make a new char ur lvl 20
Go to your database, Programmability > Stored Procedures > db.spInsertChar >Right Click > Modify
Go to This Line
After the ......@CharNum, LEVEL YOU WILL START e.g. 30, @Sex.......Code:INSERT INTO Character (AID, Name, CharNum, Level, Sex, Hair, Face, XP, BP, FR, CR, ER, WR,
GameCount, KillCount, DeathCount, RegDate, PlayTime, DeleteFlag)
Values (@AID, @Name, @CharNum, 1, @Sex, @Hair, @Face, 0, 0, 0, 0, 0, 0, 0, 0, 0, GETDATE(), 0, 0)
IF 0 <> @@ERROR BEGIN
ROLLBACK TRAN
RETURN (-1)
END
@CharNum, 1,
@CharNum, 20,
replace.. Lol.