-- MySQL dump 10.9
--
-- Host: localhost    Database: sandsofw_eoh
-- ------------------------------------------------------
-- Server version	4.1.19-standard

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `blacklist`
--

DROP TABLE IF EXISTS `blacklist`;
CREATE TABLE `blacklist` (
  `id` int(3) NOT NULL auto_increment,
  `nickname` varchar(255) NOT NULL default '',
  `race` varchar(255) NOT NULL default '',
  `class` varchar(255) NOT NULL default '',
  `reason` text NOT NULL,
  `voted` int(1) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `blacklist`
--


/*!40000 ALTER TABLE `blacklist` DISABLE KEYS */;
LOCK TABLES `blacklist` WRITE;
INSERT INTO `blacklist` (`id`, `nickname`, `race`, `class`, `reason`, `voted`) VALUES (3,'Kaitnieks','Unknown','Unknown','This guy just won\'t listen in instances to others.\r\n\r\nForgot his race and class.',1),(4,'Face','Unknown','Unknown','He left the guild without a reason. So there is no reason to invite him back aswell.\r\n\r\nForgot his race and class.',1),(6,'Bakkus','Dwarf','Hunter','We are looking for people that know something about the game and more! But he didn\'t knew anything.\r\n\r\nAlso using rude emotes without doing anything wrong.\r\n\r\nHe didn\'t make his trial so he should be blacklisted.',1),(7,'Arthras','Dwarf','Druid','After merging joining with EoH constant whining about being Elite. Left after we said no',0),(8,'Borgulshanta','Gnome','Mage','terrible player, not listening, pulling in GNG, arrogant and annoying afterwards to the whole group',1),(11,'Darkyuna','Human','Mage','This guy was picking on one of our members in bg and said that we\'re a noob guild.\r\nHe was constantly cursing in raid chat.',1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `blacklist` ENABLE KEYS */;

--
-- Table structure for table `blacklist_votes`
--

DROP TABLE IF EXISTS `blacklist_votes`;
CREATE TABLE `blacklist_votes` (
  `id` int(3) NOT NULL auto_increment,
  `vote_id` int(3) NOT NULL default '0',
  `voted` char(3) NOT NULL default '',
  `username` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `blacklist_votes`
--


/*!40000 ALTER TABLE `blacklist_votes` DISABLE KEYS */;
LOCK TABLES `blacklist_votes` WRITE;
INSERT INTO `blacklist_votes` (`id`, `vote_id`, `voted`, `username`) VALUES (15,3,'yes','Necsus'),(16,4,'yes','Necsus'),(17,5,'yes','Necsus'),(18,3,'yes','Damian'),(19,6,'yes','Necsus'),(20,4,'yes','Damian'),(21,5,'yes','Damian'),(22,6,'yes','Damian'),(23,7,'yes','Kyrsten'),(24,8,'yes','Kyrsten'),(25,9,'yes','Gladiatrix'),(26,8,'yes','Damian'),(27,7,'yes','Damian'),(28,9,'no','Damian'),(29,10,'yes','Damian'),(30,10,'yes','Necsus'),(31,9,'no','Necsus'),(32,5,'yes','Eris'),(33,7,'yes','Eris'),(34,10,'yes','Eris'),(35,9,'yes','Eris'),(36,9,'yes','Kyrsten'),(37,10,'yes','Kyrsten'),(38,5,'yes','LaurelCrown'),(39,10,'no','Gladiatrix'),(40,8,'yes','Necsus'),(41,7,'yes','LaurelCrown'),(42,6,'yes','LaurelCrown'),(43,8,'yes','LaurelCrown'),(44,4,'yes','LaurelCrown'),(45,10,'yes','LaurelCrown'),(46,3,'yes','LaurelCrown'),(47,9,'yes','LaurelCrown'),(48,6,'yes','Kyrsten'),(49,4,'yes','Kyrsten'),(50,3,'yes','Kyrsten'),(51,6,'yes','Gladiatrix'),(52,11,'yes','Damian'),(53,11,'yes','Necsus'),(54,11,'yes','Gladiatrix'),(55,11,'yes','Kyrsten'),(56,11,'yes','Eris'),(57,4,'yes','Eris'),(58,3,'yes','Eris'),(59,8,'yes','Eris'),(60,7,'yes','Necsus');
UNLOCK TABLES;
/*!40000 ALTER TABLE `blacklist_votes` ENABLE KEYS */;

--
-- Table structure for table `downloads_cats`
--

DROP TABLE IF EXISTS `downloads_cats`;
CREATE TABLE `downloads_cats` (
  `id` int(3) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `downloads_cats`
--


/*!40000 ALTER TABLE `downloads_cats` DISABLE KEYS */;
LOCK TABLES `downloads_cats` WRITE;
INSERT INTO `downloads_cats` (`id`, `title`) VALUES (1,'Applications'),(7,'Patches'),(8,'WoW Addons'),(10,'Guides');
UNLOCK TABLES;
/*!40000 ALTER TABLE `downloads_cats` ENABLE KEYS */;

--
-- Table structure for table `downloads_content`
--

DROP TABLE IF EXISTS `downloads_content`;
CREATE TABLE `downloads_content` (
  `id` int(3) NOT NULL auto_increment,
  `cat_id` int(3) NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  `url` varchar(255) NOT NULL default '',
  `hits` int(3) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `downloads_content`
--


/*!40000 ALTER TABLE `downloads_content` DISABLE KEYS */;
LOCK TABLES `downloads_content` WRITE;
INSERT INTO `downloads_content` (`id`, `cat_id`, `title`, `url`, `hits`) VALUES (1,1,'Ventrilo 2.1.3','downloads/ventrilo.exe',18),(5,1,'WoW Reader','http://db.allakhazam.com/wr-setup.exe',7),(6,10,'EoH Alchemy Guide','http://members.home.nl/strackx/Eye of Horus Alchemy Guide.doc',2);
UNLOCK TABLES;
/*!40000 ALTER TABLE `downloads_content` ENABLE KEYS */;

--
-- Table structure for table `phpbb_auth_access`
--

DROP TABLE IF EXISTS `phpbb_auth_access`;
CREATE TABLE `phpbb_auth_access` (
  `group_id` mediumint(8) NOT NULL default '0',
  `forum_id` smallint(5) unsigned NOT NULL default '0',
  `auth_view` tinyint(1) NOT NULL default '0',
  `auth_read` tinyint(1) NOT NULL default '0',
  `auth_post` tinyint(1) NOT NULL default '0',
  `auth_reply` tinyint(1) NOT NULL default '0',
  `auth_edit` tinyint(1) NOT NULL default '0',
  `auth_delete` tinyint(1) NOT NULL default '0',
  `auth_sticky` tinyint(1) NOT NULL default '0',
  `auth_announce` tinyint(1) NOT NULL default '0',
  `auth_vote` tinyint(1) NOT NULL default '0',
  `auth_pollcreate` tinyint(1) NOT NULL default '0',
  `auth_attachments` tinyint(1) NOT NULL default '0',
  `auth_mod` tinyint(1) NOT NULL default '0',
  KEY `group_id` (`group_id`),
  KEY `forum_id` (`forum_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_auth_access`
--


/*!40000 ALTER TABLE `phpbb_auth_access` DISABLE KEYS */;
LOCK TABLES `phpbb_auth_access` WRITE;
INSERT INTO `phpbb_auth_access` (`group_id`, `forum_id`, `auth_view`, `auth_read`, `auth_post`, `auth_reply`, `auth_edit`, `auth_delete`, `auth_sticky`, `auth_announce`, `auth_vote`, `auth_pollcreate`, `auth_attachments`, `auth_mod`) VALUES (5,2,0,0,0,0,0,0,0,0,0,0,0,1),(5,3,0,0,0,0,0,0,0,0,0,0,0,1),(5,4,0,0,0,0,0,0,0,0,0,0,0,1),(5,6,0,0,0,0,0,0,0,0,0,0,0,1),(5,7,0,0,0,0,0,0,0,0,0,0,0,1),(5,8,0,0,0,0,0,0,0,0,0,0,0,1),(5,10,0,0,0,0,0,0,0,0,0,0,0,1),(5,11,0,0,0,0,0,0,0,0,0,0,0,1),(5,12,0,0,0,0,0,0,0,0,0,0,0,1),(5,13,0,0,0,0,0,0,0,0,0,0,0,1),(5,14,0,0,0,0,0,0,0,0,0,0,0,1),(5,15,0,0,0,0,0,0,0,0,0,0,0,1),(5,16,0,0,0,0,0,0,0,0,0,0,0,1),(5,17,0,0,0,0,0,0,0,0,0,0,0,1),(5,18,0,0,0,0,0,0,0,0,0,0,0,1),(5,19,0,0,0,0,0,0,0,0,0,0,0,1),(5,20,0,0,0,0,0,0,0,0,0,0,0,1),(5,21,0,0,0,0,0,0,0,0,0,0,0,1),(5,22,0,0,0,0,0,0,0,0,0,0,0,1),(5,23,0,0,0,0,0,0,0,0,0,0,0,1),(13,2,0,0,0,0,0,0,0,0,0,0,0,1),(13,3,0,0,0,0,0,0,0,0,0,0,0,1),(13,4,0,0,0,0,0,0,0,0,0,0,0,1),(13,6,0,0,0,0,0,0,0,0,0,0,0,1),(13,7,0,0,0,0,0,0,0,0,0,0,0,1),(13,8,0,0,0,0,0,0,0,0,0,0,0,1),(13,10,0,0,0,0,0,0,0,0,0,0,0,1),(13,11,0,0,0,0,0,0,0,0,0,0,0,1),(13,12,0,0,0,0,0,0,0,0,0,0,0,1),(13,13,0,0,0,0,0,0,0,0,0,0,0,1),(13,14,0,0,0,0,0,0,0,0,0,0,0,1),(13,15,0,0,0,0,0,0,0,0,0,0,0,1),(13,16,0,0,0,0,0,0,0,0,0,0,0,1),(13,17,0,0,0,0,0,0,0,0,0,0,0,1),(13,18,0,0,0,0,0,0,0,0,0,0,0,1),(13,19,0,0,0,0,0,0,0,0,0,0,0,1),(13,20,0,0,0,0,0,0,0,0,0,0,0,1),(13,21,0,0,0,0,0,0,0,0,0,0,0,1),(13,22,0,0,0,0,0,0,0,0,0,0,0,1),(13,23,0,0,0,0,0,0,0,0,0,0,0,1),(3,7,1,1,1,1,1,1,1,0,1,1,0,0),(3,8,1,1,1,1,1,1,1,0,1,1,0,0),(3,10,1,1,1,1,1,1,1,0,1,1,0,0),(3,11,1,1,1,1,1,1,1,0,1,1,0,0),(3,12,1,1,1,1,1,1,1,0,1,1,0,0),(3,13,1,1,1,1,1,1,1,0,1,1,0,0),(3,14,1,1,1,1,1,1,1,0,1,1,0,0),(3,15,1,1,1,1,1,1,1,0,1,1,0,0),(3,16,1,1,1,1,1,1,1,0,1,1,0,0),(3,17,1,1,1,1,1,1,1,0,1,1,0,0),(3,18,1,1,1,1,1,1,1,0,1,1,0,0),(3,19,1,1,1,1,1,1,1,0,1,1,0,0),(3,20,1,1,1,1,1,1,1,0,1,1,0,0),(3,21,1,1,1,1,1,1,1,0,1,1,0,0),(15,7,1,1,1,1,1,1,1,0,1,1,0,0),(15,8,1,1,1,1,1,1,1,0,1,1,0,0),(15,10,1,1,1,1,1,1,1,0,1,1,0,0),(15,12,1,1,1,1,1,1,1,0,1,1,0,0),(15,13,1,1,1,1,1,1,1,0,1,1,0,0),(15,14,1,1,1,1,1,1,1,0,1,1,0,0),(15,15,1,1,1,1,1,1,1,0,1,1,0,0),(15,16,1,1,1,1,1,1,1,0,1,1,0,0),(15,17,1,1,1,1,1,1,1,0,1,1,0,0),(15,18,1,1,1,1,1,1,1,0,1,1,0,0),(15,19,1,1,1,1,1,1,1,0,1,1,0,0),(15,20,1,1,1,1,1,1,1,0,1,1,0,0),(15,21,1,1,1,1,1,1,1,0,1,1,0,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_auth_access` ENABLE KEYS */;

--
-- Table structure for table `phpbb_banlist`
--

DROP TABLE IF EXISTS `phpbb_banlist`;
CREATE TABLE `phpbb_banlist` (
  `ban_id` mediumint(8) unsigned NOT NULL auto_increment,
  `ban_userid` mediumint(8) NOT NULL default '0',
  `ban_ip` varchar(8) NOT NULL default '',
  `ban_email` varchar(255) default NULL,
  PRIMARY KEY  (`ban_id`),
  KEY `ban_ip_user_id` (`ban_ip`,`ban_userid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_banlist`
--


/*!40000 ALTER TABLE `phpbb_banlist` DISABLE KEYS */;
LOCK TABLES `phpbb_banlist` WRITE;
INSERT INTO `phpbb_banlist` (`ban_id`, `ban_userid`, `ban_ip`, `ban_email`) VALUES (2,0,'','tomowen70@hotmail.com');
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_banlist` ENABLE KEYS */;

--
-- Table structure for table `phpbb_categories`
--

DROP TABLE IF EXISTS `phpbb_categories`;
CREATE TABLE `phpbb_categories` (
  `cat_id` mediumint(8) unsigned NOT NULL auto_increment,
  `cat_title` varchar(100) default NULL,
  `cat_order` mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY  (`cat_id`),
  KEY `cat_order` (`cat_order`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_categories`
--


/*!40000 ALTER TABLE `phpbb_categories` DISABLE KEYS */;
LOCK TABLES `phpbb_categories` WRITE;
INSERT INTO `phpbb_categories` (`cat_id`, `cat_title`, `cat_order`) VALUES (1,'Eye of Horus - Public Forums',10),(2,'Eye of Horus - Guild Forums',20),(3,'Eye of Horus - Class Forums',30),(4,'Eye of Horus - High Council',40);
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_categories` ENABLE KEYS */;

--
-- Table structure for table `phpbb_config`
--

DROP TABLE IF EXISTS `phpbb_config`;
CREATE TABLE `phpbb_config` (
  `config_name` varchar(255) NOT NULL default '',
  `config_value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`config_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_config`
--


/*!40000 ALTER TABLE `phpbb_config` DISABLE KEYS */;
LOCK TABLES `phpbb_config` WRITE;
INSERT INTO `phpbb_config` (`config_name`, `config_value`) VALUES ('allow_autologin','1'),('allow_avatar_local','1'),('allow_avatar_remote','1'),('allow_avatar_upload','1'),('allow_bbcode','1'),('allow_html','0'),('allow_html_tags','b,i,u,pre'),('allow_namechange','0'),('allow_sig','1'),('allow_smilies','1'),('allow_theme_create','0'),('avatar_filesize','10240'),('avatar_gallery_path','images/avatars/gallery'),('avatar_max_height','100'),('avatar_max_width','100'),('avatar_path','images/avatars'),('board_disable','0'),('board_email','noreply@eoh-guild.com'),('board_email_form','0'),('board_email_sig','Thanks, \r\n\r\nEoH officers team'),('board_startdate','1146561636'),('board_timezone','0'),('config_id','1'),('cookie_domain',''),('cookie_name','phpbb2mysql'),('cookie_path','/'),('cookie_secure','0'),('coppa_fax',''),('coppa_mail',''),('default_dateformat','D M d, Y g:i a'),('default_lang','english'),('default_style','2'),('enable_confirm','1'),('flood_interval','15'),('gzip_compress','0'),('hot_threshold','25'),('login_reset_time','30'),('max_autologin_time','0'),('max_inbox_privmsgs','50'),('max_login_attempts','5'),('max_poll_options','10'),('max_savebox_privmsgs','50'),('max_sentbox_privmsgs','25'),('max_sig_chars','255'),('override_user_style','1'),('posts_per_page','15'),('privmsg_disable','0'),('prune_enable','1'),('rand_seed','a9501a0c8aa6f7b76d2dbd98eedf82eb'),('record_online_date','1148368305'),('record_online_users','5'),('require_activation','0'),('script_path','/~sandsofw/eoh/forum/'),('search_flood_interval','15'),('sendmail_fix','0'),('server_name','alicia.neostrada.nl'),('server_port','80'),('session_length','3600'),('sitename','Eye of Horus'),('site_desc','Alliance PvE guild on Jaedenar'),('smilies_path','images/smiles'),('smtp_delivery','0'),('smtp_host',''),('smtp_password',''),('smtp_username',''),('topics_per_page','50'),('version','.0.20');
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_config` ENABLE KEYS */;

--
-- Table structure for table `phpbb_confirm`
--

DROP TABLE IF EXISTS `phpbb_confirm`;
CREATE TABLE `phpbb_confirm` (
  `confirm_id` char(32) NOT NULL default '',
  `session_id` char(32) NOT NULL default '',
  `code` char(6) NOT NULL default '',
  PRIMARY KEY  (`session_id`,`confirm_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_confirm`
--


/*!40000 ALTER TABLE `phpbb_confirm` DISABLE KEYS */;
LOCK TABLES `phpbb_confirm` WRITE;
INSERT INTO `phpbb_confirm` (`confirm_id`, `session_id`, `code`) VALUES ('0ff1850ccbb6a372263a31819978a080','3ac09c2c33125ba3b67ed401481c6536','O1FAC2');
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_confirm` ENABLE KEYS */;

--
-- Table structure for table `phpbb_disallow`
--

DROP TABLE IF EXISTS `phpbb_disallow`;
CREATE TABLE `phpbb_disallow` (
  `disallow_id` mediumint(8) unsigned NOT NULL auto_increment,
  `disallow_username` varchar(25) NOT NULL default '',
  PRIMARY KEY  (`disallow_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_disallow`
--


/*!40000 ALTER TABLE `phpbb_disallow` DISABLE KEYS */;
LOCK TABLES `phpbb_disallow` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_disallow` ENABLE KEYS */;

--
-- Table structure for table `phpbb_forum_prune`
--

DROP TABLE IF EXISTS `phpbb_forum_prune`;
CREATE TABLE `phpbb_forum_prune` (
  `prune_id` mediumint(8) unsigned NOT NULL auto_increment,
  `forum_id` smallint(5) unsigned NOT NULL default '0',
  `prune_days` smallint(5) unsigned NOT NULL default '0',
  `prune_freq` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`prune_id`),
  KEY `forum_id` (`forum_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_forum_prune`
--


/*!40000 ALTER TABLE `phpbb_forum_prune` DISABLE KEYS */;
LOCK TABLES `phpbb_forum_prune` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_forum_prune` ENABLE KEYS */;

--
-- Table structure for table `phpbb_forums`
--

DROP TABLE IF EXISTS `phpbb_forums`;
CREATE TABLE `phpbb_forums` (
  `forum_id` smallint(5) unsigned NOT NULL default '0',
  `cat_id` mediumint(8) unsigned NOT NULL default '0',
  `forum_name` varchar(150) default NULL,
  `forum_desc` text,
  `forum_status` tinyint(4) NOT NULL default '0',
  `forum_order` mediumint(8) unsigned NOT NULL default '1',
  `forum_posts` mediumint(8) unsigned NOT NULL default '0',
  `forum_topics` mediumint(8) unsigned NOT NULL default '0',
  `forum_last_post_id` mediumint(8) unsigned NOT NULL default '0',
  `prune_next` int(11) default NULL,
  `prune_enable` tinyint(1) NOT NULL default '0',
  `auth_view` tinyint(2) NOT NULL default '0',
  `auth_read` tinyint(2) NOT NULL default '0',
  `auth_post` tinyint(2) NOT NULL default '0',
  `auth_reply` tinyint(2) NOT NULL default '0',
  `auth_edit` tinyint(2) NOT NULL default '0',
  `auth_delete` tinyint(2) NOT NULL default '0',
  `auth_sticky` tinyint(2) NOT NULL default '0',
  `auth_announce` tinyint(2) NOT NULL default '0',
  `auth_vote` tinyint(2) NOT NULL default '0',
  `auth_pollcreate` tinyint(2) NOT NULL default '0',
  `auth_attachments` tinyint(2) NOT NULL default '0',
  PRIMARY KEY  (`forum_id`),
  KEY `forums_order` (`forum_order`),
  KEY `cat_id` (`cat_id`),
  KEY `forum_last_post_id` (`forum_last_post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_forums`
--


/*!40000 ALTER TABLE `phpbb_forums` DISABLE KEYS */;
LOCK TABLES `phpbb_forums` WRITE;
INSERT INTO `phpbb_forums` (`forum_id`, `cat_id`, `forum_name`, `forum_desc`, `forum_status`, `forum_order`, `forum_posts`, `forum_topics`, `forum_last_post_id`, `prune_next`, `prune_enable`, `auth_view`, `auth_read`, `auth_post`, `auth_reply`, `auth_edit`, `auth_delete`, `auth_sticky`, `auth_announce`, `auth_vote`, `auth_pollcreate`, `auth_attachments`) VALUES (2,1,'News','News about the guild and our progress.',0,10,21,3,317,NULL,0,0,0,3,1,1,1,3,3,1,1,0),(3,1,'Join Us','Want to join EoH? This can be your way in.',1,40,1,1,221,NULL,0,3,3,3,3,3,3,3,3,3,3,0),(4,1,'Rules','EoH general rules.',1,20,2,2,16,NULL,0,0,0,1,1,1,1,3,3,1,1,0),(6,1,'Contact','Contact our Guild Leader or our Officer\'s staff.',1,50,1,1,64,NULL,0,0,0,1,1,1,1,3,3,1,1,0),(7,2,'Raids','Check our upcoming raids, and sign up here.',0,10,8,1,332,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(8,2,'Tactics','How to deal with instances, bosses and other relevant things.',0,20,19,4,324,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(10,2,'The Inn','Post non WoW related things here. Have fun!',0,40,68,21,336,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(11,2,'Guildbank','What\'s in it? Check it here!',0,50,1,1,333,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(12,2,'Member Profiles','Upload your character here using an Allakhazam profile.',0,60,9,8,100,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(13,2,'DKP','Questions about DKP? Is something incorrect? Post it here.',0,70,0,0,0,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(14,3,'Warriors','Get that aggro back! What are u doing?!',0,10,0,0,0,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(15,3,'Priests','I did not get a single heal so far!',0,20,0,0,0,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(16,3,'Hunters','It\'s a wipe ... stupid hunters!',0,30,3,3,29,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(17,3,'Paladins','Getting into trouble? Just use your bubble!',0,40,0,0,0,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(18,3,'Rogues','Pull him further back so I can atleast backstab ...',0,50,13,2,335,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(19,3,'Mages','Do anything else than spamming fireballs?',0,60,0,0,0,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(20,3,'Druids','Protectors of nature ... yeah right!',0,70,9,4,195,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(21,3,'Warlocks','Spam those DoT\'s! Spam those curses!',0,80,0,0,0,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(22,4,'Discussion','Start discussions here.',0,10,16,4,327,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(23,4,'Votings','Start your votings here.',0,20,0,0,0,NULL,0,2,2,2,2,2,2,2,3,2,2,0),(24,2,'Ventrilo','Information about our Ventrilo server.',0,80,2,2,136,NULL,0,0,0,1,1,1,1,3,3,1,1,0),(25,1,'Forum Acces','Get full acces to the forum here.',0,60,1,1,334,NULL,0,0,0,1,1,1,1,3,3,1,1,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_forums` ENABLE KEYS */;

--
-- Table structure for table `phpbb_groups`
--

DROP TABLE IF EXISTS `phpbb_groups`;
CREATE TABLE `phpbb_groups` (
  `group_id` mediumint(8) NOT NULL auto_increment,
  `group_type` tinyint(4) NOT NULL default '1',
  `group_name` varchar(40) NOT NULL default '',
  `group_description` varchar(255) NOT NULL default '',
  `group_moderator` mediumint(8) NOT NULL default '0',
  `group_single_user` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`group_id`),
  KEY `group_single_user` (`group_single_user`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_groups`
--


/*!40000 ALTER TABLE `phpbb_groups` DISABLE KEYS */;
LOCK TABLES `phpbb_groups` WRITE;
INSERT INTO `phpbb_groups` (`group_id`, `group_type`, `group_name`, `group_description`, `group_moderator`, `group_single_user`) VALUES (1,1,'Anonymous','Personal User',0,1),(2,1,'Admin','Personal User',0,1),(3,1,'Members','All EoH members are listed in this group.',4,0),(5,1,'Officers','All the officers from EoH are listed here.',4,0),(6,1,'','Personal User',0,1),(7,1,'','Personal User',0,1),(8,1,'','Personal User',0,1),(9,1,'','Personal User',0,1),(10,1,'','Personal User',0,1),(11,1,'','Personal User',0,1),(12,1,'','Personal User',0,1),(13,1,'Elites','Every EoH elite is listed here.',4,0),(14,1,'','Personal User',0,1),(15,1,'Trials','All EoH trials are listed here',4,0),(16,1,'','Personal User',0,1),(17,1,'','Personal User',0,1),(19,1,'','Personal User',0,1),(20,1,'','Personal User',0,1),(23,1,'','Personal User',0,1),(24,1,'','Personal User',0,1),(25,1,'','Personal User',0,1),(26,1,'','Personal User',0,1),(27,1,'','Personal User',0,1),(28,1,'','Personal User',0,1),(35,1,'','Personal User',0,1),(37,1,'','Personal User',0,1),(39,1,'','Personal User',0,1),(41,1,'','Personal User',0,1),(42,1,'','Personal User',0,1),(43,1,'','Personal User',0,1),(44,1,'','Personal User',0,1),(45,1,'','Personal User',0,1),(46,1,'','Personal User',0,1),(47,1,'','Personal User',0,1),(48,1,'','Personal User',0,1),(49,1,'','Personal User',0,1),(50,1,'','Personal User',0,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_groups` ENABLE KEYS */;

--
-- Table structure for table `phpbb_posts`
--

DROP TABLE IF EXISTS `phpbb_posts`;
CREATE TABLE `phpbb_posts` (
  `post_id` mediumint(8) unsigned NOT NULL auto_increment,
  `topic_id` mediumint(8) unsigned NOT NULL default '0',
  `forum_id` smallint(5) unsigned NOT NULL default '0',
  `poster_id` mediumint(8) NOT NULL default '0',
  `post_time` int(11) NOT NULL default '0',
  `poster_ip` varchar(8) NOT NULL default '',
  `post_username` varchar(25) default NULL,
  `enable_bbcode` tinyint(1) NOT NULL default '1',
  `enable_html` tinyint(1) NOT NULL default '0',
  `enable_smilies` tinyint(1) NOT NULL default '1',
  `enable_sig` tinyint(1) NOT NULL default '1',
  `post_edit_time` int(11) default NULL,
  `post_edit_count` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`post_id`),
  KEY `forum_id` (`forum_id`),
  KEY `topic_id` (`topic_id`),
  KEY `poster_id` (`poster_id`),
  KEY `post_time` (`post_time`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_posts`
--


/*!40000 ALTER TABLE `phpbb_posts` DISABLE KEYS */;
LOCK TABLES `phpbb_posts` WRITE;
INSERT INTO `phpbb_posts` (`post_id`, `topic_id`, `forum_id`, `poster_id`, `post_time`, `poster_ip`, `post_username`, `enable_bbcode`, `enable_html`, `enable_smilies`, `enable_sig`, `post_edit_time`, `post_edit_count`) VALUES (11,7,12,8,1147262223,'5418a883','',1,0,1,1,NULL,0),(15,11,4,4,1147353012,'507f648e','',1,0,1,1,NULL,0),(16,12,4,4,1147353389,'507f648e','',1,0,1,1,NULL,0),(19,15,10,2,1147359039,'541fe256','',1,0,1,0,NULL,0),(20,16,12,7,1147372446,'54188ba0','',1,0,1,0,NULL,0),(21,15,10,7,1147372865,'54188ba0','',1,0,1,1,NULL,0),(22,17,10,7,1147373064,'54188ba0','',1,0,1,1,NULL,0),(23,18,2,4,1147419036,'5418bd53','',1,0,1,1,NULL,0),(24,18,2,2,1147439286,'541fe256','',1,0,1,0,NULL,0),(25,17,10,2,1147439489,'541fe256','',1,0,1,0,NULL,0),(27,20,16,2,1147439850,'541fe256','',1,0,1,0,NULL,0),(28,21,16,2,1147440370,'541fe256','',1,0,1,0,NULL,0),(29,22,16,2,1147440601,'541fe256','',1,0,1,0,NULL,0),(30,18,2,7,1147448361,'54188ba0','',1,0,1,1,NULL,0),(31,17,10,8,1147454245,'5418a883','',1,0,1,1,NULL,0),(32,18,2,5,1147454919,'503dc6a3','',1,0,1,0,NULL,0),(34,24,20,8,1147468454,'5418a883','',1,0,1,1,NULL,0),(37,18,2,12,1147474793,'565179ee','',1,0,1,0,NULL,0),(38,25,18,12,1147474964,'565179ee','',1,0,1,0,NULL,0),(39,24,20,2,1147511691,'541fe256','',1,0,1,0,NULL,0),(40,26,10,2,1147517113,'541fe256','',1,0,1,0,NULL,0),(41,26,10,8,1147518533,'5418a883','',1,0,1,1,NULL,0),(42,26,10,7,1147519699,'54188ba0','',1,0,1,1,NULL,0),(43,24,20,7,1147524427,'54188ba0','',1,0,1,1,NULL,0),(47,28,10,7,1147525718,'54188ba0','',1,0,1,1,NULL,0),(48,26,10,2,1147528973,'541fe256','',1,0,1,0,NULL,0),(50,17,10,4,1147630729,'5418bd53','',1,0,1,1,NULL,0),(51,26,10,4,1147630860,'5418bd53','',1,0,1,1,NULL,0),(54,26,10,12,1147637885,'565179ee','',1,0,1,0,NULL,0),(55,18,2,-1,1147673292,'541f9437','Lamasi',1,0,1,0,NULL,0),(56,18,2,2,1147677309,'507f648e','',1,0,1,0,NULL,0),(57,18,2,10,1147685840,'507f648e','',1,0,1,0,NULL,0),(58,18,2,9,1147686062,'507f648e','',1,0,1,0,NULL,0),(59,18,2,2,1147686880,'507f648e','',1,0,1,0,NULL,0),(61,26,10,2,1147687023,'507f648e','',1,0,1,0,NULL,0),(63,18,2,10,1147687642,'507f648e','',1,0,1,0,NULL,0),(64,31,6,4,1147687794,'507f648e','',1,0,1,1,NULL,0),(67,34,24,5,1147688694,'507f648e','',1,0,1,0,NULL,0),(68,35,12,11,1147714243,'5418a9aa','',1,0,1,0,NULL,0),(69,36,10,4,1147725975,'5418bd53','',1,0,1,1,NULL,0),(70,37,12,4,1147726209,'5418bd53','',1,0,1,1,NULL,0),(71,15,10,6,1147764137,'d4eecb92','',1,0,1,0,NULL,0),(72,38,12,12,1147868673,'503dc6a3','',1,0,1,0,NULL,0),(73,39,12,2,1147884684,'541fe256','',1,0,1,0,NULL,0),(75,41,12,9,1147902996,'5418a6d8','',1,0,1,0,NULL,0),(77,42,10,7,1148032386,'54188ba0','',1,0,1,1,NULL,0),(78,43,10,7,1148034668,'54188ba0','',1,0,1,1,NULL,0),(79,44,10,12,1148040545,'503dc6a3','',1,0,1,0,NULL,0),(89,49,2,4,1148200914,'5418bd53','',1,0,1,1,NULL,0),(91,25,18,20,1148237321,'568087b8','',1,0,1,0,NULL,0),(92,25,18,8,1148244076,'5418a883','',1,0,1,1,NULL,0),(93,18,2,-1,1148246798,'585bad1e','lolocaust',1,0,1,0,NULL,0),(96,25,18,4,1148281376,'507f648e','',1,0,1,1,NULL,0),(97,44,10,2,1148286149,'507f648e','',1,0,1,0,NULL,0),(98,42,10,2,1148286234,'507f648e','',1,0,1,0,NULL,0),(99,41,12,2,1148286387,'507f648e','',1,0,1,0,NULL,0),(100,50,12,10,1148286881,'507f648e','',1,0,1,0,NULL,0),(101,51,8,4,1148314907,'5418bd53','',1,0,1,1,NULL,0),(102,44,10,4,1148315065,'5418bd53','',1,0,1,1,NULL,0),(103,44,10,12,1148324992,'565179ee','',1,0,1,0,NULL,0),(105,53,10,7,1148387818,'54188ba0','',1,0,1,1,NULL,0),(106,53,10,12,1148389690,'503dc6a3','',1,0,1,0,NULL,0),(107,53,10,2,1148662112,'541fe256','',1,0,1,1,NULL,0),(108,54,10,8,1148832592,'5418a883','',1,0,1,1,NULL,0),(111,56,10,7,1148917761,'54188ba0','',1,0,1,1,NULL,0),(112,18,2,-1,1148928237,'541810eb','Lamasi',1,0,1,0,NULL,0),(113,56,10,2,1148933451,'541fe256','',1,0,1,0,NULL,0),(114,54,10,12,1148992622,'503dc6a3','',1,0,1,0,NULL,0),(124,44,10,21,1149153282,'541f842b','',1,0,1,0,NULL,0),(125,44,10,2,1149153992,'507f648e','',1,0,1,0,NULL,0),(136,64,24,7,1149156322,'507f648e','',1,0,1,1,NULL,0),(141,54,10,11,1149194715,'5418a9aa','',1,0,1,0,NULL,0),(147,66,20,11,1149238447,'5418a9aa','',1,0,1,0,NULL,0),(148,66,20,8,1149250446,'5418a883','',1,0,1,1,NULL,0),(151,67,10,5,1149253572,'503dc6a3','',1,0,1,0,NULL,0),(157,66,20,7,1149273795,'54188ba0','',1,0,1,1,NULL,0),(158,68,20,7,1149273982,'54188ba0','',1,0,1,1,NULL,0),(159,67,10,-1,1149275932,'541810eb','Lamasi',1,0,1,0,NULL,0),(160,69,8,8,1149341743,'5418a883','',1,0,1,1,NULL,0),(183,69,8,8,1149619517,'5418a883','',1,0,1,1,NULL,0),(184,69,8,2,1149666489,'507f648e','',1,0,1,0,NULL,0),(185,69,8,7,1149673340,'d52232fe','',1,0,1,1,NULL,0),(190,18,2,-1,1149679133,'5418fbf2','Cervanta',1,0,1,1,NULL,0),(192,25,18,-1,1149687719,'5418fbf1','Cervanta',1,0,1,1,NULL,0),(193,76,20,-1,1149719012,'5418fbf1','Cervanta',1,0,1,1,NULL,0),(195,68,20,8,1149754268,'507f648e','',1,0,1,1,NULL,0),(196,69,8,7,1149759757,'507f648e','',1,0,1,1,NULL,0),(197,69,8,2,1149762881,'507f648e','',1,0,1,0,NULL,0),(198,67,10,2,1149762919,'507f648e','',1,0,1,0,NULL,0),(202,67,10,6,1150062765,'541831bf','',1,0,1,0,NULL,0),(205,80,10,5,1150238935,'541ff215','',1,0,1,0,NULL,0),(206,80,10,7,1150239595,'54188ba0','',1,0,1,1,NULL,0),(207,80,10,8,1150278452,'5418a883','',1,0,1,1,NULL,0),(208,80,10,6,1150358749,'d4eecb92','',1,0,1,0,NULL,0),(221,84,3,5,1150758320,'541ff215','',1,0,1,0,NULL,0),(224,85,10,12,1150800996,'503dc6a3','',1,0,1,0,NULL,0),(225,85,10,6,1150805432,'9130b9a7','',1,0,1,0,NULL,0),(226,86,8,6,1150806407,'9130b9a7','',1,0,0,0,1150819280,2),(227,86,8,6,1150808162,'9130b9a7','',1,0,1,0,NULL,0),(228,87,22,6,1150809962,'9130b9a7','',1,0,1,0,NULL,0),(230,89,2,4,1150820759,'5418bd53','',1,0,1,1,NULL,0),(231,86,8,4,1150820929,'5418bd53','',1,0,1,1,NULL,0),(232,85,10,4,1150821049,'5418bd53','',1,0,1,1,NULL,0),(235,87,22,5,1150846237,'541ff215','',1,0,1,0,NULL,0),(236,92,8,7,1150881055,'54188ba0','',1,0,1,1,NULL,0),(237,85,10,8,1150885545,'5418a883','',1,0,1,1,NULL,0),(239,92,8,6,1150890309,'541831bf','',1,0,1,0,NULL,0),(240,92,8,4,1150892282,'5418bd53','',1,0,1,1,NULL,0),(241,92,8,8,1150893427,'5418a883','',1,0,1,1,NULL,0),(243,94,10,5,1150901283,'541ff215','',1,0,1,0,NULL,0),(244,94,10,7,1150901512,'54188ba0','',1,0,1,1,NULL,0),(245,94,10,6,1150922146,'541831bf','',1,0,1,0,NULL,0),(246,92,8,6,1150972184,'9130b9a7','',1,0,1,0,NULL,0),(247,94,10,5,1150975142,'541ff215','',1,0,1,0,NULL,0),(251,97,10,24,1151401801,'568feeb6','',1,0,1,0,NULL,0),(252,97,10,4,1151511506,'5418bd53','',1,0,1,1,NULL,0),(253,97,10,6,1151528358,'541831bf','',1,0,1,0,NULL,0),(257,100,18,8,1151920173,'5418a883','',1,0,1,1,NULL,0),(259,100,18,20,1152003628,'c29f08eb','',1,0,1,0,NULL,0),(263,100,18,4,1152213223,'541894e9','',1,0,1,1,NULL,0),(265,100,18,24,1152264511,'568feeb6','',1,0,1,0,NULL,0),(266,102,10,5,1152273583,'541ff215','',1,0,1,0,NULL,0),(267,102,10,2,1152293937,'541fe256','',1,0,1,0,NULL,0),(268,102,10,8,1152297614,'5418a883','',1,0,1,1,NULL,0),(269,102,10,6,1152466641,'541831bf','',1,0,1,0,NULL,0),(271,104,10,20,1152538724,'c29f08eb','',1,0,1,0,NULL,0),(274,106,7,30,1152616888,'d499fa7b','',1,0,1,0,NULL,0),(275,104,10,7,1152620650,'54188ba0','',1,0,1,1,NULL,0),(278,69,8,30,1152623875,'d499fa7b','',1,0,1,0,NULL,0),(279,106,7,8,1152630402,'5418a883','',1,0,1,1,NULL,0),(280,106,7,4,1152648468,'541894e9','',1,0,1,1,NULL,0),(281,106,7,8,1152651532,'5418a883','',1,0,1,1,NULL,0),(283,108,10,8,1152651685,'5418a883','',1,0,1,1,NULL,0),(284,108,10,24,1152660146,'519ed7a3','',1,0,1,0,NULL,0),(285,106,7,30,1152685542,'d499fa7b','',1,0,1,0,NULL,0),(286,108,10,8,1152698550,'5418a883','',1,0,1,1,NULL,0),(287,109,22,4,1152817781,'541894e9','',1,0,1,1,NULL,0),(288,100,18,24,1152876647,'56880708','',1,0,1,0,NULL,0),(289,100,18,24,1152876680,'56880708','',1,0,1,0,NULL,0),(290,100,18,8,1152955614,'5418a883','',1,0,1,1,NULL,0),(298,94,10,8,1153390471,'5418a883','',1,0,1,1,NULL,0),(299,18,2,40,1153488492,'5374ae3d','',1,0,1,0,NULL,0),(300,18,2,41,1153488540,'d4ba888d','',1,0,1,0,NULL,0),(301,18,2,8,1153502424,'5418a883','',1,0,1,1,NULL,0),(303,112,10,8,1153515411,'5418a883','',1,0,1,1,NULL,0),(304,102,10,5,1153570683,'541ff215','',1,0,1,0,NULL,0),(308,109,22,5,1153570976,'541ff215','',1,0,1,0,NULL,0),(309,113,22,5,1153594674,'541ff215','',1,0,1,0,NULL,0),(310,113,22,6,1153657000,'541831bf','',1,0,1,0,NULL,0),(311,112,10,4,1153683962,'541894e9','',1,0,1,1,NULL,0),(312,113,22,4,1153684130,'541894e9','',1,0,1,1,NULL,0),(313,114,22,5,1153692899,'541ff215','',1,0,1,0,NULL,0),(314,114,22,7,1153693666,'54188ba0','',1,0,1,1,NULL,0),(315,113,22,7,1153693708,'54188ba0','',1,0,1,1,NULL,0),(316,18,2,42,1153700791,'53f84ec3','',1,0,1,0,NULL,0),(317,18,2,5,1153741983,'541ff215','',1,0,1,0,NULL,0),(318,109,22,4,1153757989,'541894e9','',1,0,1,1,NULL,0),(319,109,22,8,1153758687,'5456a070','',1,0,1,1,NULL,0),(320,106,7,41,1153759036,'d4ba888d','',1,0,1,0,NULL,0),(321,109,22,4,1153759428,'541894e9','',1,0,1,1,NULL,0),(322,51,8,41,1153759432,'d4ba888d','',1,0,1,0,NULL,0),(323,69,8,41,1153759936,'d4ba888d','',1,0,1,0,NULL,0),(324,92,8,41,1153760015,'d4ba888d','',1,0,1,0,NULL,0),(325,114,22,4,1153768065,'541894e9','',1,0,1,1,NULL,0),(326,114,22,5,1153771071,'541ff215','',1,0,1,0,NULL,0),(327,114,22,4,1153777249,'541894e9','',1,0,1,1,NULL,0),(328,104,10,20,1153828325,'c29f08eb','',1,0,1,0,NULL,0),(329,108,10,20,1153834892,'c29f08eb','',1,0,1,0,NULL,0),(330,106,7,30,1153835009,'d499fa7b','',1,0,1,0,NULL,0),(332,106,7,5,1153835540,'503dc6a3','',1,0,1,0,NULL,0),(333,115,11,5,1154035032,'541ff215','',1,0,1,0,NULL,0),(334,116,25,5,1154109239,'503dc6a3','',1,0,1,0,NULL,0),(335,100,18,42,1154140194,'53f84ec3','',1,0,1,0,NULL,0),(336,117,10,20,1154251700,'51998d99','',1,0,1,0,NULL,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_posts` ENABLE KEYS */;

--
-- Table structure for table `phpbb_posts_text`
--

DROP TABLE IF EXISTS `phpbb_posts_text`;
CREATE TABLE `phpbb_posts_text` (
  `post_id` mediumint(8) unsigned NOT NULL default '0',
  `bbcode_uid` varchar(10) NOT NULL default '',
  `post_subject` varchar(60) default NULL,
  `post_text` text,
  PRIMARY KEY  (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_posts_text`
--


/*!40000 ALTER TABLE `phpbb_posts_text` DISABLE KEYS */;
LOCK TABLES `phpbb_posts_text` WRITE;
INSERT INTO `phpbb_posts_text` (`post_id`, `bbcode_uid`, `post_subject`, `post_text`) VALUES (11,'ffa75b3e56','Profile: Eris','[url]http://wow.allakhazam.com/profile.html?1220743[/url]'),(15,'9e0de0173a','EoH - Handbook for Trials','This sheet sums up the most important matters.\r\n\r\nAs a trial member you:\r\n\r\n1. Do not get any loot that requires DKP. When all regular members pass, class leaders will further decide.\r\n2. Do not get any crafted items that require DKP.\r\n3. Do not have priority to guild raids.\r\n4. Do not have access to the guild bank.\r\n5. Do not have voting rights for other players’ trials.\r\n\r\n6. Can gain and store DKP.\r\n7. Can make suggestions or comments on the forums. You’re being taken just as serious as an official member.\r\n8. Can turn to your respective classleader with any questions regarding you class.\r\n\r\n9. Are required to be active in the guild and on the forum during your trial period (but not overly present or annoying).\r\n10. Are required to check the forum before asking in guildchat. You will find a lot of responses on the forum.\r\n11. Are required to check up on raids frequently and see when there may be one available to you.\r\n12. Are required to say you’re going to be AFK in a way guild members can see it, when leaving for a longer time. Always explain to an officer why you need to be AFK.\r\n\r\n\r\nThis is your trial period, use your 2 weeks wisely. It is of your interest to convince the guild members you can contribute to the guild.\r\n\r\nRemember: You’re always being evaluated. After your trial weeks, if you have followed the guild rules, have showed commitment to the guild and have gotten along well with the guild members, you will be accepted as an official member.'),(16,'c802f586b1','EoH - General rules','These are the general rules. They are to be followed at all time during your stay in Eye of Horus.\r\n\r\nFailure to comply with these rules will result in one (1) official warning which will be given by the guildmaster or one of the elites/officers.\r\nThere will be no second warning for breaking a rule twice, you will be removed from the guild.\r\n\r\n\r\n[size=18:c802f586b1][b:c802f586b1]General rules[/b:c802f586b1][/size:c802f586b1]\r\n(in order of importance)\r\n\r\n1. Obey the officers at all time.\r\n[list:c802f586b1]• They aren’t called officers for nothing. In this guild they are the law.   You will obey or accept the consequences.[/list:u:c802f586b1]\r\n\r\n2. Be honest.\r\n[list:c802f586b1]•	Everybody hates a Ninja.\r\n• Enchanting is ‘greed’.[/list:u:c802f586b1]\r\n\r\n3. Be polite.\r\n[list:c802f586b1]•	There’s no need to shout or fight. If problems arise speak to an officer or your classleader.[/list:u:c802f586b1]\r\n\r\n4. Be helpful.\r\n[list:c802f586b1]•	Everybody needs a little help with a quest somtime. At some point in the game you do/will require help too, keep that in mind.\r\n• It doesn\'t hurt to send an item to an enchanter every now and then, or  materials you dont need to a member who does.[/list:u:c802f586b1]\r\n\r\n5. Contribute to the guild bank.\r\n[list:c802f586b1]• All members are required to help the guild, therefore contribute to the guild bank. Speak to the officers about what materials are useful or required.[/list:u:c802f586b1]\r\n\r\n6. Maintain Ventrilo silence during raids.\r\n[list:c802f586b1]•	Ventrilo is used by raidleaders for orders, tactics and hints. It is absolutely forbidden to speak when silence has been announced by the raidleader(s).[/list:u:c802f586b1]\r\n\r\n7. Do not spam the guildchat or the forums.\r\n[list:c802f586b1]•	There’s nothing worse than a messy forum. Place messages where they belong and don’t use the Eye of Horus’ forums as your personal blog. \r\n• Posters placing porn or otherwise illegal material will be kicked, blocked and blacklisted without warning.\r\n• Guildchat is considered a ‘serious topic’ channel. No trash-talk is allowed, you can make your own private channel for that.[/list:u:c802f586b1]\r\n\r\n8. No ‘alts’.\r\n[list:c802f586b1]•	At this moment alternative characters are not allowed in the guild. You are expected to play with your main character at all time.[/list:u:c802f586b1]\r\n\r\n9. Membership is conditional.\r\n[list:c802f586b1]• Eye of Horus reserves the right to remove anyone from the guild at all time, wether announced or not. By no means do you earn any right to loot, part of loot or any amount of ingame currency for spending time in this guild.[/list:u:c802f586b1]'),(19,'95fd424601','Warning playing World of Warcraft!','[img:95fd424601]http://chelsea.wesowe-is.nl/~sandsofw/eoh/extras/warning-wow.gif[/img:95fd424601]'),(20,'c30a3d24c4','Profile: Damian','[url]http://wow.allakhazam.com/profile.html?1305549[/url]'),(21,'7d19dff822','','lol,why ?\r\nBecause you get a second social life ?  :P'),(22,'e9bc69b767','The new LOTR movie !!!','[url]http://media.putfile.com/Apres_ski_hut_Mastermoviesnl[/url]\r\n\r\ndutch version'),(23,'3c8b4019ee','Forum','The forum is ready, and it looks HOT! Necsus is ON FIRE! /bow'),(24,'3cb0bb3340','','*cheers* :lol:'),(25,'e608353918','','whahahaha\r\n\r\nNice one :D It looks wierd but cool :P'),(27,'d98516e911','Hunter macro\'s','These macro\'s have been posted in the official WoW forums.\r\n\r\n[code:1:d98516e911]\r\nThe &quot;I&quot; means the bags index starting to count from 0 so 0 will be our backpack and 1 will be our second slot, &quot;N&quot; means the slot position, count from the top left corner to the right bottom corner, so if we got 8 slot bags, we will count it like this.\r\n\r\n1 2 3 4\r\n5 6 7 8\r\n\r\nActionID = Actionbar Slot Identifier &#40;Index/Position&#41;\r\n\r\nPage Bar No. 1&#58;  1  2  3  4  5  6  7  8  9 10 11 12 \r\n\r\nPage Bar No. 2&#58; 13 14 15 16 17 18 19 20 21 22 23 24 \r\n\r\nPage Bar No. 3&#58; 25 26 27 28 29 30 31 32 33 34 35 36 \r\n\r\nPage Bar No. 4&#58; 37 38 39 40 41 42 43 44 45 46 47 48 \r\n\r\nPage Bar No. 5&#58; 49 50 51 52 53 54 55 56 57 58 59 60 \r\n\r\nPage Bar No. 6&#58; 61 62 63 64 65 66 67 68 69 70 71 72\r\n\r\n\r\n\r\n&#91;b&#93;&#91;u&#93;ASPECTS&#91;/u&#93;&#91;/b&#93;\r\n\r\n- &#40;Z&#41; Monkey swap if not active\r\n/script if&#40;isMonkActive&#40;&quot;Player&quot;&#41;&#41; then CastSpellByName&#40;&quot;Aspect of the Cheetah&quot;&#41;; else CastSpellByName&#40;&quot;Aspect of the Monkey&quot;&#41;; end\r\n\r\n- &#40;Z&#41; Hawk swap if not active\r\n/script if&#40;isHawkActive&#40;&quot;Player&quot;&#41;&#41; then CastSpellByName&#40;&quot;Aspect of the Cheetah&quot;&#41;; else CastSpellByName&#40;&quot;Aspect of the Hawk&quot;&#41;; end\r\n\r\nRANGE COMBAT\r\n\r\n- &#40;Z&#41; If you Wing Clip the target cast Serpent Sting instead of Concussive Shot else cast Concussive Shot\r\n/script if&#40;not isClipped&#40;&quot;target&quot;&#41;&#41; then CastSpellByName&#40;&quot;Concussive Shot&quot;&#41;; else CastSpellByName&#40;&quot;Serpent Sting&quot;&#41;; end\r\n\r\n- &#40;Z&#41; If you Wing Clip the target cast Arcane Shot instead of Concussive Shot else cast Concussive Shot\r\n/script if&#40;not isClipped&#40;&quot;target&quot;&#41;&#41; then CastSpellByName&#40;&quot;Concussive Shot&quot;&#41;; else CastSpellByName&#40;&quot;Arcane Shot&quot;&#41;; end\r\n\r\n- &#40;Z&#41; If AotH is currently not activate cast it first, if it was activated cast Aimed Shot\r\n/script if&#40;isHawkActive&#40;&#41;&#41; then CastSpellByName&#40;&quot;Aimed Shot&quot;&#41;; else CastSpellByName&#40;&quot;Aspect of the Hawk&quot;&#41;; end\r\n\r\n- Sawping range weapons\r\n/script PickupContainerItem&#40;I, N&#41;;\r\n/script PickupInventoryItem&#40;18&#41;;\r\n\r\nI / N, Look for the right number identifier at the top of this post\r\n\r\n- If the unit is not using mana cast Scorpid Sting instead of Viper Sting else cast Viper Sting\r\n/script if&#40;UnitPowerType&#40;&quot;target&quot;&#41;==0&#41; then CastSpellByName&#40;&quot;Viper Sting&quot;&#41;; else CastSpellByName&#40;&quot;Scorpid Sting&quot;&#41;; end\r\n\r\n- Cast Hunter\'s Mark, Send the pet to attack and finally autoshot the target\r\n/cast Auto Shot\r\n/cast Hunter\'s Mark\r\n/script PetAttack&#40;&#41;\r\n\r\n- &#40;Z&#41; If Hunter\'s Mark wasn\'t casted, cast it first else cast Arcane Shot and finally send the pet to attack\r\n/script if&#40;Zorlen_checkDebuff&#40;&quot;SniperShot&quot;&#41;&#41; then CastSpellByName&#40;&quot;Arcane Shot&quot;&#41;; else CastSpellByName&#40;&quot;Hunter\'s Mark&quot;&#41;; end\r\n/script PetAttack&#40;&#41;\r\n\r\n- &#40;Z&#41; If Hunter\'s Mark wasn\'t casted, cast it first else cast Concussive Shot and finally send the pet to attack\r\n/script if&#40;Zorlen_checkDebuff&#40;&quot;SniperShot&quot;&#41;&#41; then CastSpellByName&#40;&quot;Concussive Shot&quot;&#41;; else CastSpellByName&#40;&quot;Hunter\'s Mark&quot;&#41;; end\r\n/script PetAttack&#40;&#41;\r\n\r\n- &#40;Z&#41; If the target got mana and Viper Sting wasn\'t applied cast Viper Sting, if the target got no mana use Scorpid Sting and finally cast Scatter Shot\r\n/script if&#40;not Zorlen_checkDebuff&#40;&quot;AimedShot&quot;&#41; and UnitPowerType&#40;&quot;target&quot;&#41;==0&#41; then CastSpellByName&#40;&quot;Viper Sting&quot;&#41;; else CastSpellByName&#40;&quot;Scorpid Sting&quot;&#41;; end\r\n/script TargetLastEnemy&#40;&#41;\r\n/script CastSpellByName&#40;&quot;Scatter Shot&quot;&#41;\r\n\r\n- Agrro\r\n/script CastSpellByName&#40;&quot;Concussive Shot&quot;&#41;\r\n/script CastSpellByName&#40;&quot;Scorpid Sting&quot;&#41;\r\n/script CastSpellByName&#40;&quot;Distracting Shot&quot;&#41;\r\n\r\n- Check what is your currently equipped range weapon, change it to your alternate and cast Aimed Shot\r\n/script i=&quot;Hurricane&quot;;local _,_,n = string.find&#40;GetInventoryItemLink&#40;&quot;player&quot;,18&#41;, &quot;^.*%&#91;&#40;.*&#41;%&#93;.*$&quot;&#41;;if&#40;n == i&#41; then PickupContainerItem&#40;I,N&#41;; PickupInventoryItem&#40;18&#41;; CastSpellByName&#40;&quot;Aimed Shot&quot;&#41;; end\r\n\r\nChange Hurricane to your regular range weapon you use mostly.\r\n\r\nI / N, Look for the right number identifier at the top of this post\r\n\r\n- Check what is your currently equipped range weapon, change it to your regular one and cast Multi-Shot\r\n/script i=&quot;Dwarven Hand Cannon&quot;;local _,_,n = string.find&#40;GetInventoryItemLink&#40;&quot;player&quot;,18&#41;, &quot;^.*%&#91;&#40;.*&#41;%&#93;.*$&quot;&#41;;if&#40;n == i&#41; then PickupContainerItem&#40;I,N&#41;; PickupInventoryItem&#40;18&#41;; CastSpellByName&#40;&quot;Multi-Shot&quot;&#41;; end\r\n\r\nThese will work only if the right weapons name were equipped\r\n\r\nI / N, Look for the right number identifier at the top of this post\r\n\r\nIf you want same macro to change the range weapons unconditionally, replace the first macro with this one below\r\n\r\n- Change range weapons unconditionally and once your alternate range weapon equipped it will cast Amied Shot\r\n/script PickupContainerItem&#40;I, N&#41;; PickupInventoryItem&#40;18&#41;;\r\n/script i=&quot;Dwarven Hand Cannon&quot;;local _,_,n = string.find&#40;GetInventoryItemLink&#40;&quot;player&quot;,18&#41;, &quot;^.*%&#91;&#40;.*&#41;%&#93;.*$&quot;&#41;;if&#40;n == i&#41; then CastSpellByName&#40;&quot;Aimed Shot&quot;&#41;; end\r\n\r\nChange Dwarven Hand Cannon to your alternate range weapon you use for special occasions.\r\n\r\nI / N, Look for the right number identifier at the top of this post\r\n\r\n- &#40;Z&#41; if AotH is not active cast it and change to your preferred action bar page\r\n/script if&#40;not isHawkActive&#40;&quot;Player&quot;&#41;&#41; then CastSpellByName&#40;&quot;Aspect of the Hawk&quot;&#41;; end\r\n/script CURRENT_ACTIONBAR_PAGE = J;\r\n/script ChangeActionBarPage&#40;&#41;;\r\n\r\nChange J to the bar number you whish to move right after casting the aspect\r\n\r\n- If Arcane Shot is on cooldown cast Auto Shot\r\n/script _,d = GetActionCooldown&#40;ActionID&#41;; if&#40;d == 0&#41; then CastSpellByName&#40;&quot;Arcane Shot&quot;&#41;; else CastSpellByName&#40;&quot;Auto Shot&quot;&#41;; end\r\n\r\nReplace ActionID with the index &#40;position&#41; Arcane Shot found in your Action Bar\r\n\r\nActionID, Look for the right number identifier for each action bar page at the top of this post\r\n\r\n- Casting Concussive Shot shot if the action is in range otherwise we are close enough so cast Scatter Shot\r\n/script s = IsActionInRange&#40;ActionID1&#41;; c = IsActionInRange&#40;ActionID2&#41;; if&#40;s == 1&#41; then CastSpellByName&#40;&quot;Concussive Shot&quot;&#41;; else if&#40;c == 1&#41; then CastSpellByName&#40;&quot;Scatter Shot&quot;&#41;; end; end\r\n\r\nReplace ActionID1 with the index &#40;position&#41; Concussive Shot found in your Action Bar\r\nReplace ActionID2 with the index &#40;position&#41; Scatter Shot found in your Action Bar\r\n\r\nActionID, Look for the right number identifier for each action bar page at the top of this post\r\n\r\n\r\n\r\n\r\n\r\n&#91;b&#93;&#91;u&#93;MELEE COMBAT&#91;/u&#93;&#91;/b&#93;\r\n\r\n- &#40;Z&#41; Simple melee spam &#40;Taking Less Mana&#41;\r\n/script if&#40;not isClipped&#40;&quot;target&quot;&#41;&#41; then CastSpellByName&#40;&quot;Wing Clip&quot;&#41;; else CastSpellByName&#40;&quot;Raptor Strike&quot;&#41;; end\r\n\r\n- &#40;Z&#41; Enhanced melee spam &#40;Mana Drainer&#41;\r\n/script if&#40;GetActionCooldown&#40;ActionID&#41;&lt;1&#41; then CastSpellByName&#40;&quot;Raptor Strike&quot;&#41;; else CastSpellByName&#40;&quot;Wing Clip&quot;&#41;; end\r\n/script if&#40;not isClipped&#40;&quot;target&quot;&#41;&#41; then CastSpellByName&#40;&quot;Wing Clip&quot;&#41;; end\r\n\r\nActionID, Look for the right number identifier for each action bar page at the top of this post\r\n\r\n- &#40;Z&#41; If AotM is currently not activate cast it first, if it was activated cast Wing Clip\r\n/script if&#40;isMonkActive&#40;&quot;Player&quot;&#41;&#41; then CastSpellByName&#40;&quot;Wing Clip&quot;&#41;; else CastSpellByName&#40;&quot;Aspect of the Monkey&quot;&#41;; end\r\n\r\n- &#40;Z&#41; If AotM is currently not activate cast it first, if it was activated cast Raptor Strike\r\n/script if&#40;isMonkActive&#40;&quot;Player&quot;&#41;&#41; then CastSpellByName&#40;&quot;Raptor Strike&quot;&#41;; else CastSpellByName&#40;&quot;Aspect of the Monkey&quot;&#41;; end\r\n\r\n- Changing the weapon style from DW to 2H and backward\r\n/script if&#40;not GetInventoryItemLink&#40;&quot;player&quot;,17&#41;&#41;then PickupContainerItem&#40;I,N&#41;PickupInventoryItem&#40;16&#41;PickupContainerItem&#40;I,N&#41;PickupInventoryItem&#40;17&#41;else PickupInventoryItem&#40;17&#41;PickupContainerItem&#40;I,N&#41;PickupInventoryItem&#40;16&#41;PickupContainerItem&#40;I,N&#41;end\r\n\r\nI / N, Look for the right number identifier at the top of this post\r\n\r\nExample&#58;\r\n&#40;2,7&#41; Main-Hand replaced with 2H weapon\r\n&#40;2,11&#41; Off-Hand get back to its previous position\r\n/script if&#40;not GetInventoryItemLink&#40;&quot;player&quot;,17&#41;&#41;then PickupContainerItem&#40;2,7&#41;PickupInventoryItem&#40;16&#41;PickupContainerItem&#40;2,11&#41;PickupInventoryItem&#40;17&#41;else PickupInventoryItem&#40;17&#41;PickupContainerItem&#40;2,11&#41;PickupInventoryItem&#40;16&#41;PickupContainerItem&#40;2,7&#41;end\r\n\r\n- Change between DW to 2H and cast raptor strike\r\n/script if&#40;not GetInventoryItemLink&#40;&quot;player&quot;,17&#41;&#41; then PickupContainerItem&#40;I,N&#41;;PickupInventoryItem&#40;16&#41;;PickupContainerItem&#40;I,N&#41;;PickupInventoryItem&#40;17&#41; else PickupInventoryItem&#40;16&#41;;PickupContainerItem&#40;I,N&#41;;CastSpellByName&#40;&quot;Raptor Strike&quot;&#41;; end\r\n\r\nI / N, Look for the right number identifier at the top of this post\r\n\r\n- &#40;Z&#41; Casting Wing Clip only if the target wasn\'t affected from it yet, finally prevent the pet from attacking and cast Scatter Shot\r\n/script if&#40;not isClipped&#40;&quot;target&quot;&#41;&#41; then CastSpellByName&#40;&quot;Wing Clip&quot;&#41;; else CastSpellByName&#40;&quot;Scatter Shot&quot;&#41; end;\r\n\r\n- &#40;Z&#41; if AotM is not active cast it and change to your preferred action bar page\r\n/script if&#40;not isMonkActive&#40;&quot;Player&quot;&#41;&#41; then CastSpellByName&#40;&quot;Aspect of the Monkey&quot;&#41;; end\r\n/script CURRENT_ACTIONBAR_PAGE = J;\r\n/script ChangeActionBarPage&#40;&#41;;\r\n\r\nChange J to the bar number you whish to move right after casting the aspect\r\n\r\n- Disengage, clear the target and finally try to retarget\r\n/script local t=UnitName&#40;&quot;target&quot;&#41;; CastSpellByName&#40;&quot;Disengage&quot;&#41;; ClearTarget&#40;&#41;; if&#40;t ~= nil&#41; then TargetByName&#40;t&#41;; end\r\n\r\n- &#40;Z&#41; If Counterattack is available for casting try to cast it otherwise cast Wing Clip instead, if the target inflicted by Wing Clip it will cast Raptor Strike\r\n/script e = IsUsableAction&#40;ActionId&#41;; _, c = GetActionCooldown&#40;ActionId&#41;; if&#40;e and c == 0&#41; then CastSpellByName&#40;&quot;Counterattack&quot;&#41;; else if&#40;not isClipped&#40;&quot;target&quot;&#41;&#41; then CastSpellByName&#40;&quot;Wing Clip&quot;&#41;;else CastSpellByName&#40;&quot;Raptor Strike&quot;&#41; end; end\r\n\r\nReplace ActionID with the index &#40;position&#41; Counterattack found in your Action Bar\r\n\r\nActionID, Look for the right number identifier for each action bar page at the top of this post\r\n\r\n- &#40;Z&#41; If Counterattack is available for casting try to cast it otherwise cast Wing Clip instead, if the target inflicted by Wing Clip it will cast Scatter Shot\r\n/script isUsable = IsUsableAction&#40;ActionId&#41;; if&#40;isUsable&#41; then CastSpellByName&#40;&quot;Counterattack&quot;&#41;; else if&#40;not isClipped&#40;&quot;target&quot;&#41;&#41; then CastSpellByName&#40;&quot;Wing Clip&quot;&#41;; else CastSpellByName&#40;&quot;Scatter Shot&quot;&#41; end; end\r\n\r\nReplace ActionID with the index &#40;position&#41; Counterattack found in your Action Bar\r\n\r\nActionID, Look for the right number identifier for each action bar page at the top of this post\r\n\r\n- Cast Mongoose Bite if the action is available for use otherwise trying to cast Raptor Strike if the spell got no cooldown\r\n/script isUsable = IsUsableAction&#40;ActionID1&#41;; if&#40;isUsable&#41; then CastSpellByName&#40;&quot;Mongoose Bite&quot;&#41;; else _, d = GetActionCooldown&#40;ActionID2&#41;; if&#40;d == 0&#41; then CastSpellByName&#40;&quot;Raptor Strike&quot;&#41;; end; end\r\n\r\nReplace ActionID1 with the index &#40;position&#41; Mongoose Bite found in your Action Bar\r\nReplace ActionID2 with the index &#40;position&#41; Raptor Strike found in your Action Bar\r\n\r\nActionID, Look for the right number identifier for each action bar page at the top of this post \r\n\r\n\r\n\r\n\r\n&#91;b&#93;&#91;u&#93;PET&#91;/u&#93;&#91;/b&#93;\r\n\r\n- One button to dismiss/call your pet based on its status dead/alive\r\n/script if&#40;UnitExists&#40;&quot;pet&quot;&#41;&#41; then CastSpellByName&#40;&quot;Dismiss pet&quot;&#41; else CastSpellByName&#40;&quot;Call pet&quot;&#41;; end\r\n\r\n- This will Revive/Call/Dismiss your pet based on its state\r\n/script if&#40;UnitHealth&#40;&quot;pet&quot;&#41; == 0 and UnitExists&#40;&quot;pet&quot;&#41; == 1&#41; then CastSpellByName&#40;&quot;revive pet&quot;&#41;; else if UnitExists&#40;&quot;pet&quot;&#41; then CastSpellByName&#40;&quot;dismiss pet&quot;&#41;; else CastSpellByName&#40;&quot;call pet&quot;&#41;; end; end\r\n\r\nThe macro will fail in one cases, When the pet body disappear and its no longer exist.\r\n\r\n- &#40;Z&#41; If Hunter\'s Mark wasn\'t casted, cast it first and then send your pet to attack\r\n/script if&#40;not Zorlen_checkDebuff&#40;&quot;SniperShot&quot;&#41;&#41; then CastSpellByName&#40;&quot;Hunter\'s Mark&quot;&#41;; end; PetAttack&#40;&#41;\r\n\r\n- Send your pet to attack if it\'s not in combat otherwise call him back to retreat\r\n/script if&#40;PetAttackModeTexture&#58;IsVisible&#40;&#41;&#41; then PetPassiveMode&#40;&#41;; else PetAttack&#40;&#41;; end\r\n\r\nKnown Issue&#58; if you are not using the blizzard pet frame the pet won\'t retreat.\r\n\r\nCredit goes to Muns which gave me a minor challenge &#40;How would I check if the pet is in combat my god where is the API&#41; &#58;&#41;\r\n\r\n\r\n\r\n\r\n&#91;b&#93;&#91;u&#93;UTILITIES&#91;/u&#93;&#91;/b&#93;\r\n\r\n- Your Feign Death has a much higher success rate when you have nothing targeted\r\n/script PetPassiveMode&#40;&#41;\r\n/script ClearTarget&#40;&#41;\r\n/script CastSpellByName&#40;&quot;Feign Death&quot;&#41;\r\n\r\n- Cast Feign Death clear the target change the pet to passive mode and attempt to retarget after you feint\r\n/script local t=UnitName&#40;&quot;target&quot;&#41;; PetPassiveMode&#40;&#41;; ClearTarget&#40;&#41;; CastSpellByName&#40;&quot;Feign Death&quot;&#41;; if&#40;t ~= nil&#41; then TargetByName&#40;t&#41;; end\r\n\r\n- Enhanced Feign Death &#40;without the need of the Zorlen hunters functions library its independent&#41;\r\n/script t=UnitName&#40;&quot;target&quot;&#41;;if&#40;UnitAffectingCombat&#40;&quot;player&quot;&#41;&#41; then ClearTarget&#40;&#41;; PetPassiveMode&#40;&#41;;CastSpellByName&#40;&quot;Feign Death&quot;&#41;;if&#40;t&#41; then TargetByName&#40;t&#41;; end; else CastSpellByName&#40;&quot;Freezing Trap&quot;&#41;; end\r\n\r\nCreadit goes to Atal the person who post it here, thank you\r\n\r\n- &#40;Z&#41; Enhanced Feign Death\r\n/script PetPassiveMode&#40;&#41;\r\n/script ClearTarget&#40;&#41;\r\n/script if &#40;not Zorlen_inCombat&#40;&#41;&#41; then CastSpellByName&#40;&quot;Freezing Trap&quot;&#41;; else CastSpellByName&#40;&quot;Feign Death&quot;&#41;; end\r\n\r\nNote&#58; Using Zorlen hunters functions the macro may have higher success rate\r\n\r\n- Deactivate or activate Stoneform in one button click\r\n/script local i = 1;while&#40;UnitBuff&#40;&quot;player&quot;, i&#41;&#41; do if&#40;string.find&#40;UnitBuff&#40;&quot;player&quot;, i&#41;,&quot;Spell_Shadow_UnholyStrength&quot;&#41;&#41;then CancelPlayerBuff&#40;i-1&#41;;return;end i = i + 1;end CastSpellByName&#40;&quot;Stoneform&quot;&#41;\r\n\r\n\r\n\r\n\r\n&#91;b&#93;&#91;u&#93;TARGETING&#91;/u&#93;&#91;/b&#93;\r\n\r\n- Target the MOB only in a case it\'s not dead\r\n/target lameguard\r\n/script if&#40;UnitIsDeadOrGhost&#40;&quot;target&quot;&#41; == 1&#41; then ClearTarget&#40;&#41;; end;\r\n\r\n- &#40;Z&#41; Target the nearest enemy and cast Hunter\'s Mark\r\n/script t=&quot;target&quot;; p=&quot;player&quot;; if&#40;UnitIsFriend&#40;p,t&#41;&#41; then ClearTarget&#40;&#41;; end; if&#40;not UnitExists&#40;t&#41;&#41; then TargetNearestEnemy&#40;&#41;; end; if&#40;not Zorlen_checkDebuff&#40;&quot;SniperShot&quot;&#41; and not UnitIsFriend&#40;p,t&#41;&#41; then CastSpellByName&#40;&quot;Hunter\'s Mark&quot;&#41;; end\r\n\r\nThis will allow you to target nearest enemy as well to allow you select a specific target and cast Hunter\'s Mark on it\r\n\r\nIt\'s worth replacing the old method of Target Nearest Enemy, To replace the old method create a macro for this one, once you made the macro create a Key Bind for it and there you go.\r\n\r\n- Target your last enemy\r\n/script TargetLastEnemy&#40;&#41;;\r\n\r\n- Set assisting target\r\n/script EditMacro&#40;M,&quot;Assist it&quot;, nil,&quot;/assist &quot;..UnitName&#40;&quot;target&quot;&#41;, 1&#41;\r\n\r\nCreate a macro and include this line above inside, when you done create a second macro and make it empty later on set M with the position of the empty macro you\'ve made. You can create a key bind to this macro and set the middle mouse for it and well there you have it again &#58;&#41;\r\n\r\n- Target the pet\'s target\r\n/script AssistUnit&#40;&quot;pet&quot;&#41;\r\n\r\nCredit goes to Wormsborough for reminding me !\r\n\r\n- Target your own pet\r\n/script TargetUnit&#40;&quot;pet&quot;&#41;\r\n\r\n- Ignore the selected target and leave a message\r\n/s Youve just earned yourself instant ignore, bye bye then.\r\n/script AddIgnore&#40;UnitName&#40;&quot;target&quot;&#41;&#41;\r\n\r\n\r\n\r\n\r\n&#91;b&#93;&#91;u&#93;MISC&#91;/u&#93;&#91;/b&#93;\r\n\r\n- Heal yourself\r\n/script if&#40;UnitIsFriend&#40;&quot;player&quot;,&quot;target&quot;&#41;&#41; then ClearTarget&#40;&#41;; end; UseAction&#40;ActionID,0,1&#41;; if&#40;SpellIsTargeting&#40;&#41;&#41; then SpellTargetUnit&#40;&quot;player&quot;&#41;; end\r\n\r\nActionID, Look for the right number identifier for each action bar page at the top of this post\r\n\r\nFor this macro we need 2 short-cuts\r\n1&#41; Drag the Bandages from your bags into one of the Action Bar slots\r\n2&#41; Replace ActionID with the index &#40;position&#41; the Bandages found in your Action Bar\r\n3&#41; Create a macro which include the code above\r\n4&#41; Drag the macro into one of your Action Bar slots\r\n5&#41; Good Luck &#58;&#41;\r\n[/code:1:d98516e911]\r\n\r\n\r\nIf you have more macro\'s just post them here'),(28,'77069400b3','Hunter builds','These build are posted in the WoW forums aswell. If you have a imba build  just let us know :)\r\n\r\n[quote:77069400b3]\r\n[b:77069400b3][u:77069400b3]Grinding / Leveling Build[/u:77069400b3][/b:77069400b3]\r\n\r\nThis build focuses on making your pet as strong as possible, putting most of the talents into Beastmastery. This enables fast grinding with little or no downtime, and you can take on mobs up to 7 levels higher with relative ease. Beastmastery spec is also very strong against cloth wearers and all 1v1 PvP.\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?0500320051521151150510305000000000000000000000\r\n\r\nAnother variation of this build posted by cyndaril- This just takes a few talents from the Marksmanship Tree and puts them in Humanoid and Beastslaying Talents in the Survival tree.\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?0500320052501251500510300000003300000000000000\r\n\r\n\r\n\r\n[b:77069400b3][u:77069400b3]High DPS Build[/u:77069400b3][/b:77069400b3]\r\n\r\nThis build focuses on the DPS talents in the marksmanship tree, but also has some nice talents in the survival tree for more survivability. This is a PvE build, but can work in PvP too. There are two variations of this build.\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?0000000000000000250510305130510320232510020000\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?5000000000000000250510305130510320230410000000\r\n\r\n\r\n\r\n[b:77069400b3][u:77069400b3]The PvP Build[/u:77069400b3][/b:77069400b3]\r\n\r\nThis build concists of 21 in the Marksmanship tree, and 30 in the Survival tree. This is the &quot;cookie cutter&quot; build, and it is very strong in PvP and also in PvE. This build is better with high agility gear.\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?0000000000000000510510305100000050252510013150\r\n\r\nSome players prefer this build to not have Scatter Shot and have Wyvern Sting instead\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?0000000000000000510510305000000050252510013151\r\n\r\n\r\n\r\n[b:77069400b3][u:77069400b3]PvP Trap Builds[/u:77069400b3][/b:77069400b3]\r\n\r\nThis build focuses in improving your traps, I use this build my self as frost trap and entrapment is godlike in AV. I still have the ranged DPS I need, but the traps are just a bonus.\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?0000000000000000150510305100000055102512003150\r\n\r\n\r\n\r\n[b:77069400b3][u:77069400b3]End Game Raiding Builds[/u:77069400b3][/b:77069400b3]\r\n\r\nThese builds will be focused on end game raiding, I need some more suggestions for these builds as I haven\'t had any end game experience myself. To maximize the potential of this build, it\'s recommended that you have agility of 400+ unbuffed. Thanks to Wulfsblood for the 1st build :)\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?0000000000000000051510305100003300242500303050\r\n\r\n\r\nIf you would prefer Trueshot Aura and Ranged Weapon Specialization, this is the right build for you\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?3000000000000000250510305130512305000500020000\r\n\r\n\r\n\r\n[b:77069400b3][u:77069400b3]Grinding / DPS Builds[/u:77069400b3][/b:77069400b3]\r\n\r\nThis build has some talents in the Beastmastery Tree, some in the Marksmanship Tree, and some in the Survival Tree. Essentially this is the Hybrid build. Recommended for leveling up to 60.\r\n-http://www.worldofwarcraft.com/info/classes/hunters/talents.html?5000300000000000520510305130513300230010000000 \r\n[/quote:77069400b3]'),(29,'92bb12880f','Grinding spots','Again a post from the wow forums.\r\n\r\nIf you got some more post it with this template. Offcourse this post will be updated when somebody posts a new grinding spot. :):\r\n\r\nArea: (Alliance, Horde, Contested)\r\nLocation: (Example: Tyr\'s hand)\r\nLevel zone: (The level on the location zone)\r\nSpecal Drops: (Anything special that the mob drops?)\r\nGold per hour: (How much gold do you earn per hour?)\r\nNote: (Add an extra note here)\r\n\r\n\r\n[quote:92bb12880f]\r\nContested areas:\r\n\r\nArea: Contested\r\nLocation: Wetlands\r\nLevel zone: 20+\r\nSpecial Drops: Red whelp pet\r\nGold per hour: Unknown\r\nNote: The red whelps is great for grinding\r\n\r\n__\r\n\r\nArea: Contested\r\nLocation: Duskwood\r\nLevel zone: 25+\r\nSpecial Drops: Nothing special\r\nGold per hour: 3-5 Gold\r\nNote: Kill everything in Raven Hill cemetary, mobs are level 26-30 (Mainly for alliance)\r\n\r\n__\r\n\r\n\r\nArea: (Thousand Needles, Contested)\r\nLocation: Screeching Canyon\r\nLevel zone: 28-32 Harpies\r\nSpecal Drops: Vibrant Plumes and light feathers, greys and greens\r\nGold per hour: 6g/h\r\nNote: There is also 4 chests constantly respawning, you may find some greens. Note that the harpies silence, so this is no ideal place for mana users, but hunters isnt affected big.\r\n\r\n__\r\n\r\nArea: Contested\r\nLocation: Thousand needles and Shimmering flats\r\nLevel zone: 30+\r\nSpecial Drops: None\r\nGold per hour: 5 Gold\r\nNote: All mobs are nice to grind, Mainly a horde place\r\n\r\n__\r\n\r\nArea: Contested\r\nLocation: Strangletorn vale (all of it)\r\nLevel zone: 30+ &gt;45\r\nSpecal Drops: cloth/some greens and a blue from time to time\r\nGold per hour: don\'t know but good at lvl 30-40\r\nNote: Start at the side closest to duskwood and work youre self down STV.\r\nI lvled here from 32-33 up to 42-43 also got my mount money here, lots of grinding quests in rebel camp (for alli) and in the first camp inside STV (don\'t remembre the name of that camp, but both for hord and alli)\r\njust bee on the loockout for lvl ?? that having &quot;fun&quot; killing low lvl\'s.\r\n\r\n\r\n__\r\n\r\nArea: Contested\r\nLocation: Ferallas\r\nLevel zone: 40+\r\nSpecial Drops: None\r\nGold per hour: 10 Gold\r\nNote: Yeti cave, Wolves, Harpies\r\n\r\n__\r\n\r\nArea: Contested\r\nLocation: Strangletorn vale, crystal mines\r\nLevel zone: 40 ish\r\nSpecal Drops: miners\r\nGold per hour: unsure, depends on what you get for iron and mithril bars on AH at your server, but 1-2 stacks of iron/mithril per h\r\nNote: also some mobs here that from time to time drops greens\r\n\r\n__\r\n\r\nArea: Contested\r\nLocation: Tanaris\r\nLevel zone: 40+\r\nSpecial Drops: Mageweave cloths\r\nGold per hour: Unknown\r\nNote: Dunemaul compound in Tanaris, Grind the ogres\r\n__\r\n\r\nArea: Contested\r\nLocation: Felwood\r\nLevel zone: 49+\r\nSpecial drops: A lot of potions\r\nGold per hour: 15-20 Gold\r\nNote: Grind the furbolgs (Mobs are level 48-55)\r\n__\r\n\r\nArea: Contested\r\nLocation: S/W Tanaris\r\nUnits: Thisteltrub\r\nLevel zone: 40+\r\nSpecal Drops:N/A\r\nGold per hour:N/A\r\nLvL Range: 47-49(?)\r\nNote: Theese ones drop really fast. Easy grinding. Spawns very fast.\r\n__\r\nArea: Contested\r\nLocation: Arathi Highlands (Stromgarde keep)\r\nLevel zone: 40-50+\r\nSpecial drops: A lot of mageweave cloth and green items\r\nGold per hour: 20 Gold\r\nNote: Kill the ogres, they respawn fast.\r\n__\r\n\r\nArea: Feralas, Contested\r\nLocation: The big irland beneath feathermoon\r\nLevel zone: 43-46 Nagas\r\nSpecal Drops: Clams which contain iriscendent, black and golden pearls. Nagas also drops some greens, found some blues also\r\nGold per hour: 4-5g/h\r\nNote: Under 3 hours of grinding i found 1 golden pearl, 4 black pears and 3 iriscendent pearls. Sell these and you have a nice g/h rate.\r\n__\r\n\r\nArea: Contested\r\nLocation: Badlands\r\nLevel zone: 45+\r\nSpecial drops: Black whelp pet\r\nGold per hour: Unknown\r\nNote: Black Whelps are good for both skinning/exp and money\r\n\r\n__\r\n\r\nArea: Contested\r\nLocation: Azshara\r\nUnits: Satyrs\r\nLevel zone: 47+\r\nSpecal Drops:Runecloth, Felcloth, Travellers backpacks\r\nGold per hour: 10-40/hour depending on prices of runecloth/felcloth on your server.\r\nLvL Range: 51-53\r\nNote: Very easy to kill as bm specc at lvl 50. The place can be camped out, but hopefully not ;).\r\n\r\n__\r\n\r\nArea: Feralas,contested\r\nLocation: Grimtotem Camp\r\nLevel zone: 43-47 dragonkins, and grimtotems\r\nSpecal Drops: Aquamarines,skinn dragons\r\nGold per hour: 2-3g/h\r\nNote: merely a place to lvl up fast, extremely fast. Both grimtotems (naturalists) and dragonkins have very low health.\r\n\r\n__\r\n\r\n\r\nArea: Contested\r\nLocation: Searing Gorge\r\nLevel zone: 45-50+\r\nSpecial drops: None\r\nGold per hour: 10 Gold\r\nNote: Just make a walk around the cauldron you will find spiders and (lava/fire)elementals on your way, you can also go into the cauldron where you will find alot more elementals\r\n\r\n__\r\n\r\nArea: Feralas, northwest, contested\r\nLevel zone: 48-51 Harpies\r\nSpecal Drops: Plummes\r\nGold per hour: 4-5g/h\r\nNote: merely a place to lvl up fast, extremely fast. Harpies have very low health.\r\n__\r\n\r\nArea: Contested\r\nLocation: Un\'Goro Crater\r\nLevel zone: 50+\r\nSpecial drops: None\r\nGold per hour: Unknown\r\nNote: North East by the gorilla Cave\r\n\r\n__\r\n\r\n\r\nArea: Contested\r\nLocation: Winterspring\r\nLevel zone: 54+\r\nSpecial Drops: None of what I know\r\nGold per hour: Unknown\r\nNote: Yetis are great to grind\r\n__\r\n\r\nArea: Contested\r\nLocation: Tyr\'s Hand\r\nLevel zone: 55+\r\nSpecial Drops: Elemental fire\r\nGold per hour: 25 Gold\r\nNote: Scarlets that gets so owned by a BeastMaster pet.\r\n__\r\n\r\nArea: Contested\r\nLocation: Azshara\r\nLevel zone: 55+\r\nSpecial drops: No\r\nGold pr. hour: ??\r\nNote: Kill elite dragon\'s S/E of ruins! They drop 20s pr. stk and give good XP!\r\n\r\n__\r\nArea: Contested\r\nLocation: Burning Steppes\r\nLevel zone: 55+\r\nSpecial drops: Tons of runecloth\r\nGold per hour: Unknown\r\nNote: Nice for miners to, a lot of veins around\r\n\r\n__\r\nArea: Contested\r\nLocation: Heartglen\r\nLevel zone: 58+\r\nSpecal Drops: Librams sometimes\r\nGold per hour: n/a\r\nNote:This is a very good place to lvl,the mobs arent too tough,but they are elite.Good exp,drops,etc.but be mindfull of the 61 patrol.Have fun \r\n[/quote:92bb12880f]'),(30,'e65b6681ef','','hehehe :lol:  it sure looks hot  8)'),(31,'d84a992b27','','hahahahah lol  8) very nice'),(32,'01d678c991','','Well done Necsus, the forum looks great!\r\n\r\nIt\'s so important to have a good forum/website.\r\n\r\n\r\n\r\nGreetings Mike.'),(34,'d1427a1024','How to play druid in MC','http://video.google.com/videoplay?docid=8107168691618788765&amp;q=wow+druid\r\n\r\nwatch and learn!  :lol:'),(37,'5aeb9971db','','yup nice forum : &gt;'),(38,'3f9119ea03','oi','hello all fellow rogues ;)'),(39,'fd58a90ad9','','OMG! \r\n\r\nThat looked really strange  :roll:'),(40,'665cc94aca','Phantim','Well i didn\'t had enough time to quest so i decided to pull something to Astranaar. So i was looking on thottbot for a high lvl elite and i found [url=http://thottbot.com/?n=726031]Phantim[/url].\r\n\r\nWhen i came to the place where he was located i was killed by guards twice. The third try i saw i could walk over the mountains so i did that and it worked. After a 5 minute walk i finally reached astranaar with Phantim ofcourse.\r\n\r\nWhen i came to Astranaar i saw there was no alliance there and Phantim already killed 4 guards. All with 1 hit :P when he killed the fourth guard nobody had aggro so he evaded everything :( \r\n\r\nBut ofcourse i do have screenshot :D\r\n\r\n[url=http://chelsea.wesowe-is.nl/~sandsofw/eoh/extras/phantim.JPG]Screenshot[/url]\r\n\r\nUnder his wing there is 1 guard :P \r\n\r\nI\'m also thinking about pulling him to a horde city, XR or something but only when i\'m tired questing :lol:'),(41,'a62e4fd386','','lol nice one\r\ni hope u died though  :wink: lol, next time we will make a pull run to XR with the guild  :)'),(42,'a2b9cc345d','','lol necsus !\r\n :lol:  :lol:  you just can\'t get enough,do you ? :P'),(43,'7e0a78e623','','Druids FTW !  8)'),(47,'ab50432f6c','FAQ Burning Crusade','Hey guys, here\'s a little FAQ about the Burning Crusade.\r\nThere\'s some cool info in it like &quot;What are the Draenei?&quot; and &quot;Where did the Draenei come from?&quot;\r\n\r\n[quote:ab50432f6c][b:ab50432f6c]Q: What does the title of the World of Warcraft expansion refer to?[/b:ab50432f6c]\r\nA: &quot;The Burning Crusade&quot; refers to the Burning Legion’s ongoing efforts to destroy life throughout the universe. To date, the Burning Legion’s exploits have been documented in Warcraft III and in our War of the Ancients novel trilogy. As part of World of Warcraft: The Burning Crusade, players will be able to travel through the Dark Portal to confront the Legion on otherworldly battlefields. \r\n[b:ab50432f6c]Q: What new races with be introduced in the expansion?[/b:ab50432f6c]\r\nA: The expansion will introduce two new races to World of Warcraft: the Draenei race for the Alliance and the Blood Elf race for the Horde. \r\n\r\n[b:ab50432f6c]Q: What are the Blood Elves?[/b:ab50432f6c]\r\nA: No longer trusted by the Alliance, these former High Elves have joined the Horde to hunt down the demons that destroyed their homeland of Quel\'Thalas. \r\n\r\n[b:ab50432f6c]Q: What are the Draenei?[/b:ab50432f6c]\r\nA: Descended from the Eredar, the same ancient race as Archimonde, leader of the Burning Legion’s recently thwarted invasion of Azeroth, the Draenei resisted the demonic forces that corrupted their brethren and fled their ancient homeworld, devoting themselves to ending the Legion’s apocalyptic crusade. \r\n\r\n[b:ab50432f6c]Q: Why did you decide to add the Draenei as the new Alliance race?[/b:ab50432f6c]\r\nA: The Draenei visited many worlds in their travels and explored much of the known cosmos on their quest to find safe harbor. During this exodus they befriended the enigmatic Naaru -- a race of beings with a deep affinity for the Holy Light of Creation that empowers the paladins of Azeroth. The Naaru blessed the Draenei with this power in an effort to help them in their struggle. This makes them a natural ally of the Alliance races who embrace this holy power. \r\n\r\nIn addition, the Draenei hold no affinity for certain Horde races. They outright hate the Orcs, who nearly drove the Draenei to extinction in Outland. And more recently, the Blood Elves stole technology from the Draenei and also sabotaged their dimensional ship, which crash landed on Azeroth. \r\n\r\n[b:ab50432f6c]Q: Where did the Draenei come from?[/b:ab50432f6c]\r\nA: The Draenei\'s flight from the Legion eventually led them to a remote, peaceful world, which they named Draenor. In time, the Draenei met and befriended the native Orc clans that lived on this tranquil planet. For many years they lived peacefully with their shamanistic neighbors, until Kil\'jaeden discovered their hiding place and corrupted the Orcs, pitting them against the Draenei. The Orcs nearly eradicated the entire Draenei race during the ensuing war. Recently, the surviving Draenei fled Outland, and a small group of these refugees landed on Azeroth. \r\n\r\n[b:ab50432f6c]Q: Will the level cap be raised?[/b:ab50432f6c]\r\nA: Yes, the level cap will be raised to 70 from the current maximum level of 60. In addition to the level increase, every class will gain access to additional talents and abilities or spells as they level up from level 60 to level 70. \r\n\r\n[b:ab50432f6c]Q: Will there be new lands to explore in the expansion?[/b:ab50432f6c]\r\nA: Outland will be opened with the expansion. Players last visited Outland in Warcraft III: The Frozen Throne, alongside Illidan as he conquered the pit lord Magtheridon’s domain. Players will also gain access to Quel’Thalas, the region to the northeast of the Plaguelands, where the Blood Elves reside, and the Azuremyst Isles, a grouping of islands off the northeastern coast of Kalimdor, where the remaining Draenei crash landed after fleeing Draenor. Other areas that players will be able to explore in the expansion set will be revealed in the months ahead. \r\n\r\n[b:ab50432f6c]Q: Will there be new dungeons and battlegrounds included in the expansion?[/b:ab50432f6c]\r\nA: We do have plans to add dungeons and battlegrounds with the expansion, though the exact number has not yet been determined. One upcoming dungeon that we’re excited about is Karazhan, also known as Medivh\'s tower, which is located in Deadwind Pass. Because Medivh has played such a central role in Warcraft lore, we think that a lot of longtime players will be especially interested in seeing what Karazhan contains. As an example of a battleground that will be included in the expansion, we plan on making some of the battles from the past accessible through the Caverns of Time. We’ll provide more details as we get closer to implementing this content. \r\n\r\n[b:ab50432f6c]Q: What are some of the other features of the expansion?[/b:ab50432f6c]\r\nA: In addition to the new races, zones, dungeons, and battlegrounds, we have a number of new features planned for the Burning Crusade expansion. Some of those new features include: \r\n\r\nA complete new profession - jewelcrafting \r\nSocketable items \r\nFlying mounts \r\nNew weapons, armor sets, and magic items \r\nCharacter advancement up to level 70, including new talents and abilities \r\nDozens of new unique monsters \r\nHundreds of new quests \r\n[b:ab50432f6c]Q: Do you need to own the expansion to play with friends who have it?[/b:ab50432f6c]\r\nA: There will be many aspects of the expansion that are available to all players. However, in order to experience certain content, such as Outland, or be able to play as one of the new races, players will have to purchase the expansion. \r\n[b:ab50432f6c]Q: When will The Burning Crusade beta test begin?[/b:ab50432f6c]\r\nA: Our development team is hard at work creating the vibrant zones and challenging dungeons that will be added to the game in the expansion. Once we\'re happy with the way this new content looks and feels, we’ll arrange to begin beta testing it with selected players. \r\n\r\n[b:ab50432f6c]Q: When will the expansion be released? Will it be a simultaneous global launch? How much will it cost?[/b:ab50432f6c]\r\nA: We will follow a careful, phased approach with the expansion. The target release date will be late 2006 in Europe, Korea, and North America (and those regions that play on North American realms), and we will work to ensure that the launches in mainland China and the regions of Taiwan, Hong Kong, and Macau take place as quickly as possible after that. This phased approach will help ensure a smooth and successful launch in all regions. Further details regarding launch timing and pricing will be revealed in the months ahead. \r\n\r\n[b:ab50432f6c]Q: Can we download the expansion online, or must we purchase it in a store?[/b:ab50432f6c]\r\nA: We’re still looking into how the expansion will be distributed in each region and will provide more info on that at a later date. \r\n\r\n[b:ab50432f6c]Q: What are the system requirements?[/b:ab50432f6c]\r\nA: The system requirements will be similar to what they currently are for the original World of Warcraft game. We’ll announce any updates to the system requirements at a later date. \r\n\r\n[b:ab50432f6c]Q: What is the ESRB rating for the expansion?[/b:ab50432f6c]\r\nA: World of Warcraft: The Burning Crusade has not yet been rated by the ESRB. However, we expect that it will receive the same rating that the original World of Warcraft received – &quot;Teen.&quot; \r\n[/quote:ab50432f6c]'),(48,'f5c8f2d786','','[quote:f5c8f2d786=\"Eris\"]lol nice one\r\ni hope u died though  :wink: lol, next time we will make a pull run to XR with the guild  :)[/quote:f5c8f2d786]\r\n\r\nNah didn\'t died while pulling him :P I did die when i was searching for him :lol:\r\n\r\n\r\n[quote:f5c8f2d786=\"Damian\"]lol necsus !\r\n :lol:  :lol:  you just can\'t get enough,do you ? :P[/quote:f5c8f2d786]\r\n\r\nI know  :twisted:'),(50,'990fb5f63a','','i thought it was awful...'),(51,'914b928654','','that pulling elites to horde cities is a good idea! we should really do that! what would be the best idea?'),(54,'92b795d9c6','','[quote:92b795d9c6=\"Kyrsten\"]that pulling elites to horde cities is a good idea! we should really do that! what would be the best idea?[/quote:92b795d9c6]\r\nlets pull Azuregos to the XR =)\r\nthey gonna die those fat orcs!! \r\n\r\n 8)'),(55,'47e45ea9aa','','imba'),(56,'3d3764268a','','yeah imba it is :D'),(57,'bac0a794d1','','looks nice necsus, wel done.'),(58,'88f3c1c167','','you did a great job necsus!'),(59,'56ac39c146','','[quote:56ac39c146=\"Hera\"]you did a great job necsus![/quote:56ac39c146]\r\n\r\nI know  :roll:'),(61,'35b4f0798d','','Gonna pull 2 of those dragons to XR tonight 19.00'),(63,'cd2088f1a2','','sexy pic he eris :P'),(64,'69667e0cc1','Contact the officer team','Have any questions regarding the guild?\r\n\r\nYou can contact us ingame:\r\n\r\nGuildmaster - Kyrsten\r\nElite - Laurelcrown\r\nOfficer - Gladiatrix\r\nOfficer - Damian\r\nOfficer - Necsis\r\nOfficer - Eris\r\nOfficer - Iceolator'),(67,'814ad4b028','Ventrilo information.','Information about our Ventrilo will come here soon.'),(68,'dc147969c4','Profile: Aeons','http://wow.allakhazam.com/profile.html?1325714'),(69,'4359dc4b48','Burning crusade trailers','Blizzcon Trailer\r\nHQ http://trailers.gametrailers.com/gt_vault/t_wow_tbc_blizzcon_hd.wmv\r\nLQ http://trailers.gametrailers.com/gt_vault/t_wow_tbc_blizzcon.wmv\r\nE3 Trailer\r\nHQ http://trailers.gametrailers.com/gt_vault/t_wow_burningcrusade_e36_h264.wmv\r\nLQ http://trailers.gametrailers.com/gt_vault/t_wow_burningcrusade_e36.wmv'),(70,'592114b8f8','Profile: Kyrsten','http://wow.allakhazam.com/profile.html?1323027'),(71,'8349c4c52b','','a life wich you buy with gamecards ^_^'),(72,'0da0744dc6','Profile: Alysa','http://wow.allakhazam.com/profile.html?1266967'),(73,'3c2d57c06c','Profile: Necsus','http://wow.allakhazam.com/profile.html?1337030'),(75,'2f1367699c','Profile: Hera','http://wow.allakhazam.com/profile.html?1338439'),(77,'7b5dae3829','eoh members in front of Onyxia\'s Lair','[url]http://www.youtube.com/watch?v=X9DpC6x75s8[/url]'),(78,'7cc9c8c3b5','WoW hunter','http://www.youtube.com/watch?v=uvN3tZiHlck&amp;search=Warcraft'),(79,'ebb66bbf92','Jaedenar forum','I added the guild to the guild list from Jaedenar.\r\n\r\nhttp://forums-en.wow-europe.com/thread.aspx?ForumName=wow-realm-jaedenar-en&amp;ThreadID=2479\r\n\r\n\r\ngrtz Alysa'),(89,'586299d8f3','The Guild','Our lovely guild is slowly expanding. In the last week 3 new members have been added as trials! It\'s nice to have ppl online at all times so we can run instances when we want...\r\n\r\nSoooo, if you know someone very capable you have played with, dont hesitate to contact an officer so he/she can be invited.\r\n\r\nThanks, game-on!\r\n\r\nEoH officer team'),(91,'13abd49f89','','/wave'),(92,'1308e8f315','','[quote:1308e8f315=\"Neil\"]/wave[/quote:1308e8f315]\r\n\r\nthat emote is copyrighted by my mage &gt;:('),(93,'9738fc1d51','nice :)','Goody good :)'),(96,'83965d7511','reply','What \'s that stinky bear dr00d doing in here :D'),(97,'656c292c5e','','GJ Alysa :)'),(98,'10b768a0b1','','hell yeah :D\r\n\r\nFirs time Onyxia we defenitly have to make a picture or so :)'),(99,'7afb8f42e8','','God damn those bracers  :?'),(100,'241cb0030d','Profile Shesmu','Look here for my profile on allakhazam.\r\n\r\n\r\nhttp://wow.allakhazam.com/profile.html?1221706'),(101,'af86bc56d3','Instance rules','Rolling for items:\r\n\r\nWhen you roll NEED for an item, it\'s presumed you need that item for yourself, and right away!\r\n\r\nrolling for items which a friend can use: GREED\r\nrolling for items which you can use in X levels: GREED\r\nrolling for items to disenchant: GREED\r\n\r\nAlso leaving the instance before completed is considered rude, so you better have a very good reason to leave.\r\n\r\nI want to make it perfectly clear that whenever you break the rolling rules you are Ninja-looting and almost all guilds will kick you immediately for that.\r\nEoH is no exception.\r\n\r\nI presume everyone reads the forum regulary and so the next time we will not be warning anyone through posts or any other means.\r\n\r\nAnyone that feels personally confronted by this mesage SHOULD feel so, dont whine about this post ingame , just accept these rules.'),(102,'526c07f59f','','please change recruitement info to: Not recruiting at the moment.\r\n\r\nOtherwise ill get whispers from lv50 players'),(103,'8e8d78f6de','','[quote:8e8d78f6de=\"Kyrsten\"]please change recruitement info to: Not recruiting at the moment.\r\n\r\nOtherwise ill get whispers from lv50 players[/quote:8e8d78f6de]\r\nDone.'),(105,'5e531ab4bf','best raid leader ever','This guy still rocks  :lol: \r\n[url]http://koti.mbnet.fi/djcowio/Onyxia%20does%20Wipe%20Club.mp3[/url]'),(106,'4d22121051','','old  :P'),(107,'dd0c1fa249','','whaha, never heard this one :P good one :D\r\n\r\nMinus 50 DKP :lol:'),(108,'df1b155c27','Guild first mount','There it is!\r\n\r\n[img:df1b155c27]http://img110.imageshack.us/img110/4825/erismount21ou.jpg[/img:df1b155c27]\r\n\r\n 8) \r\n\r\n(Ty alysa for the financial support :P)'),(111,'c4bbe49411','onyxia wipe  THE MOVIE !','[url]http://media.weakgame.com/Animations/20060516_001_onyxia_wipe.swf[/url]'),(112,'98dff04763','','looks very nice'),(113,'3dbaca0de6','','whahahahaha, those people really need to find a life :P'),(114,'9293334701','','np m8 :)\r\n\r\nand another grats from me =)\r\n\r\nAlysa'),(124,'006328af28','','[quote:006328af28=\"Kyrsten\"]please change recruitement info to: Not recruiting at the moment.\r\n\r\nOtherwise ill get whispers from lv50 players[/quote:006328af28]\r\n\r\nisnt having level 50\'s in the guild a good thing ?  :shock:'),(125,'6317a0daff','','[quote:6317a0daff=\"Insz\"][quote:6317a0daff=\"Kyrsten\"]please change recruitement info to: Not recruiting at the moment.\r\n\r\nOtherwise ill get whispers from lv50 players[/quote:6317a0daff]\r\n\r\nisnt having level 50\'s in the guild a good thing ?  :shock:[/quote:6317a0daff]\r\n\r\nYes ofcourse but what Kyrsten wants to say is that people think we only recruit people that are lvl 50+ but what Alysa wanted to say is that we are going to recruit when the guild lvl is +/- 50+.'),(136,'55f4373823','Ventrilo guide','Download and install version 2.1.3. You can download it here: \r\n[url]http://alicia.neostrada.nl/~sandsofw/eoh//downloads/ventrilo.exe[/url]\r\n\r\nTo login you enter your World of Warcraft nickname in the &quot;User Name&quot; field.\r\nIn the &quot;Server&quot; field you fill in the following ip:\r\n84.31.226.86\r\nLeave the port standard.\r\n\r\nYou don\'t need a server password.\r\nIf you did all that, you have to hit the &quot;connect&quot; button.\r\n\r\nNow you\'ve gotta go to &quot;Setup&quot;.\r\nOn the left side you enable &quot;Use Push-To-Talk Hotkey&quot;.\r\nNow select the field &quot;Hotkey&quot; and push the button you wish to use for push-to-talk.\r\nNow press &quot;ok&quot; and you\'re all set.\r\n\r\nIf there are still problems configuring your ventrilo, you can contact any of the officers, so they could help you out.'),(141,'90bf6a29be','guild 3e mount :)','3e mount in the guild ^^\r\n\r\n[URL=http://imageshack.us][img:90bf6a29be]http://img461.imageshack.us/img461/8705/hahawatleuk3bu.jpg[/img:90bf6a29be][/URL]'),(147,'45089d038b','Druid Talent Specs','yea for the druids  8) \r\n\r\nhttp://forums-en.wow-europe.com/thread.aspx?fn=wow-druid-en&amp;t=153024'),(148,'21b1b42751','','hmm nice link..i think my 60 spec will be\r\n\r\n[url]http://www.wowhead.com/talent/?0x0EMR0oZZxEcoxq[/url]\r\n\r\nsave\'s cast time and mana  :)'),(151,'2476550c39','Welcome back Lamasi !','Welcome back Lamasi I missed u !\r\n\r\nHope u gain some lvl\'s quick so u can party with us again.\r\n\r\n\r\n\r\nGreetings Mike.'),(157,'7149a59eb4','','Warning ! hunter spotted !\r\n\r\nHunters not allowed in this section :P'),(158,'48c358d3cb','Ultimate Druid Guide','Hey found this guide for druids, you can find:\r\n\r\nDruid items\r\nDruuid quests\r\n\r\nand many many more\r\nenjoy\r\n\r\n[url]http://www.worldofwar.net/characters/druid/index.php[/url]'),(159,'0dd4bf6c21','','Thx m8 love ya'),(160,'6726a27ccd','ZG','Soon there will be a ZG guide made by Laurelcrown and me \r\n\r\nso get lvl 60 soon!  :lol:'),(183,'ec6e613888','','some screeny\'s for the layout\r\n\r\n[img:ec6e613888]http://alicia.neostrada.nl/~sandsofw/eoh/extra/zgvoorkant1we.jpg[/img:ec6e613888]\r\n\r\n[img:ec6e613888]http://alicia.neostrada.nl/~sandsofw/eoh/extra/zgvoorkantklein9hk.jpg[/img:ec6e613888]\r\n\r\ncrappy japanese word &gt;.&lt; anyhow,\r\n\r\ncomments? shoot  :roll:'),(184,'8ab5fbca5a','','sweeeeeeeeet :D'),(185,'c9717b2ed0','','looks very hot  :shock:'),(190,'a9af9ce700','','Hey, I\'ve registered! So give me membership useage of the forum :P atleast if you have it :D  :roll:'),(192,'7df5b9bd7b','','Heyy :)'),(193,'0088c6bdb7','Dr00d help?','I got a 60 druid with tons of exp. So if you need any help. Let me know. :)'),(195,'651e3a4e29','','Original post is from Cervanta\r\n\r\nNice build for grinding/questing\r\n\r\n------------------------------------------------------\r\n\r\nNo idea where to post it otherwise: \r\n\r\nhttp://www.worldofwarcraft.com/info/classes/druids2/talents.html?00000000000000005002401303222150055013105010000 \r\n\r\naka: \r\n\r\nFeral Combat Talents - 30 point(s) \r\n\r\n# Ferocity - rank 5/5 \r\n# Brutal Impact - rank 2/2 \r\n# Thick Hide - rank 4/5 \r\n# Feral Charge - rank 1/1 \r\n# Sharpened Claws - rank 3/3 \r\n# Predatory Strikes - rank 3/3 \r\n# Blood Frenzy - rank 2/2 \r\n# Primal Fury - rank 2/2 \r\n# Savage Fury - rank 2/2 \r\n# Faerie Fire (Feral) - rank 1/1 \r\n# Heart of the Wild - rank 5/5 \r\n\r\nRestoration Talents - 21 point(s) \r\n\r\n# Furor - rank 5/5 \r\n# Improved Healing Touch - rank 5/5 \r\n# Improved Enrage - rank 1/2 \r\n# Reflection - rank 3/3 \r\n# Insect Swarm - rank 1/1 \r\n# Tranquil Spirit - rank 5/5 \r\n# Nature\'s Swiftness - rank 1/1'),(196,'9aa12e6b62','','the new cover\r\n\r\n[img:9aa12e6b62]http://img92.imageshack.us/img92/2319/zulgurubfordummies1kr.jpg[/img:9aa12e6b62]'),(197,'e433220327','','LoL Damian :D\r\n\r\nWell done, only thing PAINT?  :roll:  haha :D'),(198,'e55f0750ab','','late WB but WB :P'),(202,'0e03fec7bc','','lazy ****\r\nhow\'s the new house?\r\nlooking forward to hearing you curse on vent again ^^'),(205,'3309af93d4','Damian\'s little sister ...','What does Damian\'s sister do when she\'s bored ???\r\n\r\nShe bakes a cake with her little friends !!!\r\n\r\nhttp://youtube.com/watch?v=lYDwPitDALM&amp;search=lazytown%20cake%20song\r\n\r\nGonna buy the record tbh, when it comes out ...'),(206,'1dfa61b46c','','lol hahaha\r\n\r\nShe was making a spacecake  8)'),(207,'ca633a69b1','','Lazycake ftw  :?'),(208,'729dd6e943','','wtf\r\n0.0'),(221,'14ba50a92d','EoH is recruiting the following classes ...','[b:14ba50a92d]Any other classes are welcome as well at this point.[/b:14ba50a92d]\r\n\r\nU have to be around lvl 45 (minimal) and be a regular/active player.\r\n\r\n\r\nWhisper our Officer\'s staff for more info or if u have questions about the guild.'),(224,'36a1332036','A guy who just turned to lvl 60','http://www.gameklip.com/v/463/\r\n  :shock:'),(225,'614275deca','','lol\r\ni\'ve seen that b4.. thought he could open the gates of AQ or something.. atleast then i could imagine some joy.. but to reach lvl 60.. woohoo? :P i would prolly get something out of the fridge and thats it :P :lol:'),(226,'89cdf2be03','armore smith','i dont know if anyone of u want to be an armore smith, but i found this verry helpfull! ripped it ofoff thottbot \r\nhttp://www.thottbot.com/?qu=5283\r\n\r\nTo start with, kudos to Huntn for posting a relatively comprehensive &quot;walkthrough&quot; for this quest. The following post is an add-on to his post and will be borrowing liberally from some of his notes. \r\n\r\nIf you wish to go down the path of Armorsmith, ensure that you have the following items: \r\n(1) Patience; \r\n(2) More Patience; \r\n(3) Lots of Cash; or \r\n(4) More Patience. \r\n\r\nMy attempts at irony aside, to be an Armorsmith: \r\n\r\n(1) It is *advisable* (meaning its not crucial) to have your Blacksmith skill at 220 or thereabouts as you have to learn some recipes from a goblin in Booty Bay and he will only teach you if your skill is 230 or thereabouts. However, bear in mind that your skills will be rising when you craft some of the items involved in this quest. \r\n\r\n(2) Talk to Expert Blacksmith Trainer in Ironforge at 210 skill in blacksmith. \r\n\r\n(3) He will direct you to Grumnus Steelshaper standing by the Great Forge in Ironforge who gives you a quest to make the following items: \r\n(a) Ornate Mithril Helmets X 4 (16 Mithril Bars X 4, 2 Truesilver Bar x 4, Solid Grinding Stone X 4, 4 Black Pearls X 4) \r\n(b) Ornate Mithril Boots X 2 (14 Mithril Bars X 2, 2 Truesilver Bar x 2, 4 Thick Leather x 2, Solid Grinding Stone x 2, Aquamarine X 2) \r\n(c) Ornate Mithril Breast Plate X 1 (16 Mithril Bars, 6 Truesilver, Heart of Fire, Solid Grinding Stone) \r\nAt which point you will be stumped as you neither have the recipes/know how to craft them nor do you know where to head to...till Thottbot\'s guides came along. \r\n\r\n(4)Take the griff/train to Stormwind City (&quot;SW&quot;) to look  for an NPC by the name of Hank the Hammer in the Dwarven District right by the forge area in SW. He will give you a quest called &quot;The Origins of Smithing&quot; which requires you to craft 6 Golden Scale Bracers [30 Steel Bars, 12 Heavy Grinding Stones (translates to 36 Heavy Stones)]. Once completed, he will give you a quest to see another NPC by the name of McGavan in Booty Bay. \r\n\r\n(5) Talk to McGavan who then gives you a quest called &quot;The Mithril Order&quot; to talk to Galvan the Ancient. (&quot;Galvan&quot;) Galvan is between Zul Gurub and the Mosh\'Ogg Ogre mound in STV. Cosmos locs are 50,21. \r\nNOTE : Before you start tramping out of Booty Bay, try and learn the following recipes from Brikk Keencraft - Mithril Coif and Heavy Mithril Breastplate. (230 blacksmith skill pre-requisite) \r\n\r\n(6) Once you meet Galvan, he will give you 3 quests: \r\n(a) Bring 40 Mithril Bars, 5 True Silver to him. (&quot;The Great Silver Deceiver&quot;) \r\n(b) Bring 40 Mithril Bars, 40 Iron Bars to him. (&quot;Smelt On, Smelt Off&quot;) \r\n(c) Bring 40 Mithril Bars, 4 Citrine to him. (&quot;The Art of Imbue&quot;) \r\nCompleting each quest will allow you to learn more recipes needed to complete your ultimate quest. Once all quests are done, speak to Galvan again and he will then direct you to see another NPC by the name of Trenton Lighthammer in the town of Gadgetzan in Tanaris. (&quot;Galvan\'s Finest Pupil&quot;) Trenton is by a forge in the town of Gadgetzan. \r\n\r\n(7) Once you meet Trenton, he will give you 3 quests: \r\n(a) A Good Head on Your Shoulders which requires crafting Mithril Coifs X 2 (10 Mithril Bars x 2, 6 Mageweave x 2), Ornate Mithril Shoulder x 1. (12 Mithril Bars, 1 Truesilver, 6 Thick Leather) \r\n(b) The World at Your Feet which requires crafting Heavy Mithril Boots X 2 (14 Mithril Bars x 2, 4 Thick Leather x 2), Ornate Mithril Pants X 1. (12 Mithril Bars, 1 Truesilver, 1 Solid Grinding Stone, 1 Aquamarine) \r\n(c) The Mithril Kid which requires crafting Heavy Mithril Breastplate X 2 (16 Mithril Bars X 2), Ornate Mithril Gloves X 1. (10 Mithril Bars, 6 Mageweave Cloth, 1 Truesilver, 1 Solid Grinding Stone) \r\nWhen you complete each quest, you will be taught more recipes wherein one of it is the ornate mithril helmet recipe. \r\n\r\n(8) Armed with all the recipes, then its back to Ironforge to complete &quot;The Art of the Armorsmith&quot;. Read note (3) again for ingredients required to craft the items. If you have the items, craft away and voila quest is complete. \r\n\r\n(9) Turn in the quest. Congratulations! You are an Armorsmith and will be able to learn 2 more recipes Truesilver Breastplate and Truesilver Gauntlet. (Blue Items but cost wise are pretty expensive to craft) \r\n\r\nWell, hope this helps.'),(227,'ed33e95de0','','iron          = 30    + 40\r\nmithril      = 16*4 + 14*2 + 16 + 40*3 + 10*2 + 12 + 14*2 + 12 + 16*2 + 10\r\ntruesilver = 2*4   + 2*2   + 6   + 5 + 1 + 1 + 1\r\n\r\ncoal                          = 30\r\nheart of fire              = 1\r\nThick leather             = 4*2 + 6 + 4*2\r\nSolid grinding stone   = 4*4 + 2 + 1     + 1 + 1\r\nblack pearl               = 4*4\r\naquamarine              = 2     +1\r\nheavy gridning stone = 12\r\ncitrine                      = 4\r\nmageweave              = 6*2 + 6\r\n\r\n========================================\r\nComing to a total of!\r\n\r\n\r\niron          =  70\r\nmithril      = 342\r\ntruesilver  =  26\r\n\r\ncoal                          = 30\r\nheart of fire              =    1\r\nThick leather             =  22\r\nSolid grinding stone   =  21\r\nblack pearl               =   16\r\naquamarine              =    3\r\nheavy gridning stone =  12\r\ncitrine                      =    4\r\nmageweave              = 18\r\n\r\nNice shopping list'),(228,'74b84992b3','Inactive','If someone reported themselves inactive please let all the officers know by posting it here\r\n\r\nThe post should contain:\r\n-Nickname of the person you are referring to.\r\n-Date when the guildmember told you he or she would go inactive\r\n-Inactive starting and ending date\r\n\r\nThis so there will not be any misunderstandings about someones inactivity\r\nthanks for your cooperation and game on!'),(230,'ae0d8f2021','Recruiting','It has come this far. We have started recruiting. At the moment every class is welcome.\r\n\r\nAs we have reached this point, it is time to discuss another point: Activity.\r\n\r\nIf you cannot play at least 2 evenings in the week then, I am sorry to say so, Eye of Horus is not the right guild for you.\r\n\r\nAlso long periods of inactivity are not allowed (unless agreed upon by Elites). \r\nPlease review our General Rules again and follow them, as there are more important issues like this.\r\n\r\nBest regards,\r\n\r\n-EoH Elite team'),(231,'cb8ab6322b','','not so bad, since you have about 10 - 15 levels to find the stuff in.\r\n\r\nBut everyone wants to have BS @300 on lv 45...thats why its so damn hard.'),(232,'2bc09aaf6e','','lol, same Trix, i would do a mini-wave...just me...then pop a soda'),(235,'3debe466f7','','Officer\'s forum mag in het Nederlands.'),(236,'67ae4225ca','How it\'s not supossed to be','[img:67ae4225ca]http://img85.imageshack.us/img85/2797/warrior9ot.jpg[/img:67ae4225ca]\r\n :lol:'),(237,'26ce920b3a','','errr... lol'),(239,'1721ab2c8e','','thats how i feel sometimes lol :P'),(240,'8798bea4c0','','[size=18:8798bea4c0][b:8798bea4c0]this is you boris:[/b:8798bea4c0][/size:8798bea4c0]\r\n\r\n[img:8798bea4c0]http://members.home.nl/blueskin/boris.jpg[/img:8798bea4c0]'),(241,'2f63cfb8ac','','hahahah kyr  :lol:  lol'),(243,'23504d69d7','Specific recruiting on the Jaedenar forums','The Officer\'s staff has decided to do some specific class recruiting on the Jaedenar forums.\r\n\r\nHere\'s the post :\r\n\r\nhttp://forums-en.wow-europe.com/thread.aspx?fn=wow-realm-jaedenar-en&amp;t=6088&amp;p=1&amp;tmp=1#post6088\r\n\r\n\r\nGreetings LaurelCrown.'),(244,'73a95e884b','','good work m8\r\n\r\nNow let\'s wait and see If we\'ll get some new people. 8)'),(245,'01fc92ab2a','','well aren\'t we looking for warlocks as well?'),(246,'0651a34a2c','','ok ok.. i need to work on my patience -.-\r\nbut i can keep aggro ^_^\r\ni learn everytime i do an instance with you guys..  with my mage i had an completely different playstyle and i need to unlearn that :P\r\n\r\nbut i still find it amusing that picture :P nice editing imo ;)'),(247,'53cdff8864','','We want to keep the guild as small as possible at this point, we can do without warlocks. We have Ice and Reniha, that\'s enough if they lvl up.'),(251,'eeebbd8893','Necsis','[url]http://forums.worldofwarcraft.com/thread.aspx?fn=wow-general&amp;t=8837753&amp;p=1&amp;tmp=1[/url]\r\n\r\nAre you jealous of us elitests in purplez :(\r\n\r\n:P:P btw i\'m laughing at the dude not you.. he\'s obviously a bit messed in the head :)'),(252,'83ae87bd79','','what a dick. I think dwarves are cool'),(253,'76d0457b76','','jalous fucker.. bet he has a NE priest, and a dwarf priest was chosen to fill in the application he filled in ;)\r\n\r\nppl with dwarf priest dont just have to do it for their racialls but also for the fun of it..\r\n\r\nif ur doing it for the racials.. well ur a GOOD team player ;)'),(257,'1c4189b37a','rogue 1.12','Source from curse gaming:\r\n\r\nRogue Talent Review: First Glimpse\r\newufs @ Monday, July 3, 2006 - 03:48 am\r\n\r\nCommunity Manager Drysc has finally released the awaited Rogue talent preview. Please remember this is not the complete review like said in the topic title, it\'s juste a glimpse. Additional information will be collected in the coming days/weeks.\r\n\r\n&quot;The review is well underway and we wanted to share a sort of first glimpse into the changes being made for the rogue talent review. Keep in mind that these changes are not complete or final, and the below information is likely to alter as we move into our testing phases. While not everything is listed, the below list encompasses the majority of changes being made in the review.\r\nI\'ll be working in the weeks to come to get as much additional information as possible, but it is likely that quite a bit of the final information regarding talent changes will not be fully announced until the talent calculators go live. Of course you\'ll also be able to actually play around with the changes too once the Public Test Realms go up.\r\n\r\nI\'m going to just list the changes and provide additional information where possible or necessary. Let\'s get to it.\r\n\r\n \r\n\r\n    * The following talents have been removed: Improved Deadly Poison, Improved Distract, Throwing Weapon Specialization, Improved Vanish, and Rapid Concealment.\r\n\r\n    * Improved Instant Poison is now &quot;Improved Poisons&quot; and increases your chance to apply ALL poisons by 2/4/6/8/10%.\r\n\r\n    * Rapid Concealment has been merged with Camouflage, by combining these talents you not only get a great talent to start off the tree, but obviously it frees up a number of points to be spent elsewhere.\r\n\r\n    * Murder will now also apply to all finishing moves. The benefit this will provide to output and attack combinations is fairly straightforward.\r\n\r\n    * Vile Poisons now gives your poisons a chance to resist dispel effects, in addition to increasing poison damage.\r\n\r\n    * Improved Kidney Shot has been changed, and will instead increase the damage taken by the target while they are affected by Kidney Shot. This talent no longer reduces the cooldown of Kidney Shot.\r\n\r\n    * Improved Sprint has been changed, and will instead have a 50/100% chance to remove all movement impairing effects when you activate your Sprint ability. This talent no longer reduces the cooldown of Sprint.\r\n\r\n    * Improved Evasion renamed to Endurance, and will add a Sprint cooldown reduction.\r\n\r\n    * New talent Weapon Expertise in the Combat tree, increases your weapon skill with all melee weapons. The recovery of damage with an increased weapon skill should be a good boost to overall output.\r\n\r\n    * Initiative is being reduced to a 3 point talent, but resulting in the same 75% end chance to add an additional combo point.\r\n\r\n    * Elusiveness is being reduced to a 3 point talent, but resulting in the same 75 sec cooldown reduction to Evasion, Blind, and Vanish.\r\n\r\n    * Ghostly Strike now has a reduced Energy cost, the reduction of Energy was enough to make it necessary to also reduce the damage output slightly.\r\n\r\n    * Improved Garrotes damage reduction will be removed. This is being changed as part of an overall improvement for Garrote.\r\n\r\n    * Setup is being moved higher up in the tree, becoming a 16 point talent with no prerequisites, helping move the talent in reach of specific builds.\r\n\r\n    * New talent Heightened Senses in the subtlety tree, increases your Stealth detection, and reduces the chance for you to be hit by spells and ranged attacks.\r\n    * Hemorrhage will be moved up in the tree to become a 21 point talent. This should help to place the ability in a more reachable position, and allow for a little more versatility with specific talent builds.\r\n\r\n    * New talent Deadliness in the Subtlety tree, increases your Attack Power by a percentage.\r\n\r\n    * Premeditation will have its Energy requirement removed, changed to an instant cast, and range increased. Its cooldown will remain the same. Premeditation will now be pre-reqd by Preperation.\r\n\r\n    * Vanish will now remove effects that allow the caster to remain aware of the rogues presence, such as Mind Vision and Hunters Mark.\r\n\r\n    * Garrote, Rupture, and Eviscerate are being increased in damage. More details to come.\r\n\r\n    * Expose Armor will now reduce armor by a percentage.\r\n\r\n \r\n\r\nI\'ll be continuing to speak with the designers and collecting as much additional information as possible in the coming weeks.\r\nThanks for reading.'),(259,'bfd0319580','','It\'s nice that we\'re getting looked at next :) Should be fun.'),(263,'0ece05c96b','Re: rogue 1.12','[quote:0ece05c96b=\"Eris\"] Vanish will now remove effects that allow the caster to remain aware of the rogues presence, such as Mind Vision and Hunters Mark. [/quote:0ece05c96b]\r\n\r\nYESSS, thats what i wanted to make it more fair'),(265,'386f586453','','[quote:386f586453]Rupture was found to be performing at-par to where we want it to be and will not be changed. While there was certainly some intention initially (and why it was included in my post) to improve or change how it functioned, after careful study it has been decided to not change the Rupture ability. I know that may be a dissapointment, but after careful study, no change was necessary. \r\n\r\nEviscerate is being improved by a new book, allowing a new rank and a general base-damage increase. \r\n\r\nGarotte is receiving a damage boost. While final numbers are still unavailable, we are shooting for an approximate 50% damage increase[/quote:386f586453]'),(266,'5b2100f99b','Vacation from 08/07/06 - 22/07/06','Hey everyone,\r\n\r\nAfter 24.00 tonight I\'m leaving to Spain so you need to miss me for two weeks. Keep up the good work being friendly to each other and gain some levels :D.\r\n\r\nWhen I\'m back we can start making our guild ready for the lvl 60 (5 man) instances!\r\n\r\n\r\nCya soon,\r\n\r\nGreetings Mike.'),(267,'de35f5cc5b','','Have fun there m8!! Find some good girls there :D'),(268,'47edf85f53','','i hope u get sun burns and drown &gt;.&lt;\r\n\r\nj/k\r\n\r\nhave fun m8 and score some ladeh\'s  8)'),(269,'d87c0417a9','','go and get layed! :P\r\nhave fun'),(271,'da6e0648c7','Stormshroud set','Just to inform you all that I can now craft all of the stormshroud set. This is one of the best crafted rogue sets available :)\r\n\r\nOn a side note I can also craft volcanic shoulders and leggings, which will benefit rogues and possibly other classes with MC level fire resistance gear. :)'),(274,'3407e8bf48','low end game instances','hello guys, \r\n\r\ni wanna discuss a brainstorm session that eris and i had after playing some wow.\r\n\r\nwe came up with a plan.\r\n\r\nyou all know how fucked up it is when your in a instance and ppl are leaving infront of the boss and shit like that.\r\nwell were getting close to become 60. and when were that lvl we going for the tier 0 set. if were high enough and can get some party\'s starting. we can better grind 1 instance for a evening then go for 1 run and then leave or go to the next group. so were getting our tier 0 items and were getting the experience of playing to gether in our guild. and the boe tier 0 set items we can give them to one who needs it (how generous :P )\r\nat the end we all get the tier 0 beginning stuff and a kick ass team with eatch other.\r\n\r\nwell guys tell us what you think about it \r\n\r\ngreatings harimus (loladin)\r\n     and    eris        (doesnt know what to be) (priest tank rogue or moon)'),(275,'0b0ca3a169','','nice m8!\r\nI think Kyrsten would love to hear this ;)'),(278,'8123b572cf','','haha cool one damian but eris you moron dont get the horde cover but get the ally cover \r\n\r\ncya harimus (man so bored)'),(279,'0f2bdc1af1','Re: low end game instances','[quote:0f2bdc1af1=\"harimus\"] eris        (doesnt know what to be) (priest tank rogue or moon)[/quote:0f2bdc1af1]\r\n\r\nu bitch im a fully skilled healbot!  :D'),(280,'a9a067914b','.','So what you\'re saying is:\r\n\r\n-Once we hit 60, we should do one instance several times in a row. Not just one time\r\n-BoE items will be given to members\r\n\r\nWell, I don\'t know about the rest, but I usually have time for one dungeon only (2hrs). Especially now that 5 days of traineeship and 1 day of work is coming closer.\r\n\r\nSecondly, if one can\'t join for a dungeon run, one doesn\'t earn items. BoE items will goto EoHepicbank and can be bought for DKP points. So, no dungeon, no items. (Although I appreciate your kindness Harimus;))\r\n\r\nWhen our guild gets bigger we will have raids scheduled several nights a week, so you can choose a night when you have free time.'),(281,'de064a18c5','','.... the BoE gear wont cost dkp  :? \r\n\r\nit\'s tier 0\r\n\r\nso to the bank it will.. but how to give it to memebers i dunno yet'),(283,'4024dad20b','Guild first 60','8)  few days of hard grinding and a second guild first for me  :lol: \r\n\r\n/cheer\r\n\r\nHail EoH!!!'),(284,'16d662dff4','','Gratz! Great work.. i\'m starting to pick speed i\'ll be there in no time! :)'),(285,'7a10fdc837','','well kyrsten there are loads of ppl now that are able to strat baron runs 45 mins we can work to that so it will cost an hour there so that are several time\'s in like a few hours and if someone has to go maybe we can get replacement. what you wanna do with the item\'s i dont care but aslong as the guys that are doing the dungeons get there\'s. but i realy think it will work better cause you know how hard it is most time to get a pick up group. and that sucks but hell with the time i\'m working 40 hours a week to (should be 48 but aint doing that) and when school begins i\'m fucked cause i have a hole lot to do this year. but i figure something out. \r\n\r\neris you were lvl 59 when i wrote it gratz with your lvl 60 you dedicated fool (or to mutch time) well now you can keep my ass healed \r\n\r\nharimus'),(286,'ed51c5a5c9','','just do what neil does only better :P \r\n\r\nGO GRIND!  :lol:'),(287,'35b6f988fe','GM','De reden dat Kyrsten geen GM meer is\r\n\r\nOp een gegeven moment is de tijd daar dat je als GM zelf beslissingen moet gaan nemen omdat bespreken met officers te lang duurt, te stroef verloopt, of soms een éénrichting gesprek is. Op een bepaald moment vond ik het dus tijd om zelf te beslissen dat 10 dagen offline reden is voor een guildkick. Zo ook heb ik besloten dat 2 weken trial voldoende is, na overleg met Laurel werden dat er 3.\r\n\r\nToen kwam het moment dat 2 members opnieuw begonnen en ik kreeg het gevoel dat het niet vooruit ging met de guild, wat gaan lvl 20-ers bijdragen aan de guild? Ik heb een post gemaakt op het forum omdat ik vond dat er geen lage levels meer in deze guild thuishoren. We moeten immers vooruit met de guild.\r\nEen dag later is er een lv4 aangenomen en ik was het daar niet mee eens, na inquiries bleek het niemand bekends te zijn en ik besloot meteen om de persoon te verwijderen uit de guild.\r\n\r\nEchter kreeg ik meteen commentaar van 2 officers en op dat moment besloot ik geen GM te willen zijn in een guild waar de GM voor de helft de baas is.\r\n\r\n\r\nDit is geen persoonlijke aanval, of een beklag en ik neem de officers niks kwalijk. Ik wil alleen uitelggen dat je niet van de ene kant alles zelf moet beslissen en dan van de andere kant aangevallen word omdat je niet samen beslist. Het werkt gewoon niet om met zn allen de baas te zijn. \r\n\r\nDus, bij deze mag iemand anders dit gaan proberen. Als de tijd daar is om één vreseloze leider aan te stellen die het laatste woord heeft bied ik me weer aan, maar op deze manier werkt het voor mij niet.\r\n\r\nAvé EoH collegas, Kyrsten'),(288,'52dff40a34','','[quote:52dff40a34]We have been continuing to work on the review since the \'First Glimpse\' post, the talent calculator unveiling, and we have been building upon those initial changes. After our own discussions and testing, as well as reviewing the player feedback we have received, we are planning to make the below additional changes to the rogue talents for patch 1.12. \r\n\r\nPlease keep in mind that these changes, as well as the review as a whole, are not final, and are still subject to change. We are moving closer to the launch of the Public Test Realms for 1.12 and we will be continuing to evaluate the changes throughout the testing process. \r\n\r\nThe \'First Glimpse\' post and talent calculator can be viewed from the links below. \r\n\r\nhttp://forums.worldofwarcraft.com/thread.aspx?fn=wow-rogue&amp;t=1271292&amp;p=1 \r\n\r\nhttp://www.worldofwarcraft.com/info/classes/rogues2/talents.html \r\n\r\n\r\n\r\nMurder has been changed to increase damage caused against Humanoid, Giant, Beast, and Dragonkin by 1%/2%. \r\n\r\n\r\nRemorseless Attacks has been reduced to 2 ranks, with the new effectiveness being 20% and 40%. \r\n\r\n\r\nEndurance has been changed to reduce the cooldown of your Sprint and Evasion abilities by 45 sec/1.5 min. It no longer increases the duration of Evasion. \r\n\r\n\r\nWeapon Expertise will now increases your skill with Fist, Dagger, and Sword weapons. It will no longer affect Maces, and this change is being followed up by \r\n\r\n\r\nMace Specialization will now also add 1-5 weapon skill with Maces, in addition to the stun effect the talent already provides. \r\n\r\n\r\nAdrenaline Rush now has a reduced cooldown of 5 min. \r\n\r\n\r\nElusiveness has been reduced to a 2 point talent and now reduces the cooldown of Vanish and Blind by 45 sec/1.5 min. It no longer reduces the cooldown for Evasion. \r\n\r\n\r\nOpportunity is being moved to a tier 1 talent, swapping places with Camouflage. \r\n\r\n\r\nGhostly Strike has been reverted back to the previous 125% weapon damage, but retains its new Energy cost of 40. \r\n\r\n\r\nSetup will now also provide combo points if you fully resist an attackers spell. \r\n\r\n\r\nImproved Rupture, Improved Cheap Shot, and Improved Garrote have been removed. \r\n\r\n\r\nNew talent \'Serrated Blades\' is a tier 4 talent in the Subtlety tree, causes your attacks to ignore X of your targets Armor, and increases the damage dealt by your Rupture ability. The amount of Armor reduced increases with your level. At level 60, the ranks will reduce target Armor by 100/200/300 respectively. \r\n\r\n\r\nNew talent \'Dirty Deeds\' replaces the Improved Cheap Shot talent, reducing the Energy cost of both the Cheap Shot and Garrote abilities by 10/20. \r\n\r\n\r\nGarrote, Eviscerate, and Rupture now all scale with Attack Power. The previously announced Eviscerate book will still be made available in an undisclosed location. While we had always planned to scale these abilites at a point in the future, we felt that the rank upgrade for Eviscerate and damage increase for Garotte would provide a well needed boost in the current game and carry these abilities until the scaling mechanic was implemented. Our ultimate goal to scale the abilities in a future update was decided to be moved ahead, and the current plan is to implement scaling for these abilities in 1.12, instead of in a later update. \r\n\r\n\r\nAgain, please keep in mind that any of the above changes are subject to revision, reversal, or removal. We\'ll be continuing to evaluate these changes, and the review as a whole. Neither the talent calculator, nor these forum posts should be considered final word on the review. \r\n\r\nThanks for reading. \r\n[/quote:52dff40a34]'),(289,'217e09dc8b','','[quote:217e09dc8b]Below are the current values that we are currently working with for the scaling of Garrote, Eviscerate, and Rupture with Attack Power. As with everything in the review, these are subject to change. \r\n\r\nThe original thread detailing the most recent changes announced for the review can be found here: https://forums.worldofwarcraft.com/thread.aspx?fn=wow-rogue&amp;t=1337254 \r\n\r\nGarrote 6: \r\nOld Damage: 432 \r\n600 AP: 660 \r\n800 AP:696 \r\n1500 AP: 822 \r\n% Increase for 1500 AP: 90% \r\n\r\nEviscerate 8: \r\nOld Damage: 936 \r\n600 AP: 941 \r\n800 AP: 971 \r\n1500 AP: 1076 \r\n\r\nEviscerate 9: \r\n600 AP: 1048 \r\n800 AP: 1078 \r\n1500 AP: 1183 \r\n% Increase for 1500 AP: 26% \r\n\r\nRupture 6: \r\nOld Damage: 935 \r\n600 AP: 944 \r\n800 AP: 992 \r\n1500 AP: 1160 \r\n% Increase for 1500 AP: 24% [/quote:217e09dc8b]'),(290,'15132da2b2','','gief drood review @ 1.13 :\'('),(298,'78133ed013','','i reposted the recruitment message link is here:\r\n\r\nhttp://forums-en.wow-europe.com/thread.aspx?ForumName=wow-realm-jaedenar-en&amp;ThreadID=10564'),(299,'8905598ca3','','im new and this is kinda a test if i can post on forums (Eris forced me  :cry: )'),(300,'8927e70097','','[quote:8927e70097=\"Judger\"]im new and this is kinda a test if i can post on forums (Eris forced me  :cry: )[/quote:8927e70097]\r\nsame but w/o forcing ;p'),(301,'fc590469cf','','respect my auththorithy &gt;.&lt;  :lol:'),(303,'ce50aa9f98','Alliance shammy ftw','http://www.wow-europe.com/en/burningcrusade/townhall/classcombo.html\r\n\r\nlol, wtf are they thinking'),(304,'e210af8a00','','Back o.O !'),(308,'8626344e4e','','Veel gebeurd in die 2 weken dat ik weg ben merk ik wel ... we praten hier nog over Jeroen.\r\n\r\nIk ben weer actief terug vanaf zondag. Ik ga vanavond eerst eten met mn familie, ben net terug uit Spanje.'),(309,'76cc9cc0f0','Nieuw nummer ....','Het heeft niets met EoH te maken maar ik denk ik post het maar hier omdat ik het niet in The Inn wil posten.\r\n\r\nMn nieuwe mobiele nummer : 0638245430.\r\n\r\n\r\nZouden jullie ook ff je nummer hier willen posten? Ik ben zo slim geweest om mn oude sim te verwijderen ...\r\n\r\n\r\nMvg,\r\n\r\nMike.'),(310,'94401a771e','','0652682944\r\n\r\n----\r\nedit\r\nje mag me s\'avonds ook op dit nummer bellen\r\n0900-KELLY'),(311,'f66e0e6775','','weak, now both factions have every class...thats so stupid. They didnt give each faction have a unique class for nothing. \r\n\r\nDamn you blizz, turning soft on us'),(312,'720a82ebdd','Jeroen','0654941140'),(313,'c278e940de','BELANGRIJK: LEES EN REAGEER!','Hey jongens,\r\n\r\nIk vind het belangrijk om jullie even bij te praten. Zondag vandaag, vandaag is de dag dat ik na twee weken Spanje weer actief ben in EoH.\r\n\r\nIk heb vanavond 4 nieuwe members aangenomen, allemaal 47+.\r\n\r\n[b:c278e940de]Er zijn een aantal dingen waar ik met jullie over wil praten:[/b:c278e940de]\r\n\r\n1). Ventrilo : Mensen werken zich naar level 60 en ZG moet volgende maand toch wel bezocht gaan worden. Hiervoor hebben we een \'dedicated\' Ventrilo server nodig. Dit houdt in, eentje die altijd werkt en aanstaat.\r\n\r\n2). GM : Ik wil niemand benadelen maar ik vindt dat Jeroen GM van EoH moet zijn. De guild begint nu echt wat te worden en we hebben een mooie toekomst tegemoet. Jeroen is de oudste en kan het beste omgaan met discussies en regels (mijn mening). De rol van een Elite en Officer is het ondersteunen van de GM, de GM blijft naar mijn mening altijd de baas, zijn regels zijn wet. Ook vindt ik dat er geen lage levels meer mogen worden aangenomen. Ook al ken je deze persoon ... \r\n45+ is een mooie richtlijn. Wat is jullie mening over GM/Elite/Officer?\r\n\r\n3). EoH recruiting macro : Gebruik de volgende macro om mensen te werven. Doe dit nooit in de general chat van een \'city\' maar in general chats van regio\'s (Winterspring, EPL, WPL, enz.)\r\n\r\nHier volgt de macro:\r\n\r\n/1 Eye of Horus is recruiting, do u love PvE and want to join a experienced group of players? Are u above lvl 45 and active, then EoH is the right guild for u! We are aiming for high end instances and ZG is right around the corner. /w LaurelCrown for info\r\n\r\nJe kan natuurlijk ook mijn naam veranderen in die van jezelf, hoeft niet, mag wel.\r\n\r\nVoor diegene die nog op vakantie gaan laat het even weten. Graag reactie op deze post, dit geld voor de gehele officer\'s staff (vakantie daargelaten). Het is niet mijn bedoeling iemand te benadelen of te bekritiseren.\r\n\r\n\r\nGroeten Mike.'),(314,'5fb556156d','','Nou,ik heb het eens doorgenomen en ben het met je eens,maar dat waren we volgens mij in het begin allemaal al,want dit iss in het begin toch allemaal al besproken ??\r\n\r\nmaar goed...\r\n\r\n[b:5fb556156d]1)[/b:5fb556156d] heb zelf helaas geen servertje voor ventrilo,wil best \'reserve\' ventrilo server hosten (mocht ik online zijn en we een wedstrijd doen, en er problemen zijn met de server)\r\n\r\n[b:5fb556156d]2)[/b:5fb556156d] Ben het helemaal mee eens dat Jeroen de aangewezen persoon is als GM.\r\nGM is ook DE persoon die de uiteindelijke beslissing zal moeten maken.\r\nKijk anders eens op de site van wow-europe.com:\r\n[url]http://wow-europe.com/en/info/basics/guildleadership.html[/url]\r\n\r\n[b:5fb556156d]3)[/b:5fb556156d] Zal \'m zsm toevoegen  8)'),(315,'2bc94a21d1','','0800-SMOKEY'),(316,'5c6de4ebf0','Yoooo all!','tx for invite to guild, have played ALOT with ppl in it &amp; look forward to contribute with all i can do.. am 300 enchanter atm, so feel free to ask for any enchants you might need, ofc its free!\r\n\r\nCheers //north  :lol:'),(317,'0b1c5ee698','','Your welcome Northstar, have a good time, u sound nice :D'),(318,'16ca86e396','','Waar ik dus echt pissig van wordt is dat als ik een lv4 verwijder commentaar krijg van Paul en Boris, en stevig commentaar mag ik wel zeggen. Vervolgens sta ik GMrecht aan Paul af om het hem zelf eens te zien doen, dan ineens word er zonder overleg een lv requirement ingesteld en een persoon net 2 levels onder die requirement word niet aangenomen!\r\n\r\nPaul, dat vind ik gewoon een persoonlijke aanval en daar ben ik dus echt pissig over.\r\n&quot;Zo, ik ben GM nu zal ik het eens alleen gaan beslissen, dat ik eerst zei dat iemand niet alleen mocht beslissen maakt nu natuurlijk niet meer uit&quot;\r\n\r\nEn dan &quot;respect my authority&quot; durven posten\r\nRonduit zielig Paul.\r\n\r\nMaak mij maar member, dan hoef ik me nergens meer mee te bemoeien, aub'),(319,'0896a4e076','','ffs whine niet zo man, kheb er met laurel over gehad.. je moet niet zo snel conclusies trekken'),(320,'7fe042e8ce','Re: .','[quote:7fe042e8ce]Secondly, if one can\'t join for a dungeon run, one doesn\'t earn items. BoE items will goto EoHepicbank and can be bought for DKP points. So, no dungeon, no items. (Although I appreciate your kindness Harimus;))[/quote:7fe042e8ce]\r\ndkp for t0 ? no thx i rather want to make few more runs ;o even in pug\'s'),(321,'04a461c9e8','','Iedere keer als ik commentaar heb ben ik aan het \'whinen\'\r\n\r\nAls ik net zo\'n instelling als jou en Boris had had ik ook aan je kop moeten zeuren dat die 43 toch echt zou moeten joinen. Maar dat doe ik niet. Daar gaat het mij om.\r\n\r\nJe doet gewoon preceis hetzelfde als wat ik deed en nu kan het ineens wel. \r\nEn als je dat niet ziet of wil zien is dat een slechte zaak. Op deze manier is het gewoon een kutstreek.\r\n\r\nEn dat van die \'whine\' hebben we nou onderhand wel gehoord.'),(322,'90732af2d9','Re: Instance rules','rolling for friend...greed ...its obvious ...\r\nrolling for De ...greed... its also obvious \r\n\r\nbut that \r\n[quote:90732af2d9]\r\nrolling for items which you can use in X levels: GREED[/quote:90732af2d9]\r\nis something i completly disagree...for example item from zf needs lvl 46  guy is lvl 44 he obvius need this item cause its much better than his actual item ... possibilty he will get something better than item that drop is terribly low  (read boe epic drop) cause there is no other instance  for this lvl range atm so he WONT be able to get anything better ..so  as i said i completly disagree\r\n\r\nso i would be after changing this cause its not NINJA looting in any case if player is honest .... if he rolled need for de or such ...its ninja looting i agree but if he rly need it but he is little to low (i say few lvls like 1-3 not 10 or so)he should really roll need and its not ninja looting otherwise i would have to call judger ninja cause he rolled need on big bad pauldrons when he was 1 lvl too low and i could use them right away but he is using them to this day so he needed it ...u will call it ninjaing ? i wont even that i made next 11 runs to get them (judger done them with me ) and they didnt drop ... bad luck but it wasnt ninjaing if u see my point plz think about changing it'),(323,'c7f81bec34','','nice i see u get for it very serious :) nice :) but i think every1 of us knows tactics for zg so only thing we will have to do is setting one we will use to get rid of possible chaos ;p but thats mo ;p'),(324,'b15b8d268f','','lol xD looks like me in westfall doing murloc quest &gt;&lt;'),(325,'0c4f796c75','','Bedankt, maar ik wil geen GM meer zijn. Heb er geen zin meer in.'),(326,'b2d2ce7452','','Ok dat is dan duidelijk, ik wil ook wel GM worden, Eris mag het van mij ook zijn.'),(327,'be07f84c3a','','Het lijkt me verstandig om er met elke officer over te stemmen. Ik heb leiderschap aan Eris gegeven maar kan me voorstellen dat dat niet de juiste manier is.\r\nDit was mijn laatste post in deze afdeling.\r\n\r\nRuud pls haal me weg als admin en stop me in de member lijst only'),(328,'77aed257d0','','he just wants my character :('),(329,'234e948a7d','','[quote=&quot;Eris&quot;]just do what neil does only better :P quote]\r\n\r\nThat\'s impossible ;)'),(330,'f2f5aea396','','hey guys maybe its stupid to post this but hell. issnt it normal that you dont get dkp for going to tier 0 instances? so it cant even cost dkp :). so were all safe about that. well all i have to say (maybe because i\'m bored) \r\nwell guys cya ingame and let the guild grow and be good:)\r\n\r\nharimus'),(332,'3ec084dd5b','','There\'s no DKP involved in 5 man instances. U cannot buy tier 0 items from guildbank using DKP.\r\n\r\nDKP comes around the corner when we start doing Zul\'Gurub.'),(333,'da332b9461','Guildbank','[b:da332b9461]Eye of Horus guildbank contains the following items at this point :[/b:da332b9461]\r\n\r\n- Cord of Elements : http://wow.allakhazam.com/db/item.html?witem=16673\r\n\r\n\r\n[b:da332b9461]If u find any tier 0, rare recipe or pattern (or anything else special), EoH would greatly appreciate it if u send that particular item to the guildbank. This way we can gear up our guildmembers.[/b:da332b9461]\r\n\r\n\r\n[b:da332b9461]If u would like an item that\'s in the guildbank whisper LaurelCrown and we\'ll talk about it. Don\'t reply to this post, contact me ingame only.[/b:da332b9461]'),(334,'bcddecde20','Full acces','Signed up on the forum but don\'t have full acces? Leave your name here and the admins will take care of it.'),(335,'0a9592920f','','great inputs guys, tx a bunch! really looking forward to this  :lol:'),(336,'f2c324366b','Volcanic Set','I can now craft the whole of the volcanic set which is great fire resist gear for rogues in MC. zomg... pew pew... and all that stuff. :P');
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_posts_text` ENABLE KEYS */;

--
-- Table structure for table `phpbb_privmsgs`
--

DROP TABLE IF EXISTS `phpbb_privmsgs`;
CREATE TABLE `phpbb_privmsgs` (
  `privmsgs_id` mediumint(8) unsigned NOT NULL auto_increment,
  `privmsgs_type` tinyint(4) NOT NULL default '0',
  `privmsgs_subject` varchar(255) NOT NULL default '0',
  `privmsgs_from_userid` mediumint(8) NOT NULL default '0',
  `privmsgs_to_userid` mediumint(8) NOT NULL default '0',
  `privmsgs_date` int(11) NOT NULL default '0',
  `privmsgs_ip` varchar(8) NOT NULL default '',
  `privmsgs_enable_bbcode` tinyint(1) NOT NULL default '1',
  `privmsgs_enable_html` tinyint(1) NOT NULL default '0',
  `privmsgs_enable_smilies` tinyint(1) NOT NULL default '1',
  `privmsgs_attach_sig` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`privmsgs_id`),
  KEY `privmsgs_from_userid` (`privmsgs_from_userid`),
  KEY `privmsgs_to_userid` (`privmsgs_to_userid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_privmsgs`
--


/*!40000 ALTER TABLE `phpbb_privmsgs` DISABLE KEYS */;
LOCK TABLES `phpbb_privmsgs` WRITE;
INSERT INTO `phpbb_privmsgs` (`privmsgs_id`, `privmsgs_type`, `privmsgs_subject`, `privmsgs_from_userid`, `privmsgs_to_userid`, `privmsgs_date`, `privmsgs_ip`, `privmsgs_enable_bbcode`, `privmsgs_enable_html`, `privmsgs_enable_smilies`, `privmsgs_attach_sig`) VALUES (2,2,'asdfsadf',2,2,1146562118,'7f000001',1,0,1,0),(4,2,'test',2,2,1146562157,'7f000001',1,0,1,0),(10,2,'ddd',4,2,1147349313,'507f648e',1,0,1,1),(11,2,'sa',4,2,1147349532,'507f648e',1,0,1,1),(12,2,'noob',2,5,1147250646,'507f648e',1,0,1,0),(14,2,'Belangrijk!',2,5,1147686862,'507f648e',1,0,1,0),(15,0,'weg jij',2,9,1147942172,'541fe256',1,0,1,0),(16,2,'weg jij',2,9,1147942172,'541fe256',1,0,1,0),(17,0,'Re: weg jij',9,2,1147942352,'507f648e',1,0,1,0),(18,2,'Re: weg jij',9,2,1147942352,'507f648e',1,0,1,0),(19,0,'Re: weg jij',2,9,1147942397,'541fe256',1,0,1,0),(20,2,'Re: weg jij',2,9,1147942397,'541fe256',1,0,1,0),(23,2,'Votings',8,4,1148211816,'5418a883',1,0,1,1),(24,2,'Sign in',22,5,1148140232,'541f9723',1,0,1,0),(25,0,'foto\'s',6,2,1150805617,'9130b9a7',1,0,1,0),(26,0,'trail handbook',6,4,1150809788,'9130b9a7',1,0,1,0),(27,2,'foto\'s',6,2,1150805617,'9130b9a7',1,0,1,0),(28,0,'Re: foto\'s',2,6,1150826833,'541fe256',1,0,1,0),(29,2,'trail handbook',6,4,1150809788,'9130b9a7',1,0,1,0),(30,0,'Re: trail handbook',4,6,1150828981,'5418bd53',1,0,1,1),(31,2,'Re: trail handbook',4,6,1150828981,'5418bd53',1,0,1,1),(32,2,'Re: foto\'s',2,6,1150826833,'541fe256',1,0,1,0),(33,0,'guildbank',22,30,1152983729,'54182612',1,0,1,0),(34,2,'guildbank',22,30,1152983729,'54182612',1,0,1,0),(35,0,'Guild bank',20,5,1154074084,'c29f08eb',1,0,1,0),(36,2,'Guild bank',20,5,1154074084,'c29f08eb',1,0,1,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `phpbb_privmsgs` ENABLE KEYS */;

--
-- Table structure for table `phpbb_privmsgs_text`
--

DROP TABLE IF EXISTS `phpbb_privmsgs_text`;
CREATE TABLE `phpbb_privmsgs_text` (
  `privmsgs_text_id` mediumint(8) unsigned NOT NULL default '0',
  `privmsgs_bbcode_uid` varchar(10) NOT NULL default '0',
  `privmsgs_text` text,
  PRIMARY KEY  (`privmsgs_text_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `phpbb_privmsgs_text`
--


/*!40000 ALTER TABLE `phpbb_privmsgs_text` DISABLE KEYS */;
LOCK TABLES `phpbb_privmsgs_text` WRITE;
INSERT INTO `phpbb_privmsgs_text` (`privmsgs_text_id`, `privmsgs_bbcode_uid`, `privmsgs_text`) VALUES (2,'eb214728b5','asdfasdf'),(4,'857d92a27e','test'),(10,'c6e1c1eb4f','lief klein konijntje'),(11,'545f85f41b','dsadsa'),(12,'4a54abde96','noob'),(14,'cf60020e11','BOE!'),(15,'d40c18db11','Ga is gewoon werken an server :D'),(16,'d40c18db11','Ga is gewoon werken an server :D'),(17,'6f467f4637','wij zijnn op dit moment dreamweaver aan het installeren en zijn aan het wachten.\r\n\r\nWaarom zit jij hierop!'),(18,'6f467f4637','wij zijnn op dit moment dreamweaver aan het installeren en zijn aan het wachten.\r\n\r\nWaarom zit jij hierop!'),(19,'fd9ff4e0a1','Ik zit hierop omdat ik verder niet veel te doen heb...\r\n\r\nWaar kan ik trouwens dat formulier met competenties vinden? kan dat kut formulier nergens vinden kut blackboard.'),(20,'fd9ff4e0a1','Ik zit hierop omdat ik verder niet veel te doen heb...\r\n\r\nWaar kan ik trouwens dat formulier met competenties vinden? kan dat kut formulier nergens vinden kut blackboard.'),(23,'30ea913cc4','op het forum staat bij &quot;Eye of Horus - Guild Forums&quot; een topic &quot;Votings&quot;\r\n\r\ndit lijkt mij een beetje overbodig want die hebben we ook al bij de discussion\r\n\r\ngreetz Eris'),(24,'069223630f','Hey Mike,\r\n\r\nik ben ook ingeschreven\r\n\r\ngroeten\r\n\r\nAntoon'),(25,'0d36a994c9','ik had di efoto\'s naar jou geupload maar waar stonde ze nu ookalweer?'),(26,'6bc5809749','miss is het ook belangerijk om in het handboek voor de trails te zetten dat als e inactive gaan door welke reden dan ook het te melden aan een officer en het te posten op het forum'),(27,'0d36a994c9','ik had di efoto\'s naar jou geupload maar waar stonde ze nu ookalweer?'),(28,'7d23f48f62','http://eoh.hetwebnet.nl/extra/'),(29,'6bc5809749','miss is het ook belangerijk om in het handboek voor de trails te zetten dat als e inactive gaan door welke reden dan ook het te melden aan een officer en het te posten op het forum'),(30,'3f11b571