When creating character to earn 1000 BP !!
Gunz 1.5
Help?
When creating character to earn 1000 BP !!
Gunz 1.5
Help?
Open Microsoft SQL Server Management Express, log-in and go to the database of GunZ and follow the followed steps
Open database >> Programmability >> Stored Procedecures >> dbo.SpInsertChar >> Right Click >> Modify
Find:
INSERT INTO dbo.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, @NowDate, 0, 0)
And remplace for this:
Now automatically when you create a character will have 1000 bounty.INSERT INTO dbo.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, 1000, 0, 0, 0, 0, 0, 0, 0, @NowDate, 0, 0)
Last edited by LightRaven; 08-11-13 at 04:27 PM.