Crear servidor Antrix para World of Warcraft actualizado

Iniciado por b01n4v3rt, 1 Julio 2007, 03:35 AM

0 Miembros y 5 Visitantes están viendo este tema.

edunator

ayudame please intale el Sql pero no se abrirlo pues solo me dice pàra modificarlo como hice cuando lo instale mandame un msn a mi msn edu_4761@hotmail.com
asi es mejor buenochau gracias..

thorekk

#1051
hola
bueno mi problema es el siguente sale al iniciar el server aca les deje la imagen



muchas gracias

Caos4ever

Alguien que me exe una mano me creado un server pero no se como conectar me con el, tengo server oficial y no se como hacer que me sale el mio!!!Tengo una cuenta y todo pero no me sale nada!!!  :(  :( :(

P.S Tengo todo perfecto con SQLyog y Antrix pero tengo proble para entrar al server :(:(:(:(!!!


GRAX POR ayuda!!! ;)

fpower

hola amigos.. excelentisima tu guia hermano, yo tenia el server listo pero me daba un error, y x malisima suerte mi disco duro se borro completamente  :-( solo tengo una preguntica, funciona para la version 2.0.12? como hago para q corra con esa version? mil gracias!

b01n4v3rt

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.

Caramelo

Buenas, b01n4v3rt haber si puedes echarme una mano pls...

Pues haber si ves la solucion a mi problema, es que cuando voi aprender riding, despues de tenerlas todas voi al vendedor de caballos y me dice que no puedo llevar la de 150 cuando si que he aprendido riding 150.

Me he fijado en la skill que al comprar riding 150 me augmenta el maximo pero no el minimo, es decir, si lo tenia a 75/75 y despues compro riding 150, se me queda en 75/150.

El problema esta en que no me incrementa el minimo, si no el maximo y se me queda en 75/150. Cuando deberia de quedarse 150/150.

Me explico? T_T

Porfa echame una mano que no veo la manera de arreglarlo.

Gracias de antemano.

-ZAP-

eso de k useis el buscador... no sabeis... no me extrasa k se pase de vosotros... con gente asi se le kitan las ganas a cualquiera de ayudar...

gabiboss

Hola buenas tardes
en primer lugar muchas gracias por la guia, en principio es muy buena, pero tengo un problemilla, y es que al entrar al juego, con la rev 1402 de antrix no hay npc's ni mobs en ningun lado, y con la rev 634 los mobs y npc son inmensos O_O, aber si podriais ayudarme
gracias desde ya
P.D: sorry si ya esta respondido pero no encontre respuesta en "buscar"  :-[

danilo361

yo estalei tuedos los arquivos portales, quests... tuedo e no consegui colocar los tiers em lo myo serber - -" yo estalo y no vejo nem uno NPC tiers, porfavore ajuda my =)

b01n4v3rt

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... ^^




Citaralter 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:


Citaralter 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:

CitarALTER 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:


Citaralter 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.