Max reborn

12/21/2009 13:50 conquer93#1
Hi all,

im lv 170 and 30 reborn. how can i max 7 reborn?

UPDATE dbo.user_character
SET wLevel = 1, dwExp = 0, wStatPoint = 250 * (Reborn + 1), nHP=106, nMP=16, dwMoney = dwMoney - (50000000), wStr = 6, wDex = 3, wCon = 4, wSpr = 2, wPosX = 336, wPosY = 366, Reborn = Reborn + 1, wMapIndex = 7, wSkillPoint = 0
WHERE (byPCClass = 0) AND (wlevel >= 170) AND (dwMoney >= (50000000)) AND (Reborn < 50);
12/21/2009 14:48 Decima#2
UPDATE dbo.user_character
SET wLevel = 1, dwExp = 0, wStatPoint = 250 * (Reborn + 1), nHP=106, nMP=16, dwMoney = dwMoney - (50000000), wStr = 6, wDex = 3, wCon = 4, wSpr = 2, wPosX = 336, wPosY = 366, Reborn = Reborn + 1, wMapIndex = 7, wSkillPoint = 0
WHERE (byPCClass = 0) AND (wlevel >= 170) AND (dwMoney >= (50000000)) AND (Reborn < 8);
12/21/2009 19:44 janvier123#3
dont forget "byPCClass = 0" for each class

'0' => "Azure Knight",
'1' => "Segita Hunter",
'2' => "Incar Magician",
'3' => "Vicious Summoner",
'4' => "Segnale",
'5' => "Bagi Warrior"

'6' => "Aloken" if its working ...
12/22/2009 01:26 conquer93#4
Quote:
Originally Posted by janvier123 View Post
dont forget "byPCClass = 0" for each class

'0' => "Azure Knight",
'1' => "Segita Hunter",
'2' => "Incar Magician",
'3' => "Vicious Summoner",
'4' => "Segnale",
'5' => "Bagi Warrior"

'6' => "Aloken" if its working ...
I know ;), i have it change to 6 and doesnt work. So i tell on elitepvpers and doesnt work. I restart job and work :P
12/23/2009 17:57 BlindGuard77#5
Quote:
Originally Posted by janvier123 View Post
dont forget "byPCClass = 0" for each class

'0' => "Azure Knight",
'1' => "Segita Hunter",
'2' => "Incar Magician",
'3' => "Vicious Summoner",
'4' => "Segnale",
'5' => "Bagi Warrior"

'6' => "Aloken" if its working ...
Why for each class? Why not byPCClass >= 0

And why do you even need the class as a requirement?