Can sombody help me please?
i have muemu season 6 files and i put in comond.dat to create caracter from lvl 0 on all but wen i login and create caracter i cant create it until i pres on some other caracter i can create like dark wizard bk and elf and wen i click on them the other ones enables can u guys help me to make it without clicking on the others is there a sql script or somting or mayby i can change it from sql somhow?
Re: Can sombody help me please?
First, provide the links of your repack. Based on what repack are you using, there's maybe a solution.
Also, I don't understand anything from what you are trying to say. What characters you want to be able to be created at level 0 and what's happening when you click them?
What's the "comond.dat"? This is the command list file? You are trying to make a level 0 character using a command?
Re: Can sombody help me please?
Quote:
Originally Posted by
zipper20032
First, provide the links of your repack. Based on what repack are you using, there's maybe a solution.
Also, I don't understand anything from what you are trying to say. What characters you want to be able to be created at level 0 and what's happening when you click them?
What's the "comond.dat"? This is the command list file? You are trying to make a level 0 character using a command?
So im sory i dident explain properly .i got muemu original files they relased free season 6 and the problem i have is i want to create rf dl sumoner mg from lvl 0 so i changed in server files and put all characters to create from lvl 0 but wen i go and enter client and make a new character i can only create dk sm and elf. And here is my problem if i press any of them with click the others enables and then i can create rf mg etc .. I wanted to make without clicking them from start if u unterstand?
Re: Can sombody help me please?
I understood that you've got MuEMU, but can you provide a link to that?
Anyway, for MuEMU, there's the GameServerInfo - Common file which you need to edit inside the GameServer, but again, this depends on what MuEMU files are you using because there are many repacks for Season 6, so that's why, if possible, we need you to provide a link (where you got the files from) so we would know what repack is that and actually download it and see what files are in there.
Re: Can sombody help me please?
Re: Can sombody help me please?
Code:
|
; Create Character Settings |
|
;================================================== |
|
CharacterCreateSwitch = 1 |
|
MGCreateType = 0 |
|
DLCreateType = 0 |
|
SUCreateType = 0 |
|
MGCreateLevel_AL0 = 0 |
|
MGCreateLevel_AL1 = 0 |
|
MGCreateLevel_AL2 = 0 |
|
MGCreateLevel_AL3 = 0 |
|
DLCreateLevel_AL0 = 0 |
|
DLCreateLevel_AL1 = 0 |
|
DLCreateLevel_AL2 = 0 |
|
DLCreateLevel_AL3 = 0 |
|
SUCreateLevel_AL0 = 0 |
|
SUCreateLevel_AL1 = 0 |
|
SUCreateLevel_AL2 = 0 |
|
SUCreateLevel_AL3 = 0 |
These are the settings you actually have?
Re: Can sombody help me please?
Quote:
Originally Posted by
zipper20032
Code:
|
; Create Character Settings |
|
;================================================== |
|
CharacterCreateSwitch = 1 |
|
MGCreateType = 0 |
|
DLCreateType = 0 |
|
SUCreateType = 0 |
|
MGCreateLevel_AL0 = 0 |
|
MGCreateLevel_AL1 = 0 |
|
MGCreateLevel_AL2 = 0 |
|
MGCreateLevel_AL3 = 0 |
|
DLCreateLevel_AL0 = 0 |
|
DLCreateLevel_AL1 = 0 |
|
DLCreateLevel_AL2 = 0 |
|
DLCreateLevel_AL3 = 0 |
|
SUCreateLevel_AL0 = 0 |
|
SUCreateLevel_AL1 = 0 |
|
SUCreateLevel_AL2 = 0 |
|
SUCreateLevel_AL3 = 0 |
These are the settings you actually have?
yes sir that is the settings i have
- - - Updated - - -
https://forum.ragezone.com/image/jpe...FFFFABRRRQB//Z
- - - Updated - - -
https://forum.ragezone.com/image/jpe...FFFFABRRRQB//Z
- - - Updated - - -
here is the screenshot https://ibb.co/DM0b7qS
Re: Can sombody help me please?
In order to have the other characters enabled, you must have at least 1 character of level 1.
So, that's how the client behave. Is not a GS "issue", but a client "issue". (Is not a real issue. It's a logical issue more or less)
What's happening is that the client doesn't know what characters should be created, so by default, you can create a DW, DK or ELF. So, in order to have a RF, MG, DL, SUMM, you need a character with level 0 or higher. MGCreateLevel_AL0 = 0 because that's what the config is saying.
In your screenshot, do you have A CHARACTER with LEVEL 0? No, you don't, so, logically would be to create one in order to enable the creation of other characters. (This is a client sided issue)
Anyway, those files are pretty buggy, so without having the source code of these files, you won't get pretty far with that. Good luck tho.
Re: Can sombody help me please?
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
Re: Can sombody help me please?
@KarLi I've compared his database from MuEMU with the IGCN database. I'm afraid that those triggers won't work. RageFighter and Summoner fields are not in his database, but only in IGCN.
MuEMU is having those loaded only from the config apparently, so he needs the source code after all for both client and gameserver.
@Fabiven My best advice is to start looking for another repack (not IGCN or MuEMU as these are very buggy) with source codes too for fixing and patching things up.
Otherwise, good luck, mate.