usually when configuring that file with CreateLevel_AL config should worked, meaning if u tried 1 or 0 and it doesnt work (even if u did what zipper said, create first normal character and then connnect/switch character to make a new one) then u must do something with a script like this
simplified sql script by igcn
For Rage Fighter
Code:
USE [MuOnline]
GO
CREATE TRIGGER RageFighterActivation ON [dbo].[Character]
FOR UPDATE
AS
SET NOCOUNT ON
DECLARE @accountID varchar(10);
DECLARE @cLevel int;
SELECT @accountID=i.AccountID FROM inserted i;
SELECT @cLevel=i.cLevel FROM inserted i;
IF (UPDATE(cLevel) AND (@cLevel >= 200)) -- Edit desired level in this line
UPDATE dbo.AccountCharacter SET RageFighter = 1 WHERE Id = @accountID
GO
For Summoner
Code:
USE [MuOnline]
GO
CREATE TRIGGER SummonerActivation ON [dbo].[Character]
FOR UPDATE
AS
SET NOCOUNT ON
DECLARE @accountID varchar(10);
DECLARE @cLevel int;
SELECT @accountID=i.AccountID FROM inserted i;
SELECT @cLevel=i.cLevel FROM inserted i;
IF (UPDATE(cLevel) AND (@cLevel >= 150)) -- Edit desired level in this line
UPDATE dbo.AccountCharacter SET Summoner = 1 WHERE Id = @accountID
what is black = you change it
what is green = you replace character so you can unlock others like slayer for example:
you try same code whole script but just change the character class(green)
SummonerActivation to SlayerActivation
SET Summoner to SET Slayer
and so on (default level is on cLevel) u can change that to 1 and for RF = 200 which u can change to 1 too, just experiment (and make sure u backup your Database before you screw it up)
gl