[Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
+15
jopea302
Tommy
mujot
varum
WassingtoN
-HellSinG-
LightRaven
larryxD
darfenix
Chino Carrión
pierex
Vanz.-
NiQO
Sebastian
Psycho
19 participantes
Página 1 de 2.
Página 1 de 2. • 1, 2
[Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Hola,
Por favor, lea hasta el final.
Estoy escribiendo este correo electrónico para dar a nuestros nuevos archivos de Servir, versión 2.0.4.0 (Temporada 6).
Antes que nada,
Esta es la primera vez zafado para esta versión, de todas formas algunos pequeños errores pueden ser encontrados.
Estos problemas se solucionaran con el tiempo.
Importante: Nuestro Dataservers son nuevos! Usted debe usarlo con la temporada 6 de servidor.
Para la temporada de actualización 5 Base de Datos para la temporada 6, ejecutar la consulta que se adjunta.
Usted necesitará un nuevo número de serie! A continuación, ejecuta activator.exe (carpeta Herramientas) y enviarme el archivo generado de nuevo por correo electrónico, pidiendo clave de la versión 2.0.4.0.
Nuestro cliente es nuevo también! Versión 1.07V (Inglés, español y portugués), el cliente tiene 3D, ENCDefender y apoyo a la identificación de elementos personalizados hasta 511 por categoría.
Files: [Tienes que estar registrado y conectado para ver este vínculo]
Pass:
aFdhQ#YG!#7GJSFDG&@
Client Files (1.07V ): [Tienes que estar registrado y conectado para ver este vínculo]
Season 5 to 6 querys:
Creditos:
ENCGames
Ragezone
Rosarino Gambino
ItsZerO
Saludos.-
Lado Servidor:
Files base: Descargar
Keygen: [Tienes que estar registrado y conectado para ver este vínculo]
GameServer crackeado: Descargar
GameServerCs Crackeado: Descargar (Contraseña: vempire)
GameServer fix drop de items: Descargar
GameServerCS fix drop de items: Descargar
MuMaker Season 6: Descargar
Fix socket Season 6 (poner en ENCData): Descargar
Scripts(poner en el analizador de consultas):
[Tienes que estar registrado y conectado para ver esa imagen] 1º Descargar 2º Descargar
Lado Cliente:
[Tienes que estar registrado y conectado para ver esa imagen] Cliente 1.07v : Descargar Main 1.07v crackeado y sin camara 3d: Descargar
Sistemas operativos soportados:
Windows XP, Windows Server 2003, Windows Server 2008, Windows Vista & Windows 7
Creditos:
Rosario Gambino
xakum
DarkMaster
Vempire
m7eveN
Tomatoes
Pinkof
Afghan
WebZen
ENCGames
Por favor, lea hasta el final.
Estoy escribiendo este correo electrónico para dar a nuestros nuevos archivos de Servir, versión 2.0.4.0 (Temporada 6).
Antes que nada,
Esta es la primera vez zafado para esta versión, de todas formas algunos pequeños errores pueden ser encontrados.
Estos problemas se solucionaran con el tiempo.
Importante: Nuestro Dataservers son nuevos! Usted debe usarlo con la temporada 6 de servidor.
Para la temporada de actualización 5 Base de Datos para la temporada 6, ejecutar la consulta que se adjunta.
Usted necesitará un nuevo número de serie! A continuación, ejecuta activator.exe (carpeta Herramientas) y enviarme el archivo generado de nuevo por correo electrónico, pidiendo clave de la versión 2.0.4.0.
Nuestro cliente es nuevo también! Versión 1.07V (Inglés, español y portugués), el cliente tiene 3D, ENCDefender y apoyo a la identificación de elementos personalizados hasta 511 por categoría.
Files: [Tienes que estar registrado y conectado para ver este vínculo]
Pass:
aFdhQ#YG!#7GJSFDG&@
Client Files (1.07V ): [Tienes que estar registrado y conectado para ver este vínculo]
Season 5 to 6 querys:
- Código:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ExtWarehouse]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[ExtWarehouse]
GO
CREATE TABLE [dbo].[ExtWarehouse] (
[AccountID] [varchar] (10) COLLATE Latin1_General_CS_AS NOT NULL ,
[Items] [varbinary] (1920) NULL ,
[Money] [int] NULL ,
[EndUseDate] [smalldatetime] NULL ,
[DbVersion] [tinyint] NULL ,
[pw] [smallint] NULL ,
[VaultID] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ExtWarehouse] ADD
CONSTRAINT [DF_ExtWarehouse_Money] DEFAULT (0) FOR [Money],
CONSTRAINT [DF_ExtWarehouse_DbVersion] DEFAULT (0) FOR [DbVersion],
CONSTRAINT [DF_ExtWarehouse_pw] DEFAULT (0) FOR [pw],
CONSTRAINT [DF_ExtWarehouse_NUMBER] DEFAULT (1) FOR [VaultID]
GO
ALTER TABLE [dbo].[warehouse] ADD
[VaultID] [int] NOT NULL DEFAULT (1)
GO
CREATE PROCEDURE [dbo].[ENC_ChangeVault]
@login varchar(10),
@futureVaultID int
AS
Begin
SET NOCOUNT ON
DECLARE
@actualVaultID int,
@actualVaultItem varbinary(1920),
@futureVaultItem varbinary(1920),
@actualMoney int,
@futureMoney int
IF NOT EXISTS ( SELECT * FROM warehouse WHERE AccountID = @login )
Begin
INSERT INTO warehouse (AccountID, Money, EndUseDate, DbVersion, VaultID) VALUES (@login,0, getdate(), 3, 1)
End
IF (@futureVaultID <= 0)
Begin
SELECT @futureVaultID = 1
End
SELECT @actualVaultID = VaultID FROM warehouse WHERE AccountID = @login
IF (@actualVaultID <> @futureVaultID)
Begin
IF EXISTS ( SELECT * FROM ExtWarehouse WHERE VaultID = @futureVaultID AND AccountID = @login )
Begin
SELECT @actualVaultItem = Items FROM warehouse WHERE AccountID = @login
SELECT @actualMoney = Money FROM warehouse WHERE AccountID = @login
SELECT @futureVaultItem = Items FROM ExtWarehouse WHERE AccountID = @login and VaultID=@futureVaultID
SELECT @futureMoney = Money FROM ExtWarehouse WHERE AccountID = @login and VaultID=@futureVaultID
UPDATE warehouse SET Items = @futureVaultItem, Money = @futureMoney, VaultID = @futureVaultID WHERE AccountID = @login
IF EXISTS ( SELECT * FROM ExtWarehouse WHERE VaultID = @actualVaultID AND AccountID = @login )
Begin
UPDATE ExtWarehouse SET Items = @actualVaultItem, Money = @actualMoney WHERE AccountID = @login AND VaultID = @actualVaultID
End
ELSE
Begin
INSERT INTO ExtWarehouse (AccountID, Items, Money, EndUseDate, DbVersion, VaultID) VALUES (@login, @actualVaultItem, @actualMoney, getdate(), 3, @actualVaultID)
End
End
ELSE
Begin
SELECT @actualVaultItem = Items FROM warehouse WHERE AccountID = @login
SELECT @actualMoney = Money FROM warehouse WHERE AccountID = @login
UPDATE warehouse SET Items = NULL, Money = 0, VaultID = @futureVaultID WHERE AccountID = @login
IF EXISTS ( SELECT * FROM ExtWarehouse WHERE VaultID = @actualVaultID AND AccountID = @login )
Begin
UPDATE ExtWarehouse SET Items = @actualVaultItem, Money = @actualMoney WHERE AccountID = @login AND VaultID = @actualVaultID
End
ELSE
Begin
INSERT INTO ExtWarehouse (AccountID, Items, Money, EndUseDate, DbVersion, VaultID) VALUES (@login, @actualVaultItem, @actualMoney, getdate(), 3, @actualVaultID)
End
End
End
End
GO
IF EXISTS (SELECT name FROM sysobjects
WHERE name = 'NewCharactersFixs' AND type = 'TR')
DROP TRIGGER NewCharactersFixs
GO
CREATE TRIGGER [NewCharactersFixs] ON [dbo].[Character]
FOR INSERT
AS
BEGIN
IF ( SELECT Class FROM INSERTED ) = 96
BEGIN
UPDATE Character SET MagicList=Null, Quest=Null, Inventory=0x00001200000000000010000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF14081E000000000000D000000000000014101E000000000000D0000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
WHERE Class='96'
END
END
Creditos:
ENCGames
Ragezone
Rosarino Gambino
ItsZerO
Saludos.-
UPDATE hecho por Register.-
Changelog:- Código:
2.0.4.0
ENC_SocketItems.txt File - Added
Begin of Season 6 works
Season 6 Maps - Added
Rage Fighter Character - Added
DataServer For New Character - Fixed
Rage Fighter Create - Fixed
Rage Fighter Login - Fixed
Rage Fighter Item.txt Column - Added
Rage Fighter Item Equip - Fixed
Rage Fighter Level Up Points - Fixed
Rage Fighter Capes - Fixed
Rage Fighter HP and Mana - Fixed
Rage Fighter Skill.txt Column - Added
Rage Fighter Skills - 100%
CalCharacter System - Improved
Imperial Event - Added
Processor Usage Decreased
Memory Usage Decreased
Items Limit Up To 511/group - Client
Siege Skill In All Maps - Added
Multi Vault System - Improved
2.0.3.0
AntiHack System Integrated in GS!!
Medusa Event - 100%
Full GS Hack Protection - Added
IPBlock System - Improved
GM System - Improved
/clearinv Command - Added
[Siege] Friendly Damage - Removed
Item Move Limit System - Improved
2.0.2.0
New ConnectServer
Anti-Crash System - Added
Golden Dragon Drop - Fixed (Old System)
Run On Windows Server 2003 SP2 (R2) - Fixed
SQL Overload - Fixed
/vault Command Delay - Added
Duel Spectator Kill - Fixed
/reload 4 - Added (Drop System)
2.0.1.0
Harmony on 15 Items - Fixed
[Duel] Fake Winner Report - Fixed
[Duel] Delete Spectator by Bar Button - Added
Kundun Boxes Luck Drop - Refixed
Hit Some NPCs - Fixed
Angel Pet Life Decrease - Fixed
Add Points Without Relogin - Added (with specific main.exe only)
Some Overflows - Fixed
Reload Mobs Crash - Fixed
Some Crashs - Fixed
Drop System - Rebuilded
2.0.0.0
Season 5 Quests - 100%
Add points over limit by command - Fixed
Drop System - Fixed
Duel System Fully Fixed - 100%
Marlon Quest Delete After Reset - Fixed
3rd Wings Rates Config - Added
BK Swell Life Die - Fixed
Raul NPC - 100%
Minor Fixes
1.9.9.0
15 Items Mix Freeze - Fixed
15 Items Mix Log - Added
15 Items Mix Options Dissapear - Fixed
Christine NPC (Shop19.txt) - 100%
Jewel Disappear After Trade - Fixed
1.9.8.0
New source code!! (Totally reformulated)
Summoner Skill Tree - 100% (1.07V or higher)
Special Effect to /reset Command - Added
CalCharacter System - Added
GameMasters Log - Added
/infovip and /reset Support to 5 Vip Plans - Added
Removed Some Useless Logs
Decrease CPU Usage
Online Announce System - 100%
Dataservers overload - Fixed (thanks to Willerson)
VIP Gate System - Added
1.9.7.0
Online Announce System - Added
13, 14 and 15 Items Effect - Fixed
Mini Wings Visual Bug - Fixed
1.9.6.0
Item Move Limit System - Added
/infovip Command - Readded
Daily Resets - Added
Resets Columns Control - Added
All Skills On New Protocol - 100%
1.9.5.0
Magic Skill On New Protocol - Fixed
/status Command Crash - Fixed
/ban Command Crash - Fixed
/moveall Command - Added
1.9.4.0
15 Items Durability - Fixed
15 Items Strength - Fixed
Panda and Skeleton Pet Durability Decrease - Fixed
1.9.3.0
Fixed some crashes
PK Party God Mode - Fixed
Golden Troops (korean protocol) - 99%
Negative Status - Fixed
Some Fixes in DataServers
Commands Syntax Config - Added
Some Fixes in EventServer
15 Mix Socket Options Disappear - Fixed
Support Clients 1.07P or higher - Added
1.9.2.0
ExDB Connect Issue - Fixed
ConnectServer Hack Attack - Fixed
Custom Drop System - Added
Reset in same location - Fixed
Party Exp Config - Added
1.9.1.0
Panda Pet visual bug in 'select char' - Fixed
Skeleton Pet visual bug in 'select char' - Fixed
[GSCS]Panda Pet visual bug - Fixed
[GSCS]Skeleton Pet visual bug - Fixed
[GSCS]Add points over limit - Fixed
1.9.0.0
NPC Julia Zen bug - Fixed
Lvl 40 Warrior Ring - Fixed
Chaos Card NPC and Mix - Fixed
Wings 15 Mix - Fixed
1.8.9.0
Panda Pet visual bug (in game) - Fixed
Skeleton Pet visual bug (in game) - Fixed
NPC Julia (ID 547) - Added
1.8.8.0
Panda Ring after to cancel trade - Fixed
Gladiator Glory Buff after to cancel trade - Fixed
Loren Market Map (Map 79) - Added
Skeleton Transformation Ring - 100%
Items 15 suport - 100%
Items 15 Chaos Mix - 100%
1.8.7.0
[Duel System] Loser Move - Fixed
[Duel System] Gladiator Glory Buff - Fixed
'T key' freeze - Fixed
GM Can't kill mobs and players - Fixed
[Double Goer] Boss and Players move in bar - Fixed
1.8.6.0
Excellent Shops support - 100%
VIP Auto-Decrase System (jobs no more)
VIP Server System - 100%
Added /skin
Panda Transformation Ring - 100%
1.8.5.0
Double Goer Event - 100% (Original)
1.8.4.0
Small Fixes
1.8.3.0
1.07 Client support - 100%
Added Exc Socket option - 100%
Added /infovip
Added /vault
1.8.2.0
Added /reset
Added /ban
1.7.9.0
News System - 100%
ManaShield bug fixed
Greater Fortitude fixed
1.7.8.0
IPBlock System - 100%
DuelSystem - 100%
65k support - 100%
1.7.7.0
Season 5 Maps - 100%
Season 5 Client support - 100%
Summoner - 100%
ExDB Anti-inject - 100%
Auto-DC JoinServer - 100%
Added /zen
GMSystem - 100%
MasterSkillTree - 100%
Raklion Event - 100% (Original)
Socket Items System - 100% (Original)
All originals events - 100%
Added /post
Added /str,/agi,/vit,/ene and /cmd
Added /drop
Added /pkset
Added /setzen
Added /pkclear
Added /gg
Added /status
Season 3 Episode 1 and 2 - 100%
Season 2 - 100%
Season 1 - 100%
Lado Servidor:
Files base: Descargar
Keygen: [Tienes que estar registrado y conectado para ver este vínculo]
GameServer crackeado: Descargar
GameServerCs Crackeado: Descargar (Contraseña: vempire)
GameServer fix drop de items: Descargar
GameServerCS fix drop de items: Descargar
MuMaker Season 6: Descargar
Fix socket Season 6 (poner en ENCData): Descargar
Scripts(poner en el analizador de consultas):
[Tienes que estar registrado y conectado para ver esa imagen] 1º Descargar 2º Descargar
Lado Cliente:
[Tienes que estar registrado y conectado para ver esa imagen] Cliente 1.07v : Descargar Main 1.07v crackeado y sin camara 3d: Descargar
Sistemas operativos soportados:
Windows XP, Windows Server 2003, Windows Server 2008, Windows Vista & Windows 7
Creditos:
Rosario Gambino
xakum
DarkMaster
Vempire
m7eveN
Tomatoes
Pinkof
Afghan
WebZen
ENCGames
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
son files Season 6??
Sebastian- Leyenda
-
~ El Macho de la caverna ~
Mensajes : 1400
Cash Point : 33192
Prestigio : 2239
Registro : 09/11/2010
Localización : Buenos Aires.
Edad : 28
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
YA Los TESTIE! No andan los GS no prenden .. Porque falta el crack.
Estos Estan llenos de problemas.
Porque no trae los GS crackeados.
Suerte.
Estos Estan llenos de problemas.
Porque no trae los GS crackeados.
Suerte.
Última edición por NiQO el 2010-11-17, 22:57, editado 1 vez
NiQO- Level III
-
~ New User ~
Mensajes : 286
Cash Point : 27026
Prestigio : 41
Registro : 10/11/2010
Localización : MKGS
Edad : 30
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Sobre el Primero que posteo, si lees el titulo, se SUPONE que dice que es Season 6.
AJAJAJAJAJAJAJAJAJAJAJAJ.
Claro amigo, vos los testeaste, PERO COMO VAS A TESTEAR SI NO PODES INICIAR LOS GS?
Si no sabes, no comentes al reverendo dope para sumar comentarios.
Perdon por sacarme asi, pero estoy cansado de leer esto en todos lados.
Tengo la Clave, asi que voy a intentar darles Crack, Si lo hago, saco Sv :B
NiQO escribió:YA Los TESTIE!
Estos Estan llenos de problemas.
Porque no trae los GS crackeados.
Suerte.
AJAJAJAJAJAJAJAJAJAJAJAJ.
Claro amigo, vos los testeaste, PERO COMO VAS A TESTEAR SI NO PODES INICIAR LOS GS?
Si no sabes, no comentes al reverendo dope para sumar comentarios.
Perdon por sacarme asi, pero estoy cansado de leer esto en todos lados.
Tengo la Clave, asi que voy a intentar darles Crack, Si lo hago, saco Sv :B
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
En ningun momento dije que entre al server...
Simplemente dije que ya trate de prenderlos.
Y no me deja..
Es porque falta la PASS.
Simplemente dije que ya trate de prenderlos.
Y no me deja..
Es porque falta la PASS.
NiQO- Level III
-
~ New User ~
Mensajes : 286
Cash Point : 27026
Prestigio : 41
Registro : 10/11/2010
Localización : MKGS
Edad : 30
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Entonces que testeaste?
Dije Claramente NO CRACKEADOS.
Dije Claramente NO CRACKEADOS.
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Disculpa no leei bien el tema...Archivos NO crackeados.
--------
Yo ya dije , me especifique mal disculpas.
quise decir que quise prenderlo pero no estan crackeados porque ya los lei en otros FOROS.
NiQO- Level III
-
~ New User ~
Mensajes : 286
Cash Point : 27026
Prestigio : 41
Registro : 10/11/2010
Localización : MKGS
Edad : 30
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
No traen un programa como los files scf, ?
Vanz.-- Level |V
-
~ New User ~
Mensajes : 414
Cash Point : 27643
Prestigio : 174
Registro : 09/11/2010
Localización : Rosario
Edad : 30
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
No, todo como WebZen manda, salvo los Gs modificados.
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
ah, entonces si no tienen el codigo de lisencia, dificil que los hagan andar xD, ! Igualmente, el changelog o caracteristicas de los files ?
Vanz.-- Level |V
-
~ New User ~
Mensajes : 414
Cash Point : 27643
Prestigio : 174
Registro : 09/11/2010
Localización : Rosario
Edad : 30
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Current version: 2.0.4.0 - Used client: 1.07V+ (kor)
Next version: 2.0.5.0 - Used client: 1.07V+ (kor)
2.0.5.0 (in development)
Next version: 2.0.5.0 - Used client: 1.07V+ (kor)
2.0.5.0 (in development)
- Gens System - 95%
- New JoinServer
- ENC_SocketItems.txt File - Added
- Begin of Season 6 works
- Season 6 Maps - Added
- Rage Fighter Character - Added
- DataServer For New Character - Fixed
- Rage Fighter Create - Fixed
- Rage Fighter Login - Fixed
- Rage Fighter Item.txt Column - Added
- Rage Fighter Item Equip - Fixed
- Rage Fighter Level Up Points - Fixed
- Rage Fighter Capes - Fixed
- Rage Fighter HP and Mana - Fixed
- Rage Fighter Skill.txt Column - Added
- Rage Fighter Skills - 100%
- CalCharacter System - Improved
- Imperial Event - Added
- Processor Usage Decreased
- Memory Usage Decreased
- Items Limit Up To 511/group - Client
- Siege Skill In All Maps - Added
- Multi Vault System - Improved
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
MuServer Base 2.0.4.0:
GameServer-N + DLL Crackeado:
Cliente Recomendado (1.07V+):
Main 1.07V+ con camara 3d:
Creditos Crack:
xakum
Sistemas Soportados:
- Windows 2003 Server
- Wimdows XP
- Windows Vista
Sistemas NO Soportados:
- Windows 7
- Windows 2008 Server
Atasquense con eso ;D
- Código:
http://depositfiles.com/es/files/ewlr4geyk
GameServer-N + DLL Crackeado:
- Código:
http://www.megaupload.com/?d=UMVFYOZQ
Cliente Recomendado (1.07V+):
- Código:
http://www.megaupload.com/?d=FULURXBP
Main 1.07V+ con camara 3d:
- Código:
http://www.sendspace.com/file/p0il67
Creditos Crack:
xakum
Sistemas Soportados:
- Windows 2003 Server
- Wimdows XP
- Windows Vista
Sistemas NO Soportados:
- Windows 7
- Windows 2008 Server
Atasquense con eso ;D
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Demaciado aclarado estan las caracteristicas de los files, el que quiera testearlos que lo haga..!
Pero dejen de comentar, veo que algunos solo comentan para subir la cantidad de mensajes..!
Pero dejen de comentar, veo que algunos solo comentan para subir la cantidad de mensajes..!
Vanz.-- Level |V
-
~ New User ~
Mensajes : 414
Cash Point : 27643
Prestigio : 174
Registro : 09/11/2010
Localización : Rosario
Edad : 30
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
o.O,No andan los links :S
Sebastian- Leyenda
-
~ El Macho de la caverna ~
Mensajes : 1400
Cash Point : 33192
Prestigio : 2239
Registro : 09/11/2010
Localización : Buenos Aires.
Edad : 28
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Los Links andan perfecto, dejen de hacer post al reverendo pedo.
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
[Tienes que estar registrado y conectado para ver esa imagen]
^^! fijate bien..
^^! fijate bien..
Sebastian- Leyenda
-
~ El Macho de la caverna ~
Mensajes : 1400
Cash Point : 33192
Prestigio : 2239
Registro : 09/11/2010
Localización : Buenos Aires.
Edad : 28
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Psycho escribió:MuServer Base 2.0.4.0:
- Código:
http://depositfiles.com/es/files/ewlr4geyk
GameServer-N + DLL Crackeado:
- Código:
http://www.megaupload.com/?d=UMVFYOZQ
Cliente Recomendado (1.07V+):
- Código:
http://www.megaupload.com/?d=FULURXBP
Main 1.07V+ con camara 3d:
- Código:
http://www.sendspace.com/file/p0il67
Creditos Crack:
xakum
Sistemas Soportados:
- Windows 2003 Server
- Wimdows XP
- Windows Vista
Sistemas NO Soportados:
- Windows 7
- Windows 2008 Server
Atasquense con eso ;D
Lee todo el Post, no el primer comentario, Capo ;)
Psycho- Leyenda
-
~ New User ~
Mensajes : 290
Cash Point : 26541
Prestigio : 85
Registro : 11/11/2010
Localización : Cordoba
Edad : 32
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Los links andan a la perfeccion..!
Vanz.-- Level |V
-
~ New User ~
Mensajes : 414
Cash Point : 27643
Prestigio : 174
Registro : 09/11/2010
Localización : Rosario
Edad : 30
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Si funciona en windows 7 ultimate x32
pierex- Miembro
-
~ New User ~
Mensajes : 5
Cash Point : 25565
Prestigio : 0
Registro : 27/11/2010
Localización : Lima
Edad : 29
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Changelog:
Lado Servidor:
Files base: Descargar
Keygen: [Tienes que estar registrado y conectado para ver este vínculo]
GameServer crackeado: Descargar
GameServerCs Crackeado: Descargar (Contraseña: vempire)
GameServer fix drop de items: Descargar
GameServerCS fix drop de items: Descargar
MuMaker Season 6: Descargar
Fix socket Season 6 (poner en ENCData): Descargar
Scripts(poner en el analizador de consultas):
1º
Descargar
2º
Descargar
Lado Cliente:
Cliente 1.07v+: Descargar
Main 1.07v+ crackeado y sin camara 3d: Descargar
Sistemas operativos soportados:
Windows XP, Windows Server 2003, Windows Server 2008, Windows Vista & Windows 7
Creditos:
Rosario Gambino
xakum
DarkMaster
Vempire
m7eveN
Tomatoes
Pinkof
Afghan
WebZen
ENCGames
- Código:
2.0.4.0
ENC_SocketItems.txt File - Added
Begin of Season 6 works
Season 6 Maps - Added
Rage Fighter Character - Added
DataServer For New Character - Fixed
Rage Fighter Create - Fixed
Rage Fighter Login - Fixed
Rage Fighter Item.txt Column - Added
Rage Fighter Item Equip - Fixed
Rage Fighter Level Up Points - Fixed
Rage Fighter Capes - Fixed
Rage Fighter HP and Mana - Fixed
Rage Fighter Skill.txt Column - Added
Rage Fighter Skills - 100%
CalCharacter System - Improved
Imperial Event - Added
Processor Usage Decreased
Memory Usage Decreased
Items Limit Up To 511/group - Client
Siege Skill In All Maps - Added
Multi Vault System - Improved
2.0.3.0
AntiHack System Integrated in GS!!
Medusa Event - 100%
Full GS Hack Protection - Added
IPBlock System - Improved
GM System - Improved
/clearinv Command - Added
[Siege] Friendly Damage - Removed
Item Move Limit System - Improved
2.0.2.0
New ConnectServer
Anti-Crash System - Added
Golden Dragon Drop - Fixed (Old System)
Run On Windows Server 2003 SP2 (R2) - Fixed
SQL Overload - Fixed
/vault Command Delay - Added
Duel Spectator Kill - Fixed
/reload 4 - Added (Drop System)
2.0.1.0
Harmony on +15 Items - Fixed
[Duel] Fake Winner Report - Fixed
[Duel] Delete Spectator by Bar Button - Added
Kundun Boxes Luck Drop - Refixed
Hit Some NPCs - Fixed
Angel Pet Life Decrease - Fixed
Add Points Without Relogin - Added (with specific main.exe only)
Some Overflows - Fixed
Reload Mobs Crash - Fixed
Some Crashs - Fixed
Drop System - Rebuilded
2.0.0.0
Season 5 Quests - 100%
Add points over limit by command - Fixed
Drop System - Fixed
Duel System Fully Fixed - 100%
Marlon Quest Delete After Reset - Fixed
3rd Wings Rates Config - Added
BK Swell Life Die - Fixed
Raul NPC - 100%
Minor Fixes
1.9.9.0
+15 Items Mix Freeze - Fixed
+15 Items Mix Log - Added
+15 Items Mix Options Dissapear - Fixed
Christine NPC (Shop19.txt) - 100%
Jewel Disappear After Trade - Fixed
1.9.8.0
New source code!! (Totally reformulated)
Summoner Skill Tree - 100% (1.07V or higher)
Special Effect to /reset Command - Added
CalCharacter System - Added
GameMasters Log - Added
/infovip and /reset Support to 5 Vip Plans - Added
Removed Some Useless Logs
Decrease CPU Usage
Online Announce System - 100%
Dataservers overload - Fixed (thanks to Willerson)
VIP Gate System - Added
1.9.7.0
Online Announce System - Added
+13, +14 and +15 Items Effect - Fixed
Mini Wings Visual Bug - Fixed
1.9.6.0
Item Move Limit System - Added
/infovip Command - Readded
Daily Resets - Added
Resets Columns Control - Added
All Skills On New Protocol - 100%
1.9.5.0
Magic Skill On New Protocol - Fixed
/status Command Crash - Fixed
/ban Command Crash - Fixed
/moveall Command - Added
1.9.4.0
+15 Items Durability - Fixed
+15 Items Strength - Fixed
Panda and Skeleton Pet Durability Decrease - Fixed
1.9.3.0
Fixed some crashes
PK Party God Mode - Fixed
Golden Troops (korean protocol) - 99%
Negative Status - Fixed
Some Fixes in DataServers
Commands Syntax Config - Added
Some Fixes in EventServer
+15 Mix Socket Options Disappear - Fixed
Support Clients 1.07P+ or higher - Added
1.9.2.0
ExDB Connect Issue - Fixed
ConnectServer Hack Attack - Fixed
Custom Drop System - Added
Reset in same location - Fixed
Party Exp Config - Added
1.9.1.0
Panda Pet visual bug in 'select char' - Fixed
Skeleton Pet visual bug in 'select char' - Fixed
[GSCS]Panda Pet visual bug - Fixed
[GSCS]Skeleton Pet visual bug - Fixed
[GSCS]Add points over limit - Fixed
1.9.0.0
NPC Julia Zen bug - Fixed
Lvl 40 Warrior Ring - Fixed
Chaos Card NPC and Mix - Fixed
Wings +15 Mix - Fixed
1.8.9.0
Panda Pet visual bug (in game) - Fixed
Skeleton Pet visual bug (in game) - Fixed
NPC Julia (ID 547) - Added
1.8.8.0
Panda Ring after to cancel trade - Fixed
Gladiator Glory Buff after to cancel trade - Fixed
Loren Market Map (Map 79) - Added
Skeleton Transformation Ring - 100%
Items +15 suport - 100%
Items +15 Chaos Mix - 100%
1.8.7.0
[Duel System] Loser Move - Fixed
[Duel System] Gladiator Glory Buff - Fixed
'T key' freeze - Fixed
GM Can't kill mobs and players - Fixed
[Double Goer] Boss and Players move in bar - Fixed
1.8.6.0
Excellent Shops support - 100%
VIP Auto-Decrase System (jobs no more)
VIP Server System - 100%
Added /skin
Panda Transformation Ring - 100%
1.8.5.0
Double Goer Event - 100% (Original)
1.8.4.0
Small Fixes
1.8.3.0
1.07 Client support - 100%
Added Exc+Socket option - 100%
Added /infovip
Added /vault
1.8.2.0
Added /reset
Added /ban
1.7.9.0
News System - 100%
ManaShield bug fixed
Greater Fortitude fixed
1.7.8.0
IPBlock System - 100%
DuelSystem - 100%
65k support - 100%
1.7.7.0
Season 5 Maps - 100%
Season 5 Client support - 100%
Summoner - 100%
ExDB Anti-inject - 100%
Auto-DC JoinServer - 100%
Added /zen
GMSystem - 100%
MasterSkillTree - 100%
Raklion Event - 100% (Original)
Socket Items System - 100% (Original)
All originals events - 100%
Added /post
Added /str,/agi,/vit,/ene and /cmd
Added /drop
Added /pkset
Added /setzen
Added /pkclear
Added /gg
Added /status
Season 3 Episode 1 and 2 - 100%
Season 2 - 100%
Season 1 - 100%
Lado Servidor:
Files base: Descargar
Keygen: [Tienes que estar registrado y conectado para ver este vínculo]
GameServer crackeado: Descargar
GameServerCs Crackeado: Descargar (Contraseña: vempire)
GameServer fix drop de items: Descargar
GameServerCS fix drop de items: Descargar
MuMaker Season 6: Descargar
Fix socket Season 6 (poner en ENCData): Descargar
Scripts(poner en el analizador de consultas):
1º
Descargar
2º
Descargar
Lado Cliente:
Cliente 1.07v+: Descargar
Main 1.07v+ crackeado y sin camara 3d: Descargar
Sistemas operativos soportados:
Windows XP, Windows Server 2003, Windows Server 2008, Windows Vista & Windows 7
Creditos:
Rosario Gambino
xakum
DarkMaster
Vempire
m7eveN
Tomatoes
Pinkof
Afghan
WebZen
ENCGames
Chino Carrión- Level V
-
Lo que haces grita tanto que apenas se oye lo que
Mensajes : 781
Cash Point : 28122
Prestigio : 405
Registro : 12/11/2010
Localización : Lorencia
Edad : 27
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
te queriero preguntar ay muchos link y descargas ay cual es la que funciona a la perfection o ay que configurar todo
darfenix- Miembro
-
~ New User ~
Mensajes : 2
Cash Point : 25520
Prestigio : 0
Registro : 04/12/2010
Localización : sucre
Edad : 39
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Tenes que bajar todo, y poner cosa por cosa como te dice ahi..!
Vanz.-- Level |V
-
~ New User ~
Mensajes : 414
Cash Point : 27643
Prestigio : 174
Registro : 09/11/2010
Localización : Rosario
Edad : 30
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
oye man si serias tan amable de poner una guia para los novatos de la intalacion de los files e configuracion del clienta para cambaiar el ip ya que los intete poner y no supe no entra
darfenix- Miembro
-
~ New User ~
Mensajes : 2
Cash Point : 25520
Prestigio : 0
Registro : 04/12/2010
Localización : sucre
Edad : 39
Re: [Aporte] ENCGames Server Files 2.0.4.0 Season6 + Client 1.07V+ (ENG-SPA-POR) FULL (New Char)
Tenes que descargar los files, luego aplicar los fix a los files y después agregar las sentencias al analizador de consultas del sql.
Saludos.
Saludos.
Chino Carrión- Level V
-
Lo que haces grita tanto que apenas se oye lo que
Mensajes : 781
Cash Point : 28122
Prestigio : 405
Registro : 12/11/2010
Localización : Lorencia
Edad : 27
Página 1 de 2. • 1, 2
Temas similares
» [Aporte] Files 0.99C+ Full + Cliente 0.99c+ Original + Utilidades
» [Aporte] Files 99b+ al 100% Reales Muchos Fix!! + Sub Server
» [Aporte] MuServer 0.97.02++ / Client 97d++
» [Aporte]Server Files OGC-Servers S2 + Main 3D + AntiHack
» Nuevos Files Season 4 full 1.05x+2 SubServer
» [Aporte] Files 99b+ al 100% Reales Muchos Fix!! + Sub Server
» [Aporte] MuServer 0.97.02++ / Client 97d++
» [Aporte]Server Files OGC-Servers S2 + Main 3D + AntiHack
» Nuevos Files Season 4 full 1.05x+2 SubServer
Página 1 de 2.
Permisos de este foro:
No puedes responder a temas en este foro.