First Method :
go to Enterprise Manager -> database -> MuOnline > Tables > AccountCharacter
right click on AccountCharacter -> Design Table,scroll down until you see "Summoner" click on it,change default value to (0) and uncheck "Allow Nulls"
after this go to Query Analyzer and use this on MuOnline
Use MuOnline
UPDATE AccountCharacter SET Summoner=0
Second Method:
go to enterprise manager>databases>muonline> stored procedures> double click WZ_CreateCharacter
click ctrl+A then open notepad and paste it inside there.
find those lines "Declare @g1 varchar(10), @g2 varchar(10), @g3 varchar(10), @g4 varchar(10), @g5 varchar(10)"
and before those lines add this codes
-- The next 5 lines are to disable SUM.
if (@Class = 80)
begin
SET result = 0x02
GOTO TranProcEnd
end
close the enterprise manager and go test if u can create RF.
Character Class Codes:
Code:
DK = 16
ELF = 32
WIZ = 0
MG = 48
DL = 64
SUM = 80
RF = 96
Replace 80 with what ever.