Change Lvl At Charselection

Results 1 to 3 of 3
  1. #1
    Enthusiast kosyl is offline
    MemberRank
    Jan 2009 Join Date
    35Posts

    Change Lvl At Charselection

    hello im interested to know how i change the lvl at charselection like if you make a new char ur lvl 20


  2. #2
    Account Upgraded | Title Enabled! razi46 is offline
    MemberRank
    Dec 2007 Join Date
    697Posts

    Re: Change Lvl At Charselection

    Go to your database, Programmability > Stored Procedures > db.spInsertChar >Right Click > Modify
    Go to This Line
    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
    After the ......@CharNum, LEVEL YOU WILL START e.g. 30, @Sex.......
    Last edited by razi46; 04-04-10 at 01:59 AM.

  3. #3
    人◕ ‿‿ ◕人 Forean is offline
    MemberRank
    Jul 2008 Join Date
    1,183Posts

    Re: Change Lvl At Charselection

    @CharNum, 1,

    @CharNum, 20,

    replace.. Lol.



Advertisement