elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Introducción a Git (Primera Parte)


  Mostrar Mensajes
Páginas: 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ... 22
11  Media / Juegos y Consolas / Re: Crear servidor Antrix para World of Warcraft actualizado en: 19 Enero 2008, 03:14 am
-----------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------

Este tutorial está desactualizado como muchos sabréis; debido a que no tengo
tiempo de actualizarlo y a que cada poco salen nuevas versiones de servidor
y de bases de datos etc, pero es muy buena base para crear un server actualizado
con las últimas versiones de todo.


Para los interesados con esto tendréis para apañaros:

http://projects.emupedia.com/svn/ascent

http://projects.emupedia.com/svn/ncdb

(usuario:   anonymous      contraseña: EN BLANCO)



En esos links encontraréis el código fuente de ascent, todas las actualizaciones
necesarias para la base de datos; extractor de mapas, dbc's...
Y en el de abajo la base de datos más estable que existe actualmente (NCDB)
su instalación es muy sencilla, no me voy a extender.


Esos links son oficiales, por lo tanto siempre son los que tengan la
última versión, en ningún sitio estáran mas actualizados.

Si quieres compilarte tu el código fuente de ascent sólo necesitarás
o el MS V.Studio 2003, el 2005, o el 2008.


-----------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------
12  Programación / Programación Visual Basic / Re: Ayuda con Registro y Visual Basic en: 27 Noviembre 2007, 15:42 pm
Prueba con esto:

Citar
Dim variable, RegTemp, valor
     valor = "LOQUESEA"
     Set variable = CreateObject("WScript.Shell")
     variable.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\AABB", valor




Sino, siempre te quedará la opción de usar shell en visual basic (ya sean bats o comandos)

Shell("ARCHIVO", AppWinStyle.NormalFocus)
13  Media / Multimedia / Re: Ayuda con un Video en: 26 Noviembre 2007, 01:06 am
Parece una tontería, pero yo uso cualquier editor de textos en esos casos  :xD


mira abrelo con un editor de textos, y si es wmv entre las primeras líneas tiene que aparecer esto:


Citar
 W i n d o w s   M e d i a   V i d e o

Tambien puedes buscar por las siglas WMV

si sale y no lo puedes ver será porque usa una compresión que tus codecs de k-lite no llevan integrada.
14  Programación / Programación Visual Basic / Re: Ayuda con Registro y Visual Basic en: 25 Noviembre 2007, 19:18 pm
http://www.davidsuarez.es/?p=335

espero que te sirva de ayuda
15  Media / Juegos y Consolas / Re: mejor pagina de cracks? en: 24 Noviembre 2007, 12:27 pm
nuse,  yo casi siempre uso el craagle, sino google xD
 ;)
16  Media / Juegos y Consolas / Re: Crear servidor Antrix para World of Warcraft actualizado en: 5 Septiembre 2007, 23:25 pm
gabiboss

Tienes que añadir todas las líneas nuevas en el query del sqlyog como he indicado
en el manual, no se para q las pongo si luego nadie las lee... ^^




Citar
alter table worldmap_info add column required_quest int(30) not null default 0 after lvl_mod_a;
alter table worldmap_info add column required_itemid int(30) not null default 0 after lvl_mod_a;


para hacer funcionar revisiones a partir de la rev941:


Citar
alter table worldmap_info add column required_quest int(30) not null default 0 after lvl_mod_a;
alter table worldmap_info add column required_itemid int(30) not null default 0 after lvl_mod_a;
CREATE TABLE `gameobject_staticspawns` (
`id` int(30) NOT NULL AUTO_INCREMENT,
`entry` int(30) NOT NULL,
`map` int(11) NOT NULL DEFAULT '0',
`x` float NOT NULL,
`y` float NOT NULL,
`z` float NOT NULL,
`facing` float NOT NULL,
`0` float NOT NULL,
`01` float NOT NULL,
`02` float NOT NULL,
`03` float NOT NULL,
`state` int(11) NOT NULL DEFAULT '0',
`flags` int(30) NOT NULL DEFAULT '0',
`faction` int(11) NOT NULL DEFAULT '0',
`scale` float NOT NULL,
`respawnNpcLink` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `creature_staticspawns` (
`id` int(30) NOT NULL AUTO_INCREMENT,
`entry` int(30) NOT NULL,
`map` int(11) NOT NULL DEFAULT '0',
`x` float NOT NULL,
`y` float NOT NULL,
`z` float NOT NULL,
`0` float NOT NULL,
`movetype` int(11) NOT NULL DEFAULT '0',
`displayid` int(11) NOT NULL,
`factionid` int(11) NOT NULL DEFAULT '0',
`flags` int(30) NOT NULL DEFAULT '0',
`bytes` int(30) NOT NULL DEFAULT '0',
`bytes2` int(30) NOT NULL DEFAULT '0',
`emote_state` int(11) NOT NULL DEFAULT '0',
`respawnNpcLink` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

A partir de la 1071:

Citar
ALTER TABLE creatureloot DROP heroicchance;
ALTER TABLE creatureloot DROP mincount;
ALTER TABLE creatureloot DROP maxcount;

ALTER TABLE fishingloot DROP heroicchance;
ALTER TABLE fishingloot DROP mincount;
ALTER TABLE fishingloot DROP maxcount;

ALTER TABLE itemloot DROP heroicchance;
ALTER TABLE itemloot DROP mincount;
ALTER TABLE itemloot DROP maxcount;

ALTER TABLE objectloot DROP heroicchance;
ALTER TABLE objectloot DROP mincount;
ALTER TABLE objectloot DROP maxcount;

A partir de la 1360:


Citar
alter table creature_proto change health minhealth int(30) unsigned not null;
alter table creature_proto add column maxhealth int(30) unsigned not null after minhealth;
update creature_proto set maxhealth=minhealth;
alter table creature_proto change level minlevel int(30) unsigned not null;
alter table creature_proto add column maxlevel int(30) unsigned not null after minlevel;
update creature_proto set maxlevel=minlevel;
alter table creature_proto add column invisibility_type int(30) unsigned not null;
alter table creature_proto add column death_state int(30) unsigned not null;
CREATE TABLE `zoneguards` (
  `zoneId` int(10) unsigned NOT NULL,
  `hordeEntry` int(10) unsigned default NULL,
  `allianceEntry` int(10) unsigned default NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
DROP TABLE `playerpets`;

CREATE TABLE `playerpets` (
  `ownerguid` bigint(20) NOT NULL default '0',
  `petnumber` int(11) NOT NULL default '0',
  `name` varchar(21) NOT NULL default '',
  `entryid` bigint(20) NOT NULL default '0',
  `data` longtext NOT NULL,
  `xp` int(11) NOT NULL default '0',
  `active` tinyint(1) NOT NULL default '0',
  `level` int(11) NOT NULL default '0',
  `happiness` int(11) NOT NULL default '0',
  `actionbar` varchar(200) NOT NULL default '',
  `happinessupdate` int(11) NOT NULL default '0',
  `summon` int(11) NOT NULL default '0',
  `autocastspell` int(11) NOT NULL default '0',
  `loyaltypts` int(11) NOT NULL default '0',
  `loyaltyupdate` int(11) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
alter table playeritems drop column guid;
alter table playeritems add column guid bigint(10) NOT NULL auto_increment primary key after ownerguid;
CREATE TABLE `banned_names` (
  `name` varchar(30) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


<Todo eso lo tienes que poner en la ventana de query en el sqlyog (arriba derecha)
y dale a execute all queries.
17  Media / Juegos y Consolas / Re: Crear servidor Antrix para World of Warcraft actualizado en: 3 Septiembre 2007, 16:38 pm
A los que tenéis dudas, usad el boton de buscar, que el 99% ya han sido resueltas,
si no es en este post, es en el 2º post.


He actualizado el post para ponerle la última revisión compilada por mí,
con extractor de mapas, extractor de dbc's, dbc's, ascent 1402 y scripts.
18  Media / Juegos y Consolas / Re: Archivos necesarios para server burning crusade v2.1.0! en: 3 Septiembre 2007, 16:01 pm
http://foro.elhacker.net/index.php/topic,170390.0.html

http://foro.elhacker.net/index.php/topic,175777.0.html
19  Media / Juegos y Consolas / Re: Crear un servidor MangOS para World of Warcraft Expansion 2.0.12 en: 2 Septiembre 2007, 18:45 pm
Que qué db necesitas? lo que necesitas tú y los demás es seguir el manual
de ascent (antrix), publicado aquí en elhacker porque el de mangos ya está desfasado.
20  Media / Juegos y Consolas / Re: Piratear PS3 en: 27 Agosto 2007, 13:31 pm
si... a ver quien es el listo q se arriesga a piratear una ps3 y que se le joda...

estoy esperando a ese momento... ^_^    :rolleyes:
 :xD

por el precio que tiene no se quien se va a arriesgar...
Páginas: 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ... 22
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines