<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
	<title>General channel</title>
	<description>Channel that tracks the most important forums.</description>
	<link>http://www.codeforums.org/forum_beta/index.php</link>
	<pubDate>Wed, 05 May 2010 09:05:13 +0000</pubDate>
	<ttl>15</ttl>
	<item>
		<title>Character Transer</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8105</link>
		<description><![CDATA[Hey there guys,<br />
<br />
I just noticed that my previous Blizzlike server UnderWoW has gone offline.<br />
So I was looking for another one and I ended up here. I was wondering if I could still transfer my characters from UnderWoW to Codeserver...<br />
Atleast, I was hoping so.<br />
<br />
Regards,<br />
<br />
Jasper]]></description>
		<pubDate>Wed, 05 May 2010 09:05:13 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8105</guid>
	</item>
	<item>
		<title>Time To Move On</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8104</link>
		<description>Players of this server since this server ain got any population its time to move on to another one, i dont about you guys but im leavin to a different server, i hope that you think right and leave this server.</description>
		<pubDate>Thu, 15 Apr 2010 09:26:08 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8104</guid>
	</item>
	<item>
		<title>Inactivity</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8103</link>
		<description><![CDATA[Whats with the inactivity around here <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/sad.gif' class='bbc_emoticon' alt=':(' /> ? There's nobody online anymore and there hasn't been an update to the core in almost 2 months]]></description>
		<pubDate>Thu, 01 Apr 2010 21:16:53 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8103</guid>
	</item>
	<item>
		<title>Suggestion?</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=295</link>
		<description><![CDATA[Have you got a suggestion? You think it can be done better?<br />
<br />
Post it here, in this forum and we will try to react as quickly as possible!<br />
<br />
The codeserver GM team.]]></description>
		<pubDate>Thu, 11 Mar 2010 03:51:12 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=295</guid>
	</item>
	<item>
		<title><![CDATA[[Contribution] Quest Fix]]></title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8100</link>
		<description><![CDATA[I was trying to do a quest in WPL but the game object wasn't scripted, so I made a script that a dev here can fill in with the correct functions to make it work<br />
<pre class='prettyprint'>
using System;
using System.Collections.Generic;
using System.Text;

using Server.Interfaces;

using Extension;
using Extension.Interfaces;
using Extension.Implementations;

namespace Scripts.Gameobjects
{
    public class NorthridgeCrate : IGameobjectScript
    {
        public IObjectCompare&lt;IScriptGameobject&gt; Comparer
        {
            get { return new CompareCollection.IdCompare&lt;IScriptGameobject&gt;(177490); }
        }

        public void UseGameobject(IScriptGameobject target, IScriptPlayer player)
        {
            if(player.GetQuestStatus(5902) == ScriptQuestStatus.STATUS_ACTIVE)
                player.CreateGossipMenu("something that sends the message 'Place Termite Barrel on the crate.'");
				if(player.something_that_means_he_clicked_the_gossip_option)
				{
					player.delete_item(15044);
					player.complete_quest(5902);
				}
        }
    }
}

</pre><br />
<br />
PS: I've been learning the .NET library and C# for over a year now, if you are looking for a bug fixer/scripter I'd be glad to help <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' />]]></description>
		<pubDate>Fri, 05 Mar 2010 16:12:38 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8100</guid>
	</item>
	<item>
		<title><![CDATA[[Fix] Shattrath Guards]]></title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8102</link>
		<description><![CDATA[I went to shattrath today and the guards weren't scripted so I decided to make another script ( I could make better scripts if the server offered a little documentation or source code <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/tongue.gif' class='bbc_emoticon' alt=':P' /> )<br />
<br />
You will need to add a few things to GossipDefines<br />
Here's what I added and their values:<br />
<pre class='prettyprint'>
GOSSIP_TEXT_WORLDSEND = "World's End Tavern",
GOSSIP_TEXT_MANALOOM = "Mana Loom",
GOSSIP_TEXT_GEMMERCHANT = "Gem Merchant",
GOSSIP_TEXT_ALDORBANK = "Aldor Bank",
GOSSIP_TEXT_SCRYERBANK = "Scryers Bank",
GOSSIP_TEXT_ALDORINN = "Aldor Inn",
GOSSIP_TEXT_SCRYERINN = "Scryers Inn",
GOSSIP_TEXT_ALDORSTABLE = "Aldor Stable",
GOSSIP_TEXT_SCRYERSTABLE = "Scryers Stable",
GOSSIP_TEXT_ALLIMASTER "Alliance Battlemasters",
GOSSIP_TEXT_HORDEMASTER = "Horde Battlemasters",
GOSSIP_TEXT_ARENAMASTER = "Arena Battlemasters",
GOSSIP_TEXT_ALDORGEM = "Aldor Gem Merchant",
GOSSIP_TEXT_SCRYERGEM = "Scryers Gem Merchant"
</pre><br />
<br />
and here is the script:<br />
<pre class='prettyprint'>
using System;
using System.Collections.Generic;
using System.Text;

using Extension;
using Extension.Interfaces;
using Extension.Implementations;

/// &lt;summary&gt;
/// Script for guardgossiper, provides basic guard interaction at/for shattrath.
/// Created by Froid
/// &lt;/summary&gt;
public class ShattrathGuard : GossipDefines, IGossip
{
	public void GossipHello(IScriptPlayer gossiper, IScriptCreature sender)
	{
		// IDK what the icons are supposed to be
	    gossiper.GossipAdd( GOSSIP_TEXT_WORLDSEND     , (GossipIcons) 6,  ACTION_DEFAULT_1  +  1);
	    gossiper.GossipAdd( GOSSIP_TEXT_BANK	      , (GossipIcons) 6,  ACTION_DEFAULT_1  +  2);
	    gossiper.GossipAdd( GOSSIP_TEXT_INN           , (GossipIcons) 1,  ACTION_DEFAULT_1  +  3);
	    gossiper.GossipAdd( GOSSIP_TEXT_WINDRIDER     , (GossipIcons) 2,  ACTION_DEFAULT_1  +  4);
	    gossiper.GossipAdd( GOSSIP_TEXT_MAILBOX       , (GossipIcons) 4,  ACTION_DEFAULT_1  +  5);
	    gossiper.GossipAdd( GOSSIP_TEXT_STABLEMASTER  , (GossipIcons) 5,  ACTION_DEFAULT_1  +  6);
	    gossiper.GossipAdd( GOSSIP_TEXT_BATTLEMASTER  , (GossipIcons) 8,  ACTION_DEFAULT_1  +  7);
	    gossiper.GossipAdd( GOSSIP_TEXT_MANALOOM	  , (GossipIcons) 8,  ACTION_DEFAULT_1  +  8);
	    gossiper.GossipAdd( GOSSIP_TEXT_ALCHEMYLAB	  , (GossipIcons) 8,  ACTION_DEFAULT_1  +  9);
	    gossiper.GossipAdd( GOSSIP_TEXT_GEMMERCHANT   , (GossipIcons) 3,  ACTION_DEFAULT_1  +  10);
	    gossiper.GossipAdd( GOSSIP_TEXT_PROFTRAINER   , (GossipIcons) 3,  ACTION_DEFAULT_1  +  11);
	    gossiper.GossipFlush(sender, 10321);
	
	}

	#region DEFAULT GOSSIP
	public void DefaultGossip(IScriptPlayer gossiper, IScriptCreature sender, int option)
	{
	    if (option == ACTION_DEFAULT_1 + 1)//tavern
	    {
	        gossiper.GossipPOI(-1760.4f, 5166.9f, "World's End Tavern");
	        gossiper.GossipFlush(sender, 10394);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 2)//bank menu
	    {
	        gossiper.GossipAdd( GOSSIP_TEXT_ALDORBANK       , (GossipIcons) 8,  ACTION_DEFAULT_4  +  1);
			gossiper.GossipAdd( GOSSIP_TEXT_SCRYERBANK       , (GossipIcons) 8,  ACTION_DEFAULT_4  +  2);
	        gossiper.GossipFlush(sender, 10379);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 3)//inns
	    {
	        gossiper.GossipAdd( GOSSIP_TEXT_ALDORINN      , (GossipIcons) 8,  ACTION_DEFAULT_4  +  3);
			gossiper.GossipAdd( GOSSIP_TEXT_SCRYERINN       , (GossipIcons) 8,  ACTION_DEFAULT_4  +  4);
	        gossiper.GossipFlush(sender, 10382);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 4)//Wind Rider
	    {
	        gossiper.GossipPOI(-1832f, 5299f, "Flight Master");
	        gossiper.GossipFlush(sender, 10385);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 5)//mailbox
	    {
	        gossiper.GossipAdd( GOSSIP_TEXT_ALDORBANK        , (GossipIcons) 8,  ACTION_DEFAULT_4  +  1);
			gossiper.GossipAdd( GOSSIP_TEXT_ALDORINN         , (GossipIcons) 8,  ACTION_DEFAULT_4  +  3);
			gossiper.GossipAdd( GOSSIP_TEXT_SCRYERBANK       , (GossipIcons) 8,  ACTION_DEFAULT_4  +  2);
			gossiper.GossipAdd( GOSSIP_TEXT_SCRYERINN        , (GossipIcons) 8,  ACTION_DEFAULT_4  +  4);
	        gossiper.GossipFlush(sender, 10386);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 6)//stable master
	    {
	        gossiper.GossipAdd( GOSSIP_TEXT_ALDORSTABLE       , (GossipIcons) 8,  ACTION_DEFAULT_4  +  5);
			gossiper.GossipAdd( GOSSIP_TEXT_SCRYERSTABLE      , (GossipIcons) 8,  ACTION_DEFAULT_4  +  6);
	        gossiper.GossipFlush(sender, 10387);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 7)//battle master
	    {
	        gossiper.GossipAdd( GOSSIP_TEXT_ALLIMASTER         , (GossipIcons) 8,  ACTION_DEFAULT_5  +  1);
			gossiper.GossipAdd( GOSSIP_TEXT_HORDEMASTER        , (GossipIcons) 8,  ACTION_DEFAULT_5  +  2);
			gossiper.GossipAdd( GOSSIP_TEXT_ARENAMASTER        , (GossipIcons) 8,  ACTION_DEFAULT_5  +  3);
	        gossiper.GossipFlush(sender, 10388);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 8)//mana loom
	    {
	        gossiper.GossipPOI(-2070f, 5265.5f, "Mana Loom");
	        gossiper.GossipFlush(sender, 10503);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 9)//alchemy lab
	    {
	        gossiper.GossipPOI(-1648.5f, 5540f, "Alchemy Lab");
	        gossiper.GossipFlush(sender, 10321);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 10)//gem merchant
	    {
	        gossiper.GossipAdd( GOSSIP_TEXT_ALDORGEM       , (GossipIcons) 8,  ACTION_DEFAULT_4  +  7);
			gossiper.GossipAdd( GOSSIP_TEXT_SCRYERGEM      , (GossipIcons) 8,  ACTION_DEFAULT_4  +  8);
	        gossiper.GossipFlush(sender, 10697);
	    }
	
	    if (option == ACTION_DEFAULT_1 + 11)//profession trainer
	    {
	        gossiper.GossipAdd( GOSSIP_TEXT_ALCHEMY              , (GossipIcons) 3,  ACTION_DEFAULT_3  +  1);
	        gossiper.GossipAdd( GOSSIP_TEXT_BLACKSMITHING        , (GossipIcons) 3,  ACTION_DEFAULT_3  +  2);
	        gossiper.GossipAdd( GOSSIP_TEXT_COOKING              , (GossipIcons) 3,  ACTION_DEFAULT_3  +  3);
	        gossiper.GossipAdd( GOSSIP_TEXT_ENCHANTING           , (GossipIcons) 3,  ACTION_DEFAULT_3  +  4);
	        gossiper.GossipAdd( GOSSIP_TEXT_FIRSTAID             , (GossipIcons) 3,  ACTION_DEFAULT_3  +  5);
	        gossiper.GossipAdd( GOSSIP_TEXT_JEWELCRAFTING        , (GossipIcons) 3,  ACTION_DEFAULT_3  +  6);
	        gossiper.GossipAdd( GOSSIP_TEXT_LEATHERWORKING       , (GossipIcons) 3,  ACTION_DEFAULT_3  +  7);
	        gossiper.GossipAdd( GOSSIP_TEXT_SKINNING             , (GossipIcons) 3,  ACTION_DEFAULT_3  +  8);
	        gossiper.GossipFlush(sender, 10391);
	    }
	
	}
	#endregion

	#region ALDOR AND SCRYERS GOSSIP
	public void AldorScryerGossip(IScriptPlayer gossiper, IScriptCreature sender, int option)
	{
	
	    if (option == ACTION_DEFAULT_4 + 1)//Aldor bank
	    {
	        gossiper.GossipPOI(-1730.8f, 5166.9f, "Aldor Bank");
	        gossiper.GossipFlush(sender, 10380);
	    }
	
	    if (option == ACTION_DEFAULT_4 + 2)//Scryer bank
	    {
	        gossiper.GossipPOI(-1999.6f, 5362.2f, "Scryers Bank");
	        gossiper.GossipFlush(sender, 10381);
	    }
	
	    if (option == ACTION_DEFAULT_4 + 3)//Aldor inn
	    {
	        gossiper.GossipPOI(-1895f, 5767f, "Aldor Inn");
	        gossiper.GossipFlush(sender, 10383);
	    }
		
		if (option == ACTION_DEFAULT_4 + 4)//Scryers inn
		{
			gossiper.GossipPOI(-2178f, 5405f, "Scryers Inn");
			gossiper.GossipFlush(sender, 10384);
		}
		
		if (option == ACTION_DEFAULT_4 + 5) // aldor stable
		{
			gossiper.GossipPOI(-1888.5f, 5761f, "Aldor Stable");
			gossiper.GossipFlush(sender, 10321);
		}
		
		if (option == ACTION_DEFAULT_4 + 6) // scryer stable
		{
			gossiper.GossipPOI(-2170f, 5404f, "Scryers Stable");
			gossiper.GossipFlush(sender, 10321);
		}
		
		if (option == ACTION_DEFAULT_4 + 7) // aldor gem merchant
		{
			gossiper.GossipPOI(-1645f, 5669.5f, "Aldor Gem Merchant");
			gossiper.GossipFlush(sender, 10698);
		}
		
		if (option == ACTION_DEFAULT_4 + 8) // scryer gem merchant
		{
			gossiper.GossipPOI(-2193f, 5424.5f, "Scryers Gem Merchant");
			gossiper.GossipFlush(sender, 10699);
		}
	}
	#endregion

	#region Battlemaster GOSSIP
	public void BattleMasterGossip(IScriptPlayer gossiper, IScriptCreature sender, int option)
	{
		if (option == ACTION_DEFAULT_5 + 1) // alliance master
		{
			gossiper.GossipPOI(-1774f, 5251f, "Alliance Battlemasters");
			gossiper.GossipFlush(sender, 10389);
		}
		
		if (option == ACTION_DEFAULT_5 + 2) // horde master
		{
			gossiper.GossipPOI(-1963f, 5263f, "Horde Battlemasters");
			gossiper.GossipFlush(sender, 10390);
		}
		
		if (option == ACTION_DEFAULT_5 + 3) // arena master
		{
			gossiper.GossipPOI(-1960f, 5175f, "Arena Battlemasters");
			gossiper.GossipFlush(sender, 12510);
		}
	}
	#endregion

	#region PROFESSION TRAINER GOSSIP
	public void ProfessionTrainerGossip(IScriptPlayer gossiper, IScriptCreature sender, int option)
	{
	
	    if (option == ACTION_DEFAULT_3 + 1)//Alchemy
	    {
	        gossiper.GossipPOI(-1648.5f, 5534f, "Lorokeem");
	        gossiper.GossipFlush(sender, 10392);
	    }
	
	    if (option == ACTION_DEFAULT_3 + 2)//Blacksmithing
	    {
	        gossiper.GossipPOI(-1847f, 5222f, "Kradu Grimblade and Zula Slagfury");
	        gossiper.GossipFlush(sender, 10400);
	    }
	
	    if (option == ACTION_DEFAULT_3 + 3)//Cooking
	    {
	        gossiper.GossipPOI(-2067.4f, 5316.5f, "Jack Trapper");
	        gossiper.GossipFlush(sender, 10393);
	    }
	
	    if (option == ACTION_DEFAULT_3 + 4)//Enchanting
	    {
	        gossiper.GossipPOI(-2263.5f, 5563.5f, "High Enchanter Bardolan");
	        gossiper.GossipFlush(sender, 10395);
	    }
	
	    if (option == ACTION_DEFAULT_3 + 5)//First Aid
	    {
	        gossiper.GossipPOI(-1591f, 5265.5f, "Mildred Fletcher");
	        gossiper.GossipFlush(sender, 10396);
	    }
	
	    if (option == ACTION_DEFAULT_3 + 6)//jewelcrafting
	    {
	        gossiper.GossipPOI(-1654f, 5667.5f, "Hamanar");
	        gossiper.GossipFlush(sender, 10397);
	    }
	
	    if (option == ACTION_DEFAULT_3 + 7)//Leatherworking
	    {
	        gossiper.GossipPOI(-2060.5f, 5256.5f, "Darmari");
	        gossiper.GossipFlush(sender, 10399);
	    }
	
	    if (option == ACTION_DEFAULT_3 + 8)//Skinning
	    {
	        gossiper.GossipPOI(-2048f, 5300f, "Seymour");
	        gossiper.GossipFlush(sender, 10398);
	    }

	}
	#endregion

	public void GossipSelect(IScriptPlayer gossiper, IScriptCreature sender, int option)
	{
		DefaultGossip(gossiper, sender, option);
		AldorScryerGossip(gossiper, sender, option);
		ProfessionTrainerGossip(gossiper, sender, option);
		BattleMasterGossip(gossiper, sender, option);
	}
}

</pre><br />
<br />
edit: In your database this goes to NPC #'s 19687,18568,18549]]></description>
		<pubDate>Wed, 03 Mar 2010 01:58:04 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8102</guid>
	</item>
	<item>
		<title>Looking For Group</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8098</link>
		<description>Hi I am looking for some horde people to do some dungeons this week.</description>
		<pubDate>Thu, 25 Feb 2010 11:50:29 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8098</guid>
	</item>
	<item>
		<title>Serpentshrine Cavern</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8099</link>
		<description><![CDATA[Hey Guys i just want to find out does the  serpentshrine cavern inctance work cause i cant seem to get the waterfall to stop to get to the entrance of the inctance <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/biggrin.gif' class='bbc_emoticon' alt=':D' />]]></description>
		<pubDate>Wed, 24 Feb 2010 19:42:31 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8099</guid>
	</item>
	<item>
		<title>Teamspeak</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8077</link>
		<description><![CDATA[I dont know about you guys, but I think it would be nice if we had teamspeak server. We could speak to each other at real time, while playing wow. As we have a low population server, it would be awesome if we could speak each other in the whole world together while playing wow.<br />
Think about it. xD<br />
<br />
I hope I have helped<br />
<a href='http://twitter.com/presenteador' class='bbc_url' title='External link' rel='nofollow'>Presenteador</a><br />
<br />
<span style='font-size: 13px;'>"What does not cause my death makes me grow stronger"</span><br />
<a href='http://profile.xfire.com/presenteador' class='bbc_url' title='External link' rel='nofollow'>http://miniprofile.xfire.com/bg/sh/type/2/presenteador.png</a>]]></description>
		<pubDate>Tue, 23 Feb 2010 10:07:48 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8077</guid>
	</item>
	<item>
		<title>Voice Chat</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8097</link>
		<description><![CDATA[Good day everyone <br />
<br />
I just want to find out if voice chat is enabled on the server (relm)<br />
<br />
thanks]]></description>
		<pubDate>Thu, 18 Feb 2010 06:26:23 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8097</guid>
	</item>
	<item>
		<title>Tired Of Wotlk Login Screen</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8096</link>
		<description><![CDATA[For the first week or two I thought that the new login-screen to wotlk was a fresh breeze compared to the two earlier ones (classic and bc). But lately I've grown extremely tired of the wotlk-screen with Sindragosa roaring around. So I did some quick googling and found this handy little tool that let you change the login-screen, so now I'm currently back at the good'ol WoW preBC login-screen.<br />
<br />
I tested the tool with 3.2.2 and it works fine, but I only tested changing to the original screen so far. I recommend you to make a backup of the original wow.exe so you can change back for future patches or if something would go wrong.<br />
PS. It also works for mac-users since the tool is a java-file (.jar)<br />
<br />
Just sharing the find if someone else also grown tired of the new login-screen.<br />
<br />
Instructions:<br />
<br />
1. Extract folder WowBgTweaker_v3.0 to anywhere on your computer.<br />
<br />
2. Inside the folder will be WowBgTweaker_v3.0.Jar, Run it with Java.<br />
<br />
3. Set Path to your world of warcraft directory, & Choose either Wow.exe(windows)<br />
<br />
or World of Warcraft.App(for mac)<br />
<br />
4. Check the box "Select login screen background" Choose Custom, then choose the<br />
<br />
one you prefer. I chose 'Classic'<br />
<br />
5. Check the box "Select login screen music:" You can either have Original(WOTLK)<br />
<br />
No music, or choose an mp3 file & have it as your login screen music.<br />
<br />
6. Click apply, enjoy <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
<div class='bbc_center'><strong class='bbc'><a href='http://www.zshare.net/download/7031150814d956d6/' class='bbc_url' title='External link' rel='nofollow'>DOWNLOAD HERE</a></strong><br />
</div>]]></description>
		<pubDate>Sat, 13 Feb 2010 03:06:21 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8096</guid>
	</item>
	<item>
		<title>Elite Players !?</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8095</link>
		<description><![CDATA[I have heard that players can become elite , just like mobs , but I don't know how this is posible . <br />
If any1 of you know how to become an elite player pls reply below  <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/biggrin.gif' class='bbc_emoticon' alt=':D' /> <br />
Tnx . Bye !]]></description>
		<pubDate>Wed, 10 Feb 2010 17:02:06 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8095</guid>
	</item>
	<item>
		<title>Bugs</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8091</link>
		<description>first of all theres a bug in the quest of Thwarting Kolkar Aggression that when im going to get the attack plan to senjin village the server logs off, every time i try to get it it logs me off.another problem is that in the hunter pet quest when i try to dismiss the pet i always get a message that says your worket threat encontered a fatal exception dont know what that means i need help on that. and last and not least the quest of hidden enemies of thrall i try to talk to neeru fireblade but nothin happens so help on that 2 if u could fix that it would be cool</description>
		<pubDate>Sun, 07 Feb 2010 18:08:37 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8091</guid>
	</item>
	<item>
		<title>ALONE !</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=7997</link>
		<description><![CDATA[<div class='bbc_center'>EVERYBODY .... WTH !!!<br />
<br />
I have been playing on code for 1 week alone ... I don't see anyone online except my char. and its shadow ... !!!!<br />
<br />
all of u ... admins ... advertise .... players ... play... GMs... help ppl ....  <br />
<br />
<br />
<br />
<br />
</div>]]></description>
		<pubDate>Sun, 07 Feb 2010 04:55:11 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=7997</guid>
	</item>
	<item>
		<title>Another Action Is In Progress</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8090</link>
		<description><![CDATA[my warlock character keeps on getting that error "Another action is in progress" and can't do anything atm <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/sad.gif' class='bbc_emoticon' alt=':(' />. My other chars work though. Does anyone know how to fix this?]]></description>
		<pubDate>Fri, 05 Feb 2010 23:14:20 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8090</guid>
	</item>
	<item>
		<title>Codeserver.org Domain Transfer</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8006</link>
		<description><![CDATA[This weekend our main domain, codeserver.org will be transferred to a new hosting location. Our current (and soon previous) hoster does not offer domain nor hosting services anymore. I am not sure how long it will take before the domain is fully transferred. Note that this might imply some downtime. Your ISP's nameservers should be updated in 1 hour but it can also take as long as 48-72 hours depending on the DNS policy of your ISP.<br />
<br />
<em class='bbc'>The forums will not be affected by this transfer.</em>]]></description>
		<pubDate>Tue, 02 Feb 2010 12:09:47 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8006</guid>
	</item>
	<item>
		<title>Questhelper Addon</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8089</link>
		<description><![CDATA[Hi there,<br />
<br />
I just found and installed QuestHelper addon which I think is very helpful.<br />
To be in accordance with the rules and regulations, I would like to know if I can keep using it.]]></description>
		<pubDate>Tue, 02 Feb 2010 05:53:01 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8089</guid>
	</item>
	<item>
		<title>Website Organization</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8075</link>
		<description><![CDATA[<span style='font-size: 13px;'>Hello.<br />
<br />
First time I logged in the site, I almost quit because the website have few information to players who dont know the server yet. I just insisted because I was testing a lot of servers 3.3.0a But I was angry and I didnt found what I wanted. I was trying to see the realmlist, first of all... and assuming I never entered this server before, I was thinking to enter a forum is waste of time, so I just found the realmlist because I put it on Google search "codeserver realmlist"... I was just researching servers to I find out where I would play.<br />
So, my suggestion is.. If players goes to the website and need to enter the forum to know about the server.. I think players will not like it.. lots of people avoid forums as I do. I just like forums when I feel Im part of it. I never enter a forum when I think I will no be there much longer.<br />
<br />
So, my suggestion is... design a more interactive website, where players and potential players can easily see: (Ill say what I like to see on servers info...) realmlist, XP rate, drop rate, gold rate, nunber of players online, GMs online, wow Armory, version of game, server status, uptime.. etc..<br />
<br />
I hope I have helped.<br />
<a href='http://twitter.com/presenteador' class='bbc_url' title='External link' rel='nofollow'>Presenteador</a><br />
"Being like Jesus does not mean to be christian, it means to be human"</span><br />
<span style='font-size: 13px;'><br />
</span><br />
<span style='font-size: 13px;'><a href='http://profile.xfire.com/presenteador' class='bbc_url' title='External link' rel='nofollow'>http://miniprofile.xfire.com/bg/sh/type/2/presenteador.png</a></span>]]></description>
		<pubDate>Mon, 01 Feb 2010 19:51:33 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8075</guid>
	</item>
	<item>
		<title>Guild</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8083</link>
		<description>My friend darkriku(ingame name) made a guild and I joined but I didn`t see my name on guild page so I tryed to leave the guild so darkriku said how but he forgot to not put/ and he left the guild and he is the only one who could invite people so how can he joins again?</description>
		<pubDate>Mon, 01 Feb 2010 14:31:27 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8083</guid>
	</item>
	<item>
		<title>Event Brainstorming</title>
		<link>http://www.codeforums.org/forum_beta/index.php?showtopic=8082</link>
		<description><![CDATA[I can come up with some weird ideas when it comes to events, but I'd like to know if you've got some ideas you'd like to see become true?<br />
Kissofdeath sent me one idea which I will take into consideration.<br />
You just have to think about these things.<br />
<br />
<ul class='bbc'><li>Event should be doable with quite few players.</li><li>Prices will be chosen depending on the difficulty of your idea, <span class='bbc_underline'>I choose the prices</span>.</li><li>Since I don't want to overpower some players with good gear (because of the not to high population atm), prices will not be very high.</li><li>You can choose what location the event will be at, but instances,dungeons and other "special" places will not be accepted. Arenas should be ok.</li><li>Event can include mobs, but remember that they have to be unfriendly with both factions.</li></ul><br />
Player that comes with the best idea will get some sort of <span class='bbc_underline'>small</span> price <img src='http://www.codeforums.org/forum_beta/public/style_emoticons/default/wink.gif' class='bbc_emoticon' alt=';)' /><br />
Perhaps I'll turn it into a poll so you can vote for the best idea.<br />
<br />
<span class='bbc_underline'><strong class='bbc'>Example of idea-submission:</strong></span><br />
<br />
<span style='color: #0000ff'>Eventname</span> : I Will Kill U All!<br />
<span style='color: #0000ff'>Location</span> : Gurubashi Arena<br />
<span style='color: #0000ff'>Level Requirements</span> : Class 1 ( Level 1 to 20) , Class 2 ( Level 21 to 80 )<br />
<span style='color: #0000ff'>Mobs present</span> : No mobs, just mighty me!<br />
<span style='color: #0000ff'>Description</span> : I will be placed in the middle of the arena with my lvl 95 Warrior Mage and everone else fights me!]]></description>
		<pubDate>Sat, 30 Jan 2010 20:57:59 +0000</pubDate>
		<guid>http://www.codeforums.org/forum_beta/index.php?showtopic=8082</guid>
	</item>
</channel>
</rss>