Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Files Season 6 Episodio 3 MuEmu [By Louis]  (Visto 30015 veces)

0 Miembros and 2 Guests are viewing this topic.

Offline unico #60 Posteado: August 20, 2017, 04:33:09 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 51
  • Gracias recibida: 2891
  • pe
entonces agrega la odbc manualmente  al sql y listo . seguro que cuando ejecutas dicha odbc   sale que acepto pero el vps no te lo toma por ende tienes que aserlo manualmente


Offline Ryuno #61 Posteado: August 20, 2017, 05:14:13 PM

  • C++ Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 505
  • Gracias recibida: 2026
  • dz
anyway db back of muemu files is compatable that free version?

no porque la base de datos de louis esta altamente modificada ya que el tiene nuevas tablas y procedures.


Offline arxeane #62 Posteado: August 21, 2017, 10:27:12 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 58
  • Gracias recibida: 10
  • ph

Es una mentira que el ala de costumbre se extienden a 100 sus solamente 20 alas permitidas si usted agrega más de 20 su ingame no demostrado, lo probé muchas veces tan malo ,


Offline louis #63 Posteado: August 24, 2017, 07:35:37 AM

  • MAESTRO

  • US. DE HONOR

  • LEYENDA

  • C++ Coder
  • +11 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 844
  • Gracias recibida: 36392
  • br
Es una mentira que el ala de costumbre se extienden a 100 sus solamente 20 alas permitidas si usted agrega más de 20 su ingame no demostrado, lo probé muchas veces tan malo ,

Es una mentira? ou uste no sabes hacer la configuracion? kkkkkk

Update 36 is ready!!!

Offline arxeane #64 Posteado: August 24, 2017, 09:12:58 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 58
  • Gracias recibida: 10
  • ph
i allready did all the config if i add more wings it not support any more and i test it many times , and the second bug i found is when the castle deep start the game server crash the gens not working tho so what ya say about that nigga??


Offline louis #65 Posteado: August 24, 2017, 05:34:30 PM

  • MAESTRO

  • US. DE HONOR

  • LEYENDA

  • C++ Coder
  • +11 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 844
  • Gracias recibida: 36392
  • br
to fix gens exec in sql manager:

Code: [Select]
Create function [dbo].[fn_rank_gens]
(
@name varchar(10),
@familia int
)
returns int
as
begin
declare @valor int;

set @valor = 0;

if exists (select Contribution from Gens_Rank where Name = @name and Contribution > 9999)
begin
WITH cte AS (
SELECT DENSE_RANK() OVER (ORDER BY contribution DESC) AS Rank, Name
FROM Gens_Rank where family=@familia)
select @valor = rank from cte where Name = @name;
end

return @valor;
end
GO

ALTER PROCEDURE [dbo].[WZ_GetCharacterGensInfo]
@Name varchar(10),
@Family int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

IF ( @Family = 1 )
BEGIN
SELECT dbo.fn_rank_gens(@Name,1)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=1
END
ELSE
BEGIN
SELECT dbo.fn_rank_gens(@Name,2)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=2
END

SET NOCOUNT OFF
SET XACT_ABORT OFF

END
GO

Update 36 is ready!!!

Offline arxeane #66 Posteado: August 25, 2017, 03:12:01 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 58
  • Gracias recibida: 10
  • ph
I already fix the gens problem by my self by the way any idea how to fix the dc problem when the castle deep evebt start game server crash??


Offline Nexus #67 Posteado: August 25, 2017, 04:18:17 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 350
  • Gracias recibida: 1106
  • ve
I already fix the gens problem by my self by the way any idea how to fix the dc problem when the castle deep evebt start game server crash??

cambia la configuración del repack por la original y prueba !!


Offline louis #68 Posteado: August 25, 2017, 07:24:13 AM

  • MAESTRO

  • US. DE HONOR

  • LEYENDA

  • C++ Coder
  • +11 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 844
  • Gracias recibida: 36392
  • br
I already fix the gens problem by my self by the way any idea how to fix the dc problem when the castle deep evebt start game server crash??
check your monstersetbaseCs

Update 36 is ready!!!

Offline DaiveSN #69 Posteado: August 28, 2017, 11:28:36 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 341
  • Gracias recibida: 260
  • ar
to fix gens exec in sql manager:

Code: [Select]
Create function [dbo].[fn_rank_gens]
(
@name varchar(10),
@familia int
)
returns int
as
begin
declare @valor int;

set @valor = 0;

if exists (select Contribution from Gens_Rank where Name = @name and Contribution > 9999)
begin
WITH cte AS (
SELECT DENSE_RANK() OVER (ORDER BY contribution DESC) AS Rank, Name
FROM Gens_Rank where family=@familia)
select @valor = rank from cte where Name = @name;
end

return @valor;
end
GO

ALTER PROCEDURE [dbo].[WZ_GetCharacterGensInfo]
@Name varchar(10),
@Family int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

IF ( @Family = 1 )
BEGIN
SELECT dbo.fn_rank_gens(@Name,1)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=1
END
ELSE
BEGIN
SELECT dbo.fn_rank_gens(@Name,2)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=2
END

SET NOCOUNT OFF
SET XACT_ABORT OFF

END
GO

hola asi debo ponerlo si es asi me da error o lo estoy haciendo mal

aqui dejo unas imagenes


Vendo Cuentas Digitales: desde 3$(Dolares)
✅- 💻Membresías Disponibles💻⚡  ✅- 🔮HBØ MAX🎥  ✅- 🎴Netflix🎬  ✅- 🎪Disney💻 ✅Crunchyroll🀄 ✅- 🟢Spotify🟢
✅ 📺TV LATINA ( PACK DE FUTBOOL, CANALES EN VIVO)
☯️Garantía👍🏼   ☯️Seguridad🔐     ☯️Atencion Personal👤

Offline louis #70 Posteado: August 28, 2017, 11:29:33 AM

  • MAESTRO

  • US. DE HONOR

  • LEYENDA

  • C++ Coder
  • +11 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 844
  • Gracias recibida: 36392
  • br
to fix gens exec in sql manager:

Code: [Select]
Create function [dbo].[fn_rank_gens]
(
@name varchar(10),
@familia int
)
returns int
as
begin
declare @valor int;

set @valor = 0;

if exists (select Contribution from Gens_Rank where Name = @name and Contribution > 9999)
begin
WITH cte AS (
SELECT DENSE_RANK() OVER (ORDER BY contribution DESC) AS Rank, Name
FROM Gens_Rank where family=@familia)
select @valor = rank from cte where Name = @name;
end

return @valor;
end
GO

ALTER PROCEDURE [dbo].[WZ_GetCharacterGensInfo]
@Name varchar(10),
@Family int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

IF ( @Family = 1 )
BEGIN
SELECT dbo.fn_rank_gens(@Name,1)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=1
END
ELSE
BEGIN
SELECT dbo.fn_rank_gens(@Name,2)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=2
END

SET NOCOUNT OFF
SET XACT_ABORT OFF

END
GO

hola asi debo ponerlo si es asi me da error o lo estoy haciendo mal

aqui dejo unas imagenes



Seleciona a database MuOnline oO

Update 36 is ready!!!

Offline unico #71 Posteado: August 28, 2017, 12:48:43 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 51
  • Gracias recibida: 2891
  • pe
to fix gens exec in sql manager:

Code: [Select]
Create function [dbo].[fn_rank_gens]
(
@name varchar(10),
@familia int
)
returns int
as
begin
declare @valor int;

set @valor = 0;

if exists (select Contribution from Gens_Rank where Name = @name and Contribution > 9999)
begin
WITH cte AS (
SELECT DENSE_RANK() OVER (ORDER BY contribution DESC) AS Rank, Name
FROM Gens_Rank where family=@familia)
select @valor = rank from cte where Name = @name;
end

return @valor;
end
GO

ALTER PROCEDURE [dbo].[WZ_GetCharacterGensInfo]
@Name varchar(10),
@Family int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

IF ( @Family = 1 )
BEGIN
SELECT dbo.fn_rank_gens(@Name,1)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=1
END
ELSE
BEGIN
SELECT dbo.fn_rank_gens(@Name,2)as Rank, Contribution FROM Gens_Rank WHERE Name = @Name and Family=2
END

SET NOCOUNT OFF
SET XACT_ABORT OFF

END
GO

hola asi debo ponerlo si es asi me da error o lo estoy haciendo mal

aqui dejo unas imagenes



jajajaja amigo se te olvido elejir  la base de datos donde se eejecutara la query  .-.


Offline bran10 #72 Posteado: August 28, 2017, 08:34:30 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 32
  • Gracias recibida: 13
  • mx
Les Comparto el Message.txt traducido de los files a español 100% funcional para los que tiene errores al querer traducirlo

https://mega.nz/#!XBYiXQ7Y!1hpG_3ltPcc1ulI0-tRd1F7hKBXMyB8rcbCCx9U66QQ


Offline Gabxd18 #73 Posteado: August 29, 2017, 07:52:19 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 258
  • Gracias recibida: 184
  • ve
Pregunto, se puede levantar subservers con estos files?


Offline unico #74 Posteado: August 29, 2017, 09:19:10 PM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 51
  • Gracias recibida: 2891
  • pe
Pregunto, se puede levantar subservers con estos files?
salas y sub salas o sub server como se digua  se puede con calquier file solo es cuestion que sepas agregarlo


Offline mauricio #75 Posteado: November 24, 2017, 03:09:52 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 11
  • Gracias recibida: 0
  • pe
Oye me sale ¨Could not connect data base que puede ser man ?


Offline -Rastaa.TSM☢ #76 Posteado: November 24, 2017, 03:17:15 PM

  • MAESTRO

  • US. DE HONOR

  • Super moderador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 883
  • Gracias recibida: 24983
  • ve
Oye me sale ¨Could not connect data base que puede ser man ?

El mismo error te lo dice error con la Base de Datos :D.


Online ZabiinoOo #77 Posteado: November 24, 2017, 03:42:14 PM

  • MAESTRO

  • US. DE HONOR

  • LEYENDA

  • Administrador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 7.270
  • Gracias recibida: 125182
  • pe
@mauricio busca en JoinServer en el config esta MuOnlineS6 quita el S6 dejando solo MuOnline




Prohibido pedir soporte via MP
Leer las reglas de cada seccion
we trust god

Offline eduardo182 #78 Posteado: November 26, 2017, 06:08:42 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 35
  • Gracias recibida: 6
  • ve
Una COnsulta la alas Custom las edito no me las puedo colocar unicamente por el editor quien me dice que hago como hago?


Offline eduardo182 #79 Posteado: November 26, 2017, 09:22:55 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 35
  • Gracias recibida: 6
  • ve
El comando para gamemaster de moverse /gmove o /move no funciona alguna solucion


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate