hello im interested to know how i change the lvl at charselection like if you make a new char ur lvl 20
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
Last edited by razi46; 04-04-10 at 01:59 AM.
@CharNum, 1,
@CharNum, 20,
replace.. Lol.