Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: Files Season 6 episode 15  (Visto 28626 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline joserodas #140 Posteado: May 09, 2021, 11:26:34 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 51
  • Gracias recibida: 8
  • ar
no puedo hacer andar estos files, entro al server y una vez que pongo en el select server me aparece disconect asi que nose que puede ser

pongan un tutorial


Offline wendyll #141 Posteado: May 09, 2021, 01:17:10 PM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 128
  • Gracias recibida: 810
  • ph
pls contact me in this wendyllcute@gmail.com i need 500 players limit thank you


Offline wendyll #142 Posteado: May 09, 2021, 01:48:42 PM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 128
  • Gracias recibida: 810
  • ph
ive been using this file for 1 month already and its good the only thing is i got problem with ghost horse and other pets no skill the horse is not visible and dark lord summon skill cant be used in cs huhuhuhu can someone help me


Offline Specifier #143 Posteado: May 09, 2021, 05:57:50 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 719
  • Gracias recibida: 5872
  • ae
ive been using this file for 1 month already and its good the only thing is i got problem with ghost horse and other pets no skill the horse is not visible and dark lord summon skill cant be used in cs huhuhuhu can someone help me

need to configure in server side and maininfo for pet
check for index because im sure the index is not correct that's why its not visible

---------------------------[NULL]---------------------------------

Offline Janela #144 Posteado: May 09, 2021, 09:29:14 PM

  • 0 puntos por ventas
  • *
  • Rank: Usuario activo
  • Posts: 64
  • Gracias recibida: 372
  • us
Hello @Ifreat i know it is a bullshit question but is there a news on the bug on warehouses.


Offline jeprax #145 Posteado: May 10, 2021, 12:02:02 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 23
  • Gracias recibida: 2
  • ph
how to configure reset system reward? not working


Offline arxeane #146 Posteado: May 10, 2021, 02:42:25 AM | Modificado: May 10, 2021, 02:53:31 AM by ZabiinoOo

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 54
  • Gracias recibida: 10
  • ph
how to configure reset system reward? not working

sql servermanagement/database/muonline/programability/storedprocedure and find WZ_SetResetInfo

input this code

Code: [Select]
USE [MuOnline]
GO
/****** Object:  StoredProcedure [dbo].[WZ_SetResetInfo]    Script Date: 4/27/2021 3:53:24 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Procedure [dbo].[WZ_SetResetInfo]
@Account varchar(10),
@Name varchar(10),
@Reset int,
@ResetDay int,
@ResetWek int,
@ResetMon int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

UPDATE Character SET ResetCount=@Reset WHERE AccountID=@Account AND Name=@Name
UPDATE CashShopData SET WCoinC = WCoinC+10 WHERE AccountID=@Account

SET NOCOUNT OFF
SET XACT_ABORT OFF

END

execute and your good to go

Gracias:


Offline jeprax #147 Posteado: May 10, 2021, 03:03:52 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 23
  • Gracias recibida: 2
  • ph
how to configure reset system reward? not working

sql servermanagement/database/muonline/programability/storedprocedure and find WZ_SetResetInfo

input this code

Code: [Select]
USE [MuOnline]
GO
/****** Object:  StoredProcedure [dbo].[WZ_SetResetInfo]    Script Date: 4/27/2021 3:53:24 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Procedure [dbo].[WZ_SetResetInfo]
@Account varchar(10),
@Name varchar(10),
@Reset int,
@ResetDay int,
@ResetWek int,
@ResetMon int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

UPDATE Character SET ResetCount=@Reset WHERE AccountID=@Account AND Name=@Name
UPDATE CashShopData SET WCoinC = WCoinC+10 WHERE AccountID=@Account

SET NOCOUNT OFF
SET XACT_ABORT OFF

END

execute and your good to go
thanks bro it gives 10 wcoins what about this :

<ResetItemReward>
<!--
   <Group MinGReset="0" MaxGReset="1" MinReset="0" MaxReset="100">
      <Class Index="0" Zen="0" WCoinC="0" WCoinP="0" WCoinG="0" Credits="0">
         <Item ID="19" MinLevel="0" MaxLevel="15" MinOption="0" MaxOption="7" IsLuck="1" IsSkill="1" ExcType="0" MinExcellentCount="5" MaxExcellentCount="5" ExcCode="63" IsAncient="5" MaxSocket="2" Count="1"/>


Offline Specifier #148 Posteado: May 10, 2021, 04:23:22 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 719
  • Gracias recibida: 5872
  • ae
Hello @Ifreat i know it is a bullshit question but is there a news on the bug on warehouses.

still on it i will update the post when fixed
because im also testing it

---------------------------[NULL]---------------------------------

Offline arxeane #149 Posteado: May 10, 2021, 05:06:13 AM

  • 0 puntos por ventas
  • *
  • Rank: Dedicado
  • Posts: 54
  • Gracias recibida: 10
  • ph
how to configure reset system reward? not working

sql servermanagement/database/muonline/programability/storedprocedure and find WZ_SetResetInfo

input this code

Code: [Select]
USE [MuOnline]
GO
/****** Object:  StoredProcedure [dbo].[WZ_SetResetInfo]    Script Date: 4/27/2021 3:53:24 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Procedure [dbo].[WZ_SetResetInfo]
@Account varchar(10),
@Name varchar(10),
@Reset int,
@ResetDay int,
@ResetWek int,
@ResetMon int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

UPDATE Character SET ResetCount=@Reset WHERE AccountID=@Account AND Name=@Name
UPDATE CashShopData SET WCoinC = WCoinC+10 WHERE AccountID=@Account

SET NOCOUNT OFF
SET XACT_ABORT OFF

END

execute and your good to go
thanks bro it gives 10 wcoins what about this :

<ResetItemReward>
<!--
   <Group MinGReset="0" MaxGReset="1" MinReset="0" MaxReset="100">
      <Class Index="0" Zen="0" WCoinC="0" WCoinP="0" WCoinG="0" Credits="0">
         <Item ID="19" MinLevel="0" MaxLevel="15" MinOption="0" MaxOption="7" IsLuck="1" IsSkill="1" ExcType="0" MinExcellentCount="5" MaxExcellentCount="5" ExcCode="63" IsAncient="5" MaxSocket="2" Count="1"/>


pm me the files you want to add reward and i will edit it for you

Gracias:


Offline jeprax #150 Posteado: May 10, 2021, 05:26:09 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 23
  • Gracias recibida: 2
  • ph
how to configure reset system reward? not working

sql servermanagement/database/muonline/programability/storedprocedure and find WZ_SetResetInfo

input this code

Code: [Select]
USE [MuOnline]
GO
/****** Object:  StoredProcedure [dbo].[WZ_SetResetInfo]    Script Date: 4/27/2021 3:53:24 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER Procedure [dbo].[WZ_SetResetInfo]
@Account varchar(10),
@Name varchar(10),
@Reset int,
@ResetDay int,
@ResetWek int,
@ResetMon int
AS
BEGIN

SET NOCOUNT ON
SET XACT_ABORT ON

UPDATE Character SET ResetCount=@Reset WHERE AccountID=@Account AND Name=@Name
UPDATE CashShopData SET WCoinC = WCoinC+10 WHERE AccountID=@Account

SET NOCOUNT OFF
SET XACT_ABORT OFF

END

execute and your good to go
thanks bro it gives 10 wcoins what about this :

<ResetItemReward>
<!--
   <Group MinGReset="0" MaxGReset="1" MinReset="0" MaxReset="100">
      <Class Index="0" Zen="0" WCoinC="0" WCoinP="0" WCoinG="0" Credits="0">
         <Item ID="19" MinLevel="0" MaxLevel="15" MinOption="0" MaxOption="7" IsLuck="1" IsSkill="1" ExcType="0" MinExcellentCount="5" MaxExcellentCount="5" ExcCode="63" IsAncient="5" MaxSocket="2" Count="1"/>


pm me the files you want to add reward and i will edit it for you
check pm sir thank you


Offline Specifier #151 Posteado: May 10, 2021, 08:30:33 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 719
  • Gracias recibida: 5872
  • ae
first post updated, please test

---------------------------[NULL]---------------------------------

Offline wendyll #152 Posteado: May 10, 2021, 10:37:50 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 128
  • Gracias recibida: 810
  • ph
FDlincese corrupt  llorando2


Offline jeprax #153 Posteado: May 10, 2021, 10:53:54 AM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 23
  • Gracias recibida: 2
  • ph
FDlincese corrupt  llorando2
use the old main.dll


Offline Specifier #154 Posteado: May 10, 2021, 11:15:09 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 719
  • Gracias recibida: 5872
  • ae
updated maininfo in the first post

---------------------------[NULL]---------------------------------

Offline wendyll #155 Posteado: May 10, 2021, 11:40:53 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 128
  • Gracias recibida: 810
  • ph
sir i got problem with zen limit in character it will increase in 2b+++ how to fix this cant warp map


Offline FSword #156 Posteado: May 10, 2021, 07:11:03 PM

  • 0 puntos por ventas
  • *
  • Rank: Principiante
  • Posts: 26
  • Gracias recibida: 535
  • ar
Los vengo testeando y son estables, los fallos que encontre los dichosos set Ancient... en especifico los Lucky , estan mal configurados, y los items Acc Ej Kundun, por mas que le configures el drop como debe de ser, siempre tira cada tanto un item normal camuflado, y por ultimo el detalle del zen en el baul 99,000,000. es el maximo de momento sirve por el simple hecho de que tenes 8 baules, en total 792000000.
Si estas buscando unos Files para Testear y aprender, estos son ideales.

Spoiler for Hiden:

Spoiler for Hiden:


Offline Specifier #157 Posteado: May 10, 2021, 10:08:27 PM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 719
  • Gracias recibida: 5872
  • ae
sir i got problem with zen limit in character it will increase in 2b+++ how to fix this cant warp map

can show me picture?

---------------------------[NULL]---------------------------------

Offline wendyll #158 Posteado: May 11, 2021, 05:11:31 AM

  • 0 puntos por ventas
  • *
  • Rank: Avanzado
  • Posts: 128
  • Gracias recibida: 810
  • ph
sir i got problem with zen limit in character it will increase in 2b+++ how to fix this cant warp map

can show me picture?

fix it already...thank you..this file is the greatest so far i tested...everything now is working except the survivor event and right click missing items..

recommended cool2 cool2

Gracias:


Offline Specifier #159 Posteado: May 11, 2021, 05:21:46 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 719
  • Gracias recibida: 5872
  • ae
sir i got problem with zen limit in character it will increase in 2b+++ how to fix this cant warp map

can show me picture?

fix it already...thank you..this file is the greatest so far i tested...everything now is working except the survivor event and right click missing items..

recommended cool2 cool2

good because it never happened to me zen bugged xD
and for lucky you need to configure them in client side

---------------------------[NULL]---------------------------------

Gracias:


Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
9 Replies
5422 Views
Last post November 09, 2017, 03:46:05 PM
by nik2013
132 Replies
46631 Views
Last post February 24, 2023, 11:55:38 PM
by pichuxdd
103 Replies
40353 Views
Last post September 09, 2025, 10:59:39 PM
by kodai
1 Replies
3790 Views
Last post February 22, 2019, 01:19:49 PM
by shangxin
0 Replies
576 Views
Last post January 22, 2022, 08:52:31 AM
by augis241