I already searched the "Search Button" and Google but nothing was useful for me. So, how to change default level and bounty of gunz? Change experience gained for each kill you made? That's all i want to know.
I already searched the "Search Button" and Google but nothing was useful for me. So, how to change default level and bounty of gunz? Change experience gained for each kill you made? That's all i want to know.
1. For default level and bounty while creating the char:
Open SQL managment, your GunzDB > Stored Procedures > right click on spInsertChar > Modify... now scroll down alittle you'll see something like that (i don't remember exact code): Values(..0,0,0,0,0,0..) count the place of the level and the BT (bounty) and edit them then save/execute
2. For the level EXP gain/get:
Go to matchserver folder open formula.xml and edit the getEXP and giveEXP... save that's all
^
Ok thanks but do you mind explaining a little bit more in the 1st step? What is Stored Procedures and how to find it? 2nd step is ok with me
Sorry I was on iPhone when I replied that's why I didn't explain it good, so the 1st step again:
1. open your SQL Managment Studio (ofc you know what is that)
2. Databases > GunzDB > Programmability > Stored Procedures > dbo.spInsertChar (right click on it) > Modify...
3. search for this (about the line 59)
so the red one is the level and the green is the bounty(the 2nd zero)Code: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)
edit them and save/execute that's all :D
forum.ragezone.com/f497/tut-character-creation-customize-666633/
@CharNum , 5 (Level
and the 9999 is bounty ( you can edit it)
At Stored Procedures > dbo.spInsertChar
he fixed it, there is no need to keep replying -.-