• Bem vindo à nossa comunidade - Quer se juntar ao resto dos nossos membros? Registre-se*Registros aprovados pela adminitração

Mu Server Repack MUEMU SEASON 8 by louis

allancaster20

Novato XPZ
@louis sim eu edito na pasta data/util/gamemaster porém não pode utilizar o /make se esse char ganhar STAFF, ou pelo site ou pelo mu editor, so consegui usar o /make se o usuario que eu colocar no data/util/gamemaster, de maneira alguma colocar STAFF ou pelo site ou pelo Mu Editor. Tem alguma forma de colocar de outra forma ? ou tema lguma sequencia a se fazer? Ou algo do tipo.
 

ayrton15

Novato XPZ
Por favor, Entrar ou Registrar para ver o conteúdo das citações!

No meu servidor é assim:


;==================================================
; Custom Attack Offline Settings
;==================================================
CustomAttackOfflineSwitch = 1
CustomAttackOfflineGPGain = 0
CustomAttackOfflineEnable_AL0 = 0
CustomAttackOfflineEnable_AL1 = 0
CustomAttackOfflineEnable_AL2 = 0
CustomAttackOfflineEnable_AL3 = 1
CustomAttackOfflineRequireLevel_AL0 = 0
CustomAttackOfflineRequireLevel_AL1 = 0
CustomAttackOfflineRequireLevel_AL2 = 0
CustomAttackOfflineRequireLevel_AL3 = 0
CustomAttackOfflineRequireReset_AL0 = 0
CustomAttackOfflineRequireReset_AL1 = 0
CustomAttackOfflineRequireReset_AL2 = 0
CustomAttackOfflineRequireReset_AL3 = 0
CustomAttackOfflineRequireMoney_AL0 = 0
CustomAttackOfflineRequireMoney_AL1 = 0
CustomAttackOfflineRequireMoney_AL2 = 0
CustomAttackOfflineRequireMoney_AL3 = 0
CustomAttackOfflineCommandSyntax = /offattack
CustomAttackOfflineText1 = Você não está habilitado para usar /offattack
CustomAttackOfflineText2 = Você precisa de pelo menos %d level para usar esse comando
CustomAttackOfflineText3 = Você precisa de pelo menos %d reset para usar esse comando
CustomAttackOfflineText4 = Você precisa de pelo menos %d zen para usar esse comando
CustomAttackOfflineText5 = Você precisa ativar o ataque automático antes
CustomAttackOfflineText6 = Você não pode usar o comando nesse local
 

allancaster20

Novato XPZ
Nego vc n entendeu deixa eu explicar melhor ( login: teste, Char: Fox) se eu ir no site ou no Mu Editor e colocar o CHAR FOX como GM esse n consegui usar o /make mesmo estando com o nome em Data/Util/GameMaster, nesse arquivo coloco (teste Fox 2). Agora se eu fizer somente a edição no Data/Util/GameMaster o char Fox vai conseguir usar o /make, agora se ir no Mu Editor ou editar no Site, vai dizer q o char n tem permissão.
 

QuieLSouza92

Honrado XPZ
Alguem me ajuda com isso
Por favor, Entrar ou Registrar para ver o conteúdo das URLs!
 

nicolas1

Banido
Amigo poderia explicar como faço para adicionar as JOBS 1 e 2 nao estou conseguindo !

Tentei rodar elas mais esta dando erro poderia dar uma força obrigado !


===============================================================================================
JOB 1 - TOP REI DO MU
===============================================================================================

declare @name varchar(10),
@acc varchar(10),
@num int,
@g1 varchar(10),
@g2 varchar(10),
@g3 varchar(10),
@gm1 varchar(10),
@gm2 varchar(10),
@gm3 varchar(10)
set @num = 0

set @g1 = (select top 1 g_name from guild order by owner_time desc)
set @g2 = (select top 1 g_name from guild where g_name <> @g1 order by owner_time desc)
set @g3 = (select top 1 g_name from guild where g_name <> @g1 and g_name <> @g2 order by owner_time desc)
set @gm1 = (select top 1 accountid from character where name=(select top 1 g_master from guild order by owner_time desc) collate database_default)
set @gm2 = (select top 1 accountid from character where name=(select top 1 g_master from guild where g_name <> @g1 order by owner_time desc) collate database_default)
set @gm3 = (select top 1 accountid from character where name=(select top 1 g_master from guild where g_name <> @g1 and g_name <> @g2 order by owner_time desc) collate database_default)

DECLARE LISTA CURSOR LOCAL FOR
select name from guildmember where g_name = @g1 order by event_count desc
OPEN LISTA
FETCH NEXT FROM LISTA INTO @name
WHILE @@FETCH_STATUS = 0
begin

set @num = @num+1

if @num > 0 and @num <6
begin
set @acc = (select top 1 accountid from character where name = @name)
update character set exp_war=exp_war+3000 where name=@name
end

if @num > 5
begin
update character set exp_war=exp_war+3000 where name = @name
end

FETCH NEXT FROM LISTA INTO @name
end
CLOSE LISTA
DEALLOCATE LISTA

set @num = 0

DECLARE LISTA CURSOR LOCAL FOR
select name from guildmember where g_name = @g2 order by event_count desc
OPEN LISTA
FETCH NEXT FROM LISTA INTO @name
WHILE @@FETCH_STATUS = 0
begin

set @num = @num+1

if @num > 0 and @num <6
begin
set @acc = (select top 1 accountid from character where name = @name)
update character set exp_war=exp_war+2000 where name=@name
end

if @num > 5
begin
update character set exp_war=exp_war+2000 where name = @name
end

FETCH NEXT FROM LISTA INTO @name
end
CLOSE LISTA
DEALLOCATE LISTA

set @num = 0

DECLARE LISTA CURSOR LOCAL FOR
select name from guildmember where g_name = @g3 order by event_count desc
OPEN LISTA
FETCH NEXT FROM LISTA INTO @name
WHILE @@FETCH_STATUS = 0
begin

set @num = @num+1

if @num > 0 and @num <6
begin
set @acc = (select top 1 accountid from character where name = @name)
update character set exp_war=exp_war+1000 where name=@name
end

if @num > 5
begin
update character set exp_war=exp_war+1000 where name = @name
end

FETCH NEXT FROM LISTA INTO @name
end
CLOSE LISTA
DEALLOCATE LISTA

update CashShopData set wCoinC = wCoinC+20 where AccountID=@gm1
update CashShopData set wCoinC = wCoinC+15 where AccountID=@gm2
update CashShopData set wCoinC = wCoinC+10 where AccountID=@gm3

insert into log_creditos ( login, valor, ip, tipo ) values (@gm1,'20','1','10')
insert into log_creditos ( login, valor, ip, tipo ) values (@gm2,'15','1','10')
insert into log_creditos ( login, valor, ip, tipo ) values (@gm3,'10','1','10')

declare @dado int

select @dado = (select top 1 owner_count from guild where g_name=@g1 order by owner_count desc)
Insert into top_semanal ( nome, dado, tipo, rank ) values (@g 1,@dado,'7','1')

select @dado = (select top 1 owner_count from guild where g_name=@g2 order by owner_count desc)
Insert into top_semanal ( nome, dado, tipo, rank ) values (@g2,@dado,'7','2')

select @dado = (select top 1 owner_count from guild where g_name=@g3 order by owner_count desc)
Insert into top_semanal ( nome, dado, tipo, rank ) values (@g3,@dado,'7','3')

update guild set owner_time = 0,owner=0,owner_count=0 where owner_time > 0

===============================================================================================
JOB 2 - TOP REI DO MU INDIVIDUAL
===============================================================================================

declare
@nome char(10),
@dado int,
@tipo smallint,
@data smalldatetime

select @nome = (select top 1 name from guildmember order by event_count desc)
select @dado = (select top 1 event_count from guildmember order by event_count desc)
select @tipo = '9'

Insert into top_semanal ( nome, dado,tipo, rank ) values (@nome,@dado,@tipo,1)

update character set exp_war=exp_war+5000 where name = @nome

update guildmember set event_count = 0 where name = @nome

select @nome = (select top 1 name from guildmember order by event_count desc)
select @dado = (select top 1 event_count from guildmember order by event_count desc)
select @tipo = '9'

Insert into top_semanal ( nome, dado,tipo, rank ) values (@nome,@dado,@tipo,2)

update character set exp_war=exp_war+4000 where name = @nome

update guildmember set event_count = 0 where name = @nome

select @nome = (select top 1 name from guildmember order by event_count desc)
select @dado = (select top 1 event_count from guildmember order by event_count desc)
select @tipo = '9'

Insert into top_semanal ( nome, dado,tipo, rank ) values (@nome,@dado,@tipo,3)

update character set exp_war=exp_war+3000 where name = @nome

update guildmember set event_count = 0 where name = @nome

select @nome = (select top 1 name from guildmember order by event_count desc)
select @dado = (select top 1 event_count from guildmember order by event_count desc)
select @tipo = '9'

Insert into top_semanal ( nome, dado,tipo, rank ) values (@nome,@dado,@tipo,4)

update character set exp_war=exp_war+2000 where name = @nome

update guildmember set event_count = 0 where name = @nome

select @nome = (select top 1 name from guildmember order by event_count desc)
select @dado = (select top 1 event_count from guildmember order by event_count desc)
select @tipo = '9'

Insert into top_semanal ( nome, dado,tipo, rank ) values (@nome,@dado,@tipo,5)

update character set exp_war=exp_war+1000 where name = @nome

update guildmember set event_count = 0 where event_count>0

===============================================================================================
 

dexterextreme

Novato XPZ
Sera que pode me ajudar, configurei tudo certinho.

- Coloquei os IP no conect server e no mapserver info
- Copiei a linha para o caminho em windows/system32drives/etc
- restaurei a database
- executei a odbc
- e configurei o main

e quando entro aparece 2 servers, um easy e um hard
o easy aparece como se ja tivesse gente logado e quando clico pra abrir tela de login da disconnect
o mesmo com o hard.
 

nicolas1

Banido
@louis o servidor esta perfeito ! so achei um erro no seu sistema voce postou "CustomItem" para gerar o main.emu mais voce esqueceu de adicionar o seus "PETS" o jogo abre entra normal compra items normal mais comprar "PETS" nao cai no inventario pelo motivo de nao ter na CustomItem !

Poderia postar a customs para gerar main.emu correto ou me dizer oque seria para funcionar so aparece PETS e imagem mais nao executa para usar dentro do MU !
 

QuieLSouza92

Honrado XPZ
Por favor, Entrar ou Registrar para ver o conteúdo das citações!
Bom no caso vc nao Configurou o main corretamente
Segue essa Info


1. Entre na pasta CLIENTE/MAIN_INFO e abra o arquivo "MainInfo.ini" e configurem essas duas linhas conforme o exemplo abaixo:
CustomerName = enoch
IpAddress = Aqui você coloca o IP que você utilizou no ConnectServer.dat e MapServerInfo.dat

2. Após ter configurado esse arquivos, execute o "GetMainInfo.exe", ele vai gerar ou atualizar um arquivo chamado "main.xtm" .

3. Agora você vai precisar copiar os seguintes arquivos da pasta MAIN_INFO para a pasta AH_INFO de acordo com a versão de mu que você vai utilizar:

[ Season4 ]
[Camera.dll][MHPClient.dll][main.exe][main.emu]

[ Season6 ]
[Camera.dll][MHPClient.dll][main.exe][main.emu]

[ Season8 ]
[Camera.dll][MHPClient.dll][Main.dll][main.emu][main.exe][game.exe]


4. Entre na pasta CLIENTE/AH_INFO e abra o arquivo "ClientInfo.ini" e configure essas duas linhas conforme o exemplo abaixo:

CustomerName = enoch
IpAddress = Aqui você coloca o IP que você utilizou no ConnectServer.dat e MapServerInfo.dat

5. Após ter configurado esse arquivos, execute o "GetAhInfo.exe", ele vai gerar ou atualizar um arquivo chamado "Info.xtm"

6. Depois disso você vai precisar copiar os seguintes arquivos da pasta AH_INFO para a pasta do Cliente de acordo com a versão de mu que você vai utilizar:

[ Season4 ]
[Camera.dll][MHPClient.dll][MHPVerify.dll][main.exe][main.emu][ah.emu]

[ Season6 ]
[Camera.dll][MHPClient.dll][MHPVerify.dll][main.exe][main.emu][ah.emu]

[ Season8 ]
[Camera.dll][MHPClient.dll][Main.dll][MHPVerify.dll][main.emu][ah.emu][main.exe][game.exe]
 
Topo Bottom