Merge commit '13110356aabbcc69d83ce29d8f9e5bec27812009'

Conflicts:
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/deathtag/kits/KitArcher.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/dragons/kits/KitCoward.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/dragons/kits/KitMarksman.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/dragons/kits/KitPyrotechnic.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/horsecharge/kits/KitDefenceArcher.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/horsecharge/kits/KitHorseKnight.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/quiver/kits/KitBrawler.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/quiver/kits/KitElementalist.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/quiver/kits/KitLeaper.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/turfforts/kits/KitInfiltrator.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/turfforts/kits/KitMarksman.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/minigames/turfforts/kits/KitShredder.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/castlesiege/kits/KitHumanElementalist.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/castlesiege/kits/KitHumanKnight.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/castlesiege/kits/KitHumanMarksman.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/castlesiege/kits/KitHumanPeasant.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/zombiesurvival/kits/KitSurvivorArcher.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/zombiesurvival/kits/KitSurvivorKnight.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/zombiesurvival/kits/KitSurvivorRogue.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/standalone/zombiesurvival/kits/KitUndeadAlpha.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/kit/Kit.java
	Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/managers/GameLobbyManager.java
This commit is contained in:
Chiss 2013-08-31 13:41:58 +10:00
commit 81f8503180
410 changed files with 679 additions and 207890 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="loc" default="GemAccountSystem" basedir=".">
<target name ="GemAccountSystem" description="GemAccountSystem">
<jar jarfile="../bin/GemAccountSystem.jar">
<project name="loc" default="EnjinTranslator" basedir=".">
<target name ="EnjinTranslator" description="EnjinTranslator">
<jar jarfile="../bin/EnjinTranslator.jar">
<fileset dir="../Mineplex.Core/bin">
<include name="**/*.class"/>
</fileset>
@ -9,10 +9,10 @@
<include name="**/*.class"/>
</fileset>
<fileset dir="../Mineplex.Minecraft.GemAccountSystem/bin">
<fileset dir="../Mineplex.EnjinTranslator/bin">
<include name="**/*.class"/>
</fileset>
<fileset dir="../Mineplex.Minecraft.GemAccountSystem">
<fileset dir="../Mineplex.EnjinTranslator">
<include name="*.yml"/>
</fileset>
@ -20,6 +20,6 @@
<zipfileset src="../Libraries/httpcore-4.2.jar" />
<zipfileset src="../Libraries/commons-logging-1.1.1.jar" />
</jar>
<copy file="../bin/GemAccountSystem.jar" todir="../../Testing/GemAccountSystem/plugins"/>
<copy file="../bin/EnjinTranslator.jar" todir="../../Testing/EnjinTranslator/plugins"/>
</target>
</project>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre7"/>
<classpathentry kind="var" path="REPO_DIR/Plugins/Libraries/BungeeCord.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7

View File

@ -0,0 +1,4 @@
name: LobbyBalancer
main: mineplex.bungee.lobbyBalancer.LobbyBalancer
version: 1
author: defek7

View File

@ -0,0 +1,231 @@
package mineplex.bungee.lobbyBalancer;
import java.io.DataInput;
import java.io.DataInputStream;
import java.io.DataOutput;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.ConnectException;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.net.SocketTimeoutException;
import java.util.HashMap;
import java.util.Map.Entry;
import java.util.concurrent.TimeUnit;
import net.md_5.bungee.api.event.ServerConnectEvent;
import net.md_5.bungee.api.plugin.Listener;
import net.md_5.bungee.api.plugin.Plugin;
import net.md_5.bungee.event.EventHandler;
public class LobbyBalancer extends Plugin implements Listener, Runnable
{
private HashMap<String, Integer> _lobbyServers = new HashMap<String, Integer>();
@Override
public void onEnable()
{
loadLobbyServers();
getProxy().getPluginManager().registerListener(this, this);
getProxy().getScheduler().schedule(this, this, 1L, 1L, TimeUnit.SECONDS);
}
@EventHandler
public void playerConnect(ServerConnectEvent event)
{
if (!event.getTarget().getName().equalsIgnoreCase("Lobby"))
return;
String bestServer = null;
Entry<String, Integer> leastPlayerServer = null;
for (Entry<String, Integer> entry : _lobbyServers.entrySet())
{
if (entry.getValue() == 999)
continue;
if (bestServer == null)
{
bestServer = entry.getKey();
leastPlayerServer = entry;
}
else if (entry.getValue() > _lobbyServers.get(bestServer) && entry.getValue() < 80)
bestServer = entry.getKey();
if (entry.getValue() < leastPlayerServer.getValue())
{
leastPlayerServer = entry;
}
}
if (_lobbyServers.get(bestServer) > 80)
{
bestServer = leastPlayerServer.getKey();
}
event.setTarget(getProxy().getServerInfo(bestServer));
}
public void run()
{
for (String name : _lobbyServers.keySet())
{
try
{
UpdateServerCount(name);
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
protected void UpdateServerCount(String name) throws IOException
{
InetSocketAddress address = getProxy().getServerInfo(name).getAddress();
Socket socket = null;
DataInputStream dataInputStream = null;
DataOutputStream dataOutputStream = null;
try
{
socket = new Socket();
socket.setSoTimeout(3000);
socket.setTcpNoDelay(true);
socket.setTrafficClass(18);
socket.connect(address, 3000);
dataInputStream = new DataInputStream(socket.getInputStream());
dataOutputStream = new DataOutputStream(socket.getOutputStream());
dataOutputStream.writeByte(254);
dataOutputStream.writeByte(1);
dataOutputStream.writeByte(254);
writeString("MC|PingHost", dataOutputStream);
dataOutputStream.writeShort(3 + 2 * address.getAddress().getHostName().length() + 4);
dataOutputStream.writeByte(73);
writeString(address.getAddress().getHostName(), dataOutputStream);
dataOutputStream.writeInt(address.getPort());
if (dataInputStream.read() != 255)
{
System.out.println("not 255");
return;
}
String var6 = readString(dataInputStream, 256);
String[] var27;
if (var6.startsWith("\u00a7") && var6.length() > 1)
{
var27 = var6.substring(1).split("\u0000");
_lobbyServers.put(name, Integer.parseInt(var27[4]));
}
}
catch (SocketTimeoutException e)
{
_lobbyServers.put(name, 999);
}
catch (ConnectException e)
{
_lobbyServers.put(name, 999);
}
catch (IOException e)
{
System.out.println("[LobbyBalancer IOException] Error pinging " + address.getHostString() + ":" + address.getPort());
_lobbyServers.put(name, 999);
throw e;
}
finally
{
try
{
if (dataInputStream != null)
{
dataInputStream.close();
}
}
catch (Exception exception)
{
;
}
try
{
if (dataOutputStream != null)
{
dataOutputStream.close();
}
}
catch (Exception exception)
{
;
}
try
{
if (socket != null)
{
socket.close();
}
}
catch (Exception exception)
{
;
}
}
}
public static void writeString(String par0Str, DataOutput par1DataOutput) throws IOException
{
if (par0Str.length() > 32767)
{
throw new IOException("String too big");
}
else
{
par1DataOutput.writeShort(par0Str.length());
par1DataOutput.writeChars(par0Str);
}
}
public static String readString(DataInput par0DataInput, int par1) throws IOException
{
short var2 = par0DataInput.readShort();
if (var2 > par1)
{
throw new IOException("Received string length longer than maximum allowed (" + var2 + " > " + par1 + ")");
}
else if (var2 < 0)
{
throw new IOException("Received string length is less than zero! Weird string!");
}
else
{
StringBuilder var3 = new StringBuilder();
for (int var4 = 0; var4 < var2; ++var4)
{
var3.append(par0DataInput.readChar());
}
return var3.toString();
}
}
private void loadLobbyServers()
{
for (String key : getProxy().getServers().keySet())
{
if (key.toUpperCase().contains("LOBBY"))
{
_lobbyServers.put(key, 0);
}
}
}
}

View File

@ -2,7 +2,6 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre7"/>
<classpathentry kind="var" path="REPO_DIR/Plugins/Libraries/bukkit.jar"/>
<classpathentry kind="var" path="REPO_DIR/Plugins/Libraries/craftbukkit.jar" sourcepath="/REPO_DIR/GitHubLibraries/CraftBukkit/src"/>
<classpathentry kind="var" path="REPO_DIR/Plugins/bin/craftbukkit.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -6,6 +6,7 @@ import java.util.LinkedList;
import net.minecraft.server.v1_6_R2.EntityCreature;
import net.minecraft.server.v1_6_R2.EntityHuman;
import net.minecraft.server.v1_6_R2.EntityMonster;
import net.minecraft.server.v1_6_R2.EntityInsentient;
import net.minecraft.server.v1_6_R2.PathfinderGoalLookAtPlayer;
import net.minecraft.server.v1_6_R2.PathfinderGoalMoveTowardsRestriction;
@ -68,7 +69,12 @@ public class UtilEnt
_bsRestrictionGoal.set(creature, new PathfinderGoalMoveTowardsRestriction(creature, 0D));
}
if (((CraftEntity)entity).getHandle() instanceof EntityMonster)
{
((EntityMonster)((CraftEntity)entity).getHandle()).Vegetated = true;
}
if (((CraftEntity)entity).getHandle() instanceof EntityInsentient)
{
EntityInsentient creature = (EntityInsentient)((CraftEntity)entity).getHandle();

View File

@ -25,6 +25,11 @@ public abstract class DisguiseBase
{
DataWatcher.watch(0, Entity.getDataWatcher().getByte(0));
DataWatcher.watch(1, Entity.getDataWatcher().getShort(1));
if (this instanceof DisguiseEnderman)
{
DataWatcher.watch(0, Byte.valueOf((byte)(DataWatcher.getByte(0) & ~(1 << 0))));
}
}
public abstract Packet GetSpawnPacket();

View File

@ -1,5 +1,11 @@
package mineplex.core.disguise.disguises;
import java.util.Arrays;
import net.minecraft.server.v1_6_R2.MobEffect;
import net.minecraft.server.v1_6_R2.MobEffectList;
import net.minecraft.server.v1_6_R2.PotionBrewer;
public class DisguiseEnderman extends DisguiseMonster
{
public DisguiseEnderman(org.bukkit.entity.Entity entity)
@ -9,6 +15,10 @@ public class DisguiseEnderman extends DisguiseMonster
DataWatcher.a(16, new Byte((byte)0));
DataWatcher.a(17, new Byte((byte)0));
DataWatcher.a(18, new Byte((byte)0));
int i = PotionBrewer.a(Arrays.asList(new MobEffect(MobEffectList.FIRE_RESISTANCE.id, 777)));
DataWatcher.watch(8, Byte.valueOf((byte)(PotionBrewer.b(Arrays.asList(new MobEffect(MobEffectList.FIRE_RESISTANCE.id, 777))) ? 1 : 0)));
DataWatcher.watch(7, Integer.valueOf(i));
}
public void SetCarriedId(int i)

View File

@ -16,9 +16,9 @@ public abstract class DisguiseLiving extends DisguiseBase
{
super.UpdateDataWatcher();
DataWatcher.watch(6, Entity.getDataWatcher().getFloat(6));
DataWatcher.watch(7, Entity.getDataWatcher().getInt(7));
DataWatcher.watch(8, Entity.getDataWatcher().getByte(8));
DataWatcher.watch(9, Entity.getDataWatcher().getByte(9));
//DataWatcher.watch(6, Entity.getDataWatcher().getFloat(6));
//DataWatcher.watch(7, Entity.getDataWatcher().getInt(7));
//DataWatcher.watch(8, Entity.getDataWatcher().getByte(8));
//DataWatcher.watch(9, Entity.getDataWatcher().getByte(9));
}
}

View File

@ -74,7 +74,9 @@ public class DonationManager implements Listener
{
if (oneTimePurchase && donor.OwnsUnknownPackage(packageName))
{
callback.run(TransactionResponse.AlreadyOwns);
if (callback != null)
callback.run(TransactionResponse.AlreadyOwns);
return;
}
}
@ -94,7 +96,8 @@ public class DonationManager implements Listener
}
}
callback.run(response);
if (callback != null)
callback.run(response);
}
}, name, packageName, gemCost);
}
@ -115,7 +118,8 @@ public class DonationManager implements Listener
}
}
callback.run(response);
if (callback != null)
callback.run(response);
}
}, name, salesPackageId);
}

View File

@ -197,7 +197,7 @@ public class Punish extends MiniPlugin
UtilPlayer.message(caller, F.main(_moduleName, "Commands List:"));
UtilPlayer.message(caller, F.help("/punish", "<player> <reason>", Rank.MODERATOR));
}
public void AddPunishment(final String playerName, final Category category, final String reason, final Player caller, final int severity, boolean ban, long duration)
{
if (!_punishClients.containsKey(playerName.toLowerCase()))
@ -219,11 +219,15 @@ public class Punish extends MiniPlugin
{
if (caller != null)
caller.sendMessage(F.main(GetName(), "Account with name " + F.elem(playerName) + " does not exist."));
else
System.out.println(F.main(GetName(), "Account with name " + F.elem(playerName) + " does not exist."));
}
else if (banResult == PunishmentResponse.InsufficientPrivileges)
{
if (caller != null)
caller.sendMessage(F.main(GetName(), "You have insufficient rights to punish " + F.elem(playerName) + "."));
else
System.out.println(F.main(GetName(), "You have insufficient rights to punish " + F.elem(playerName) + "."));
}
else if (banResult == PunishmentResponse.Punished)
{
@ -231,15 +235,21 @@ public class Punish extends MiniPlugin
if (sentence == PunishmentSentence.Ban)
{
if (caller == null)
System.out.println(F.main(GetName(), F.elem(caller == null ? "Mineplex Enjin Server" : caller.getName()) + " banned " + F.elem(playerName) + " because of " + F.elem(reason) + " for " + durationString + "."));
UtilPlayer.kick(UtilPlayer.searchOnline(null, playerName, false), GetName(), caller == null ? "Mineplex" : caller.getName() + " banned you because of " + F.elem(reason) + " for " +
UtilPlayer.kick(UtilPlayer.searchOnline(null, playerName, false), GetName(), caller == null ? "Mineplex Enjin Server" : caller.getName() + " banned you because of " + F.elem(reason) + " for " +
durationString + ".");
UtilServer.broadcast(F.main(GetName(), F.elem(caller == null ? "Mineplex" : caller.getName()) + " banned " + F.elem(playerName) + " because of " + F.elem(reason) + " for " + durationString + "."));
UtilServer.broadcast(F.main(GetName(), F.elem(caller == null ? "Mineplex Enjin Server" : caller.getName()) + " banned " + F.elem(playerName) + " because of " + F.elem(reason) + " for " + durationString + "."));
}
else
{
UtilServer.broadcast(F.main(GetName(), F.elem(caller == null ? "Mineplex" : caller.getName()) + " muted " + F.elem(playerName) + " because of " + F.elem(reason) + " for " +
if (caller == null)
System.out.println(F.main(GetName(), F.elem(caller == null ? "Mineplex Enjin Server" : caller.getName()) + " muted " + F.elem(playerName) + " because of " + F.elem(reason) + " for " +
durationString + "."));
UtilServer.broadcast(F.main(GetName(), F.elem(caller == null ? "Mineplex Enjin Server" : caller.getName()) + " muted " + F.elem(playerName) + " because of " + F.elem(reason) + " for " +
durationString + "."));
_repository.LoadPunishClient(playerName, new Callback<PunishClientToken>()
@ -252,7 +262,7 @@ public class Punish extends MiniPlugin
}
}
}
}, playerName, category.toString(), sentence, reason, duration, caller == null ? "Mineplex" : caller.getName(), severity, System.currentTimeMillis());
}, playerName, category.toString(), sentence, reason, duration, caller == null ? "Mineplex Enjin Server" : caller.getName(), severity, System.currentTimeMillis());
}
public void LoadClient(PunishClientToken token)

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre7"/>
<classpathentry kind="var" path="REPO_DIR/Plugins/Libraries/craftbukkit.jar" sourcepath="/REPO_DIR/GitHubLibraries/CraftBukkit/src"/>
<classpathentry combineaccessrules="false" kind="src" path="/Mineplex.Core"/>
<classpathentry combineaccessrules="false" kind="src" path="/Mineplex.Core.Common"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType">
<booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/>
<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/>
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/>
<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value=""/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${BUILD_FILES}/EnjinTranslator.xml"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,auto,"/>
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/Mineplex.EnjinTranslator}"/>
</launchConfiguration>

View File

@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7

View File

@ -0,0 +1,12 @@
name: EnjinTranslator
main: mineplex.enjinTranslator.EnjinTranslator
version: 0.1
commands:
enjin_mineplex:
description: Translates enjin commands to mineplex.
usage: Don't use it, you get kicked.
aliases:
pull:
description: Translates enjin commands to mineplex.
usage: Don't use it, you get kicked.
aliases:

View File

@ -1,21 +1,34 @@
package mineplex.core.enjin;
package mineplex.enjinTranslator;
import java.util.List;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.server.ServerCommandEvent;
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
import org.bukkit.plugin.java.JavaPlugin;
import com.google.common.reflect.TypeToken;
import mineplex.core.MiniPlugin;
import mineplex.core.account.CoreClientManager;
import mineplex.core.donation.DonationManager;
import mineplex.core.punish.Category;
import mineplex.core.punish.Punish;
import mineplex.core.server.remotecall.JsonWebCall;
import mineplex.core.updater.UpdateType;
import mineplex.core.updater.event.UpdateEvent;
public class Enjin extends MiniPlugin
public class Enjin extends MiniPlugin implements CommandExecutor
{
private CoreClientManager _clientManager;
private DonationManager _donationManager;
private Punish _punish;
public long _lastPoll = System.currentTimeMillis() - 120000;
public Enjin(JavaPlugin plugin, CoreClientManager clientManager, DonationManager donationManager, Punish punish)
{
super("Enjin", plugin);
@ -23,28 +36,39 @@ public class Enjin extends MiniPlugin
_clientManager = clientManager;
_donationManager = donationManager;
_punish = punish;
plugin.getCommand("enjin_mineplex").setExecutor(this);
plugin.getCommand("pull").setExecutor(this);
}
@EventHandler
public void ServerCommand(ServerCommandEvent event)
public void pollLastPurchases(UpdateEvent event)
{
String label = event.getCommand();
String[] args = null;
if (event.getType() != UpdateType.MIN_01)
return;
if (label.contains(" "))
{
label = label.split(" ")[0];
args = event.getCommand().substring(event.getCommand().indexOf(' ') + 1).split(" ");
}
if (label.equalsIgnoreCase("enjin"))
//@SuppressWarnings("serial")
//List<EnjinPurchase> purchases = new JsonWebCall("http://www.mineplex.com/api/m-shopping-purchases/m/14702725").Execute(new TypeToken<List<EnjinPurchase>>(){}.getType(), null);
//_lastPoll = System.currentTimeMillis();
}
@Override
public boolean onCommand(CommandSender sender, Command command, String label, String[] args)
{
if (sender instanceof Player)
((Player)sender).kickPlayer("Like bananas? I don't. Here take these and go have fun.");
if (label.equalsIgnoreCase("enjin_mineplex"))
{
System.out.println("enjin command");
if (args.length == 3 && args[0].equalsIgnoreCase("gem"))
{
String name = args[1];
int amount = Integer.parseInt(args[2]);
_donationManager.RewardGems(name, amount);
System.out.println("enjin gem");
}
else if (args.length == 4 && args[0].equalsIgnoreCase("rank"))
{
@ -53,6 +77,7 @@ public class Enjin extends MiniPlugin
boolean perm = Boolean.parseBoolean(args[3]);
_clientManager.SaveRank(name, mineplex.core.common.Rank.valueOf(rank), perm);
System.out.println("enjin rank");
}
else if (args.length >= 3 && args[0].equalsIgnoreCase("purchase"))
{
@ -66,6 +91,7 @@ public class Enjin extends MiniPlugin
}
_donationManager.PurchaseUnknownSalesPackage(null, name, packageName, 0, false);
System.out.println("enjin purchase");
}
else if (args.length >= 3 && args[0].equalsIgnoreCase("unban"))
{
@ -78,6 +104,7 @@ public class Enjin extends MiniPlugin
}
_punish.RemoveBan(name, reason);
System.out.println("enjin unban");
}
else if (args.length >= 3 && args[0].equalsIgnoreCase("ban"))
{
@ -90,7 +117,10 @@ public class Enjin extends MiniPlugin
}
_punish.AddPunishment(name, Category.Other, reason, null, 3, true, -1);
System.out.println("enjin ban");
}
}
return true;
}
}

View File

@ -0,0 +1,8 @@
package mineplex.enjinTranslator;
import java.util.List;
public class EnjinLastPurchases
{
public List<EnjinPurchase> purchases;
}

View File

@ -0,0 +1,37 @@
package mineplex.enjinTranslator;
import java.util.List;
public class EnjinPurchase
{
public User user;
public List<Item> items;
public long purchase_date;
public String currency;
public String character;
public List<String> commands;
public String toString()
{
String itemStr = " items: {";
if (items != null)
{
for (Item item : items)
{
itemStr += " item_id:" + item.item_id + " item_name:" + item.item_name + " item_price:" + item.item_price;
}
}
itemStr += "}";
String userStr = " user : ";
if (user != null)
{
userStr += "user_id:" + user.user_id + " username:" + user.username;
}
return "EnjinePurchase - " + userStr + " " + itemStr + " purchase_date:" + purchase_date + " currency:" + currency + " character:" + character;
}
}

View File

@ -0,0 +1,44 @@
package mineplex.enjinTranslator;
import mineplex.core.account.CoreClientManager;
import mineplex.core.command.CommandCenter;
import mineplex.core.donation.DonationManager;
import mineplex.core.punish.Punish;
import mineplex.core.updater.Updater;
import org.bukkit.plugin.java.JavaPlugin;
public class EnjinTranslator extends JavaPlugin
{
private String WEB_CONFIG = "webServer";
@Override
public void onEnable()
{
getConfig().addDefault(WEB_CONFIG, "http://api.mineplex.com/");
getConfig().set(WEB_CONFIG, getConfig().getString(WEB_CONFIG));
saveConfig();
//Core Modules
CoreClientManager clientManager = CoreClientManager.Initialize(this, GetWebServerAddress());
DonationManager donationManager = new DonationManager(this, GetWebServerAddress());
//Static Modules
CommandCenter.Initialize(this, clientManager);
//Other Modules
Punish punish = new Punish(this, GetWebServerAddress());
//Main Modules
new Enjin(this, clientManager, donationManager, punish);
new Updater(this);
}
public String GetWebServerAddress()
{
String webServerAddress = getConfig().getString(WEB_CONFIG);
return webServerAddress;
}
}

View File

@ -0,0 +1,7 @@
package mineplex.enjinTranslator;
public class User
{
public int user_id;
public String username;
}

View File

@ -6,7 +6,6 @@ import mineplex.core.command.CommandCenter;
import mineplex.core.creature.Creature;
import mineplex.core.disguise.DisguiseManager;
import mineplex.core.donation.DonationManager;
import mineplex.core.enjin.Enjin;
import mineplex.core.itemstack.ItemStackFactory;
import mineplex.core.message.MessageManager;
import mineplex.core.npc.NpcManager;
@ -46,7 +45,7 @@ public class Hub extends JavaPlugin implements INautilusPlugin
Recharge.Initialize(this);
//Other Modules
Punish punish = new Punish(this, GetWebServerAddress());
new Punish(this, GetWebServerAddress());
Creature creature = new Creature(this);
new MessageManager(this, clientManager);
new NpcManager(this, creature);
@ -55,7 +54,6 @@ public class Hub extends JavaPlugin implements INautilusPlugin
//Main Modules
new HubManager(this, clientManager, donationManager);
new Stacker(this);
new Enjin(this, clientManager, donationManager, punish);
new ServerManager(this, clientManager, donationManager, new Portal(this));
new MemoryFix(this);
new DisguiseManager(this, new PacketHandler(this));

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.minigames.deathtag.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -46,8 +46,7 @@ public class KitArcher extends Kit
}
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.CHAINMAIL_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.CHAINMAIL_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.CHAINMAIL_LEGGINGS));

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.minigames.dragons.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -46,8 +46,7 @@ public class KitCoward extends Kit
}
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.LEATHER_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.LEATHER_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.LEATHER_LEGGINGS));

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.minigames.dragons.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -46,7 +46,7 @@ public class KitMarksman extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.CHAINMAIL_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.CHAINMAIL_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.CHAINMAIL_LEGGINGS));

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.minigames.dragons.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -44,7 +44,7 @@ public class KitPyrotechnic extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.GOLD_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.GOLD_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.GOLD_LEGGINGS));

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.minigames.horsecharge.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -45,7 +45,7 @@ public class KitDefenceArcher extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.LEATHER_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.LEATHER_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.LEATHER_LEGGINGS));

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.minigames.horsecharge.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -45,7 +45,7 @@ public class KitHorseKnight extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.IRON_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.IRON_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.IRON_LEGGINGS));

View File

@ -1,6 +1,7 @@
package nautilus.game.arcade.game.minigames.quiver.kits;
import org.bukkit.Material;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

View File

@ -1,6 +1,7 @@
package nautilus.game.arcade.game.minigames.quiver.kits;
import org.bukkit.Material;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

View File

@ -1,6 +1,7 @@
package nautilus.game.arcade.game.minigames.quiver.kits;
import org.bukkit.Material;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -27,7 +28,7 @@ public class KitLeaper extends Kit
new Perk[]
{
new PerkLeap("Leap", 1.2, 1.0, 8000)
new PerkLeaper("Leap", 1.2, 1.0, 8000)
},
EntityType.ZOMBIE,
new ItemStack(Material.IRON_AXE));

View File

@ -1,6 +1,7 @@
package nautilus.game.arcade.game.minigames.turfforts.kits;
import org.bukkit.Material;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

View File

@ -1,6 +1,7 @@
package nautilus.game.arcade.game.minigames.turfforts.kits;
import org.bukkit.Material;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -44,5 +45,4 @@ public class KitMarksman extends Kit
player.getInventory().addItem(ItemStackFactory.Instance.CreateStack(Material.WOOL, Manager.GetGame().GetTeam(player).GetColorData(), amount));
}
}

View File

@ -1,6 +1,7 @@
package nautilus.game.arcade.game.minigames.turfforts.kits;
import org.bukkit.Material;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

View File

@ -70,7 +70,7 @@ public class KitHumanElementalist extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.GOLD_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.GOLD_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.GOLD_LEGGINGS));

View File

@ -77,7 +77,7 @@ public class KitHumanKnight extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.IRON_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.IRON_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.IRON_LEGGINGS));

View File

@ -72,7 +72,7 @@ public class KitHumanMarksman extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.CHAINMAIL_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.CHAINMAIL_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.CHAINMAIL_LEGGINGS));

View File

@ -2,6 +2,7 @@ package nautilus.game.arcade.game.standalone.castlesiege.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.inventory.ItemStack;
@ -58,5 +59,4 @@ public class KitHumanPeasant extends Kit
{
player.getInventory().addItem(ItemStackFactory.Instance.CreateStack(Material.IRON_HOE));
}
}

View File

@ -63,6 +63,7 @@ public class KitEnderman extends SmashKit
DisguiseEnderman disguise = new DisguiseEnderman(player);
disguise.SetName(Manager.GetGame().GetTeam(player).GetColor() + player.getName());
disguise.SetCustomNameVisible(true);
disguise.a(false);
Manager.GetDisguise().Disguise(disguise);
_disguises.put(player, disguise);

View File

@ -47,7 +47,7 @@ public class KitSurvivorArcher extends Kit
@Override
public void SpawnCustom(LivingEntity ent)
{
{
ent.getEquipment().setHelmet(new ItemStack(Material.CHAINMAIL_HELMET));
ent.getEquipment().setChestplate(new ItemStack(Material.CHAINMAIL_CHESTPLATE));
ent.getEquipment().setLeggings(new ItemStack(Material.CHAINMAIL_LEGGINGS));

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.standalone.zombiesurvival.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.standalone.zombiesurvival.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
@ -26,7 +26,7 @@ public class KitSurvivorRogue extends Kit
new Perk[]
{
new PerkLeap("Leap", 1, 1, 8000),
new PerkLeaper("Leap", 1, 1, 8000),
new PerkSpeed(0)
},
EntityType.ZOMBIE,

View File

@ -1,8 +1,8 @@
package nautilus.game.arcade.game.standalone.zombiesurvival.kits;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.entity.Skeleton;
import org.bukkit.entity.Skeleton.SkeletonType;
@ -29,7 +29,7 @@ public class KitUndeadAlpha extends Kit
new Perk[]
{
new PerkLeap("Leap", 1, 1, 8000),
new PerkLeaper("Leap", 1, 1, 8000),
new PerkStrength(2),
new PerkIronSkin(2),
new PerkRegeneration(1)

View File

@ -9,7 +9,7 @@ import nautilus.game.arcade.ArcadeManager;
import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.entity.Creature;
import org.bukkit.entity.Entity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
@ -96,23 +96,24 @@ public abstract class Kit implements Listener
public abstract void GiveItems(Player player);
public LivingEntity SpawnEntity(Location loc)
public Entity SpawnEntity(Location loc)
{
EntityType type = _entityType;
if (type == EntityType.PLAYER)
type = EntityType.ZOMBIE;
LivingEntity ent = (LivingEntity)Manager.GetCreature().SpawnEntity(loc, type);
ent.setRemoveWhenFarAway(false);
ent.setCustomName(GetAvailability().GetColor() + GetName() + " Kit" + (GetAvailability() == KitAvailability.Blue ? ChatColor.GRAY + " (" + ChatColor.WHITE + "Ultra" + ChatColor.GRAY + ")" : ""));
ent.setCustomNameVisible(true);
ent.getEquipment().setItemInHand(_itemInHand);
UtilEnt.Vegetate(ent);
SpawnCustom(ent);
LivingEntity entity = (LivingEntity) Manager.GetCreature().SpawnEntity(loc, type);
return ent;
entity.setRemoveWhenFarAway(false);
entity.setCustomName(GetAvailability().GetColor() + GetName() + " Kit" + (GetAvailability() == KitAvailability.Blue ? ChatColor.GRAY + " (" + ChatColor.WHITE + "Ultra" + ChatColor.GRAY + ")" : ""));
entity.setCustomNameVisible(true);
entity.getEquipment().setItemInHand(_itemInHand);
UtilEnt.Vegetate(entity);
SpawnCustom(entity);
return entity;
}
public void SpawnCustom(LivingEntity ent) { }

View File

@ -21,9 +21,9 @@ import org.bukkit.block.BlockFace;
import org.bukkit.entity.Creature;
import org.bukkit.entity.Entity;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
import org.bukkit.entity.Sheep;
import org.bukkit.entity.Slime;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
@ -81,11 +81,11 @@ public class GameLobbyManager implements IPacketRunnable, Listener
private Location spawn;
private HashMap<LivingEntity, LobbyEnt> _kits = new HashMap<LivingEntity, LobbyEnt>();
private HashMap<Block, Material> _kitBlocks = new HashMap<Block, Material>();
private NautHashMap<Entity, LobbyEnt> _kits = new NautHashMap<Entity, LobbyEnt>();
private NautHashMap<Block, Material> _kitBlocks = new NautHashMap<Block, Material>();
private HashMap<LivingEntity, LobbyEnt> _teams = new HashMap<LivingEntity, LobbyEnt>();
private HashMap<Block, Material> _teamBlocks = new HashMap<Block, Material>();
private NautHashMap<Entity, LobbyEnt> _teams = new NautHashMap<Entity, LobbyEnt>();
private NautHashMap<Block, Material> _teamBlocks = new NautHashMap<Block, Material>();
private long _fireworkStart;
private Color _fireworkColor;
@ -377,7 +377,7 @@ public class GameLobbyManager implements IPacketRunnable, Listener
entLoc.getChunk().load();
LivingEntity ent = kit.SpawnEntity(entLoc);
Entity ent = kit.SpawnEntity(entLoc);
if (ent == null)
continue;
@ -386,7 +386,7 @@ public class GameLobbyManager implements IPacketRunnable, Listener
}
}
public void SetKitTeamBlocks(Location loc, int id, byte data, HashMap<Block, Material> blockMap)
public void SetKitTeamBlocks(Location loc, int id, byte data, NautHashMap<Block, Material> blockMap)
{
//Coloring
Block block = loc.clone().add( 0.5, 0, 0.5).getBlock();
@ -489,7 +489,7 @@ public class GameLobbyManager implements IPacketRunnable, Listener
{
for (Entity ent : UtilWorld.getWorld("world").getEntities())
{
if (ent instanceof Creature)
if (ent instanceof Creature || ent instanceof Slime)
{
if (_kits.containsKey(ent))
continue;

View File

@ -1158,7 +1158,12 @@ public abstract class GameEngine<GameType extends IGame<ArenaType, PlayerType>,
}
}
else
{
{
if (player.getItemInHand().getType() == Material.WATCH)
{
Portal.SendPlayerToServer(player, "Lobby");
}
if (player.isOp())
{
if (player.getItemInHand().getType() == Material.GHAST_TEAR)
@ -1227,10 +1232,6 @@ public abstract class GameEngine<GameType extends IGame<ArenaType, PlayerType>,
((CraftPlayer)player).getHandle().playerConnection.sendPacket(vehiclePacket);
*/
}
else if (player.getItemInHand().getType() == Material.WATCH)
{
Portal.SendPlayerToServer(player, "Lobby");
}
if (player.getItemInHand().getType() == Material.BLAZE_ROD)
{
if (event.getAction() == Action.LEFT_CLICK_AIR)

View File

@ -180,13 +180,17 @@
if (account == null)
return PunishmentResponse.AccountDoesNotExist;
var punisher = repository.Where<Account>(x => x.Name == punish.Admin).Include(x => x.Rank).FirstOrDefault();
if (!String.Equals(punish.Admin, "Mineplex Enjin Server"))
{
var punisher =
repository.Where<Account>(x => x.Name == punish.Admin).Include(x => x.Rank).FirstOrDefault();
if (punisher == null)
return PunishmentResponse.NotPunished;
if (punisher == null)
return PunishmentResponse.NotPunished;
if (punisher.Rank.RankId <= account.Rank.RankId)
return PunishmentResponse.InsufficientPrivileges;
if (punisher.Rank.RankId <= account.Rank.RankId)
return PunishmentResponse.InsufficientPrivileges;
}
var punishment = new Punishment
{

File diff suppressed because it is too large Load Diff

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="LOCContext" providerName="System.Data.SqlClient" connectionString="Server=.;Database=LOC;Trusted_Connection=true;" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="Data Source=.\SQLEXPRESS; Integrated Security=True; MultipleActiveResultSets=True" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="LOCContext" providerName="System.Data.SqlClient" connectionString="Server=.;Database=LOC;Trusted_Connection=true;" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="Data Source=.\SQLEXPRESS; Integrated Security=True; MultipleActiveResultSets=True" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +0,0 @@
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Debug\LOC.Website.Common.csprojResolveAssemblyReference.cache
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Debug\LOC.Website.Common.Properties.Resources.resources
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Debug\LOC.Website.Common.csproj.GenerateResource.Cache
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\LOC.Website.Common.dll.config
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\LOC.Website.Common.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\LOC.Website.Common.pdb
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\EntityFramework.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\LinqKit.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\LOC.Core.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\Newtonsoft.Json.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\StructureMap.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\LOC.Core.pdb
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\EntityFramework.xml
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\Newtonsoft.Json.xml
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\StructureMap.pdb
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Debug\StructureMap.xml
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Debug\LOC.Website.Common.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Debug\LOC.Website.Common.pdb

View File

@ -1,18 +0,0 @@
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\LOC.Website.Common.dll.config
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\LOC.Website.Common.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\LOC.Website.Common.pdb
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\EntityFramework.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\LinqKit.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\LOC.Core.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\Newtonsoft.Json.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\StructureMap.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\LOC.Core.pdb
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\EntityFramework.xml
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\Newtonsoft.Json.xml
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\StructureMap.pdb
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\bin\Release\StructureMap.xml
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Release\LOC.Website.Common.csprojResolveAssemblyReference.cache
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Release\LOC.Website.Common.Properties.Resources.resources
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Release\LOC.Website.Common.csproj.GenerateResource.Cache
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Release\LOC.Website.Common.dll
C:\Work\Nautilus\Minecraft\Website\LOC.Website.Common\obj\x86\Release\LOC.Website.Common.pdb

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Schema Namespace="NautilusModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
<EntityContainer Name="NautilusEntities" annotation:LazyLoadingEnabled="true" />
</Schema>

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs">
<EntityContainerMapping StorageEntityContainer="NautilusModelStoreContainer" CdmEntityContainer="NautilusEntities" />
</Mapping>

View File

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Schema Namespace="NautilusModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
<EntityContainer Name="NautilusModelStoreContainer" />
</Schema>

View File

@ -1,13 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<publishData>
<publishProfile publishUrl="ftp://64.31.10.42/inetpub/wwwroot/nautTemp" deleteExistingFiles="False" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Profile1" publishMethod="FTP" replaceMatchingFiles="True" userName="defek7" savePWD="True" userPWD="AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAlNvRLtHHmkOL9+yyXwCTygAAAAACAAAAAAADZgAAwAAAABAAAADGMVN1ySz2pPQm4fMqu/IMAAAAAASAAACgAAAAEAAAAAYrdMEZ0zjWlG/WDkhv298YAAAAJOOTaZnok2ncUrGxmif7R0jyEOZz71IGFAAAADNtWSmbew7ROqvcGpbFl4m/zi7z" SelectedForPublish="False">
<file relUrl="Content/Images/Wiki/SkillBook.png" publishTime="04/19/2013 03:44:52" />
<file relUrl="Areas/Manage/Views/Log/_CreateOrEdit.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/MicrosoftAjax.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Skills/Edit.cshtml" publishTime="01/15/2013 14:35:34" />
<file relUrl="Content/img/logobtntest.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/System.Web.WebPages.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/StructureMap.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/41_64x64.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/nStuff.UpdateControls.dll" publishTime="11/27/2012 17:05:51" />
@ -20,18 +18,15 @@
<file relUrl="Content/themes/techno/images/templatemo_home_bg.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.unobtrusive-ajax.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_middle.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/foot_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Classes/Index.cshtml" publishTime="04/19/2013 13:05:06" />
<file relUrl="Views/Paypal/ImpulseIpn.cshtml" publishTime="01/07/2013 22:28:02" />
<file relUrl="bin/Microsoft.Web.Infrastructure.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Log/Delete.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/blog_post.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Web.config" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/portfolio/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Store/Test.cshtml" publishTime="01/08/2013 01:43:43" />
<file relUrl="bin/NuGet.Core.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.validate.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/blog.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/System.Web.Razor.xml" publishTime="11/27/2012 17:05:51" />
@ -52,9 +47,7 @@
<file relUrl="Content/themes/techno/css/muffin.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Shared/Error.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Create.cshtml" publishTime="12/04/2012 23:16:11" />
<file relUrl="bin/System.Web.WebPages.Deployment.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Edit.cshtml" publishTime="12/04/2012 23:16:11" />
<file relUrl="Content/themes/techno/images/close.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/Brute.png" publishTime="04/19/2013 03:34:34" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Index.cshtml" publishTime="12/04/2012 23:18:53" />
<file relUrl="Views/Shared/_LogOnPartial.cshtml" publishTime="11/27/2012 17:05:51" />
@ -63,8 +56,9 @@
<file relUrl="Content/themes/techno/images/blog/02.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Web.config" publishTime="07/26/2013 13:16:03" />
<file relUrl="Content/themes/techno/images/arrows.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/About/Index.cshtml" publishTime="04/01/2013 08:18:30" />
<file relUrl="Content/themes/techno/portfolio.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom14.png" publishTime="04/18/2013 01:25:51" />
<file relUrl="Content/Images/dom8.png" publishTime="04/18/2013 01:45:53" />
<file relUrl="bin/System.Web.Helpers.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/Ranger.png" publishTime="04/19/2013 03:35:02" />
<file relUrl="Views/Account/ManageRoles.cshtml" publishTime="11/27/2012 17:05:51" />
@ -75,23 +69,26 @@
<file relUrl="Scripts/MicrosoftMvcAjax.debug.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_image_03.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/System.Web.Helpers.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Delete.cshtml" publishTime="12/04/2012 23:16:12" />
<file relUrl="Content/themes/techno/js/jquery-1.4.3.min.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/About/Index.cshtml" publishTime="04/01/2013 08:18:30" />
<file relUrl="Content/themes/techno/images/th_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/portfolio/04.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Skills/Index.cshtml" publishTime="01/15/2013 16:55:55" />
<file relUrl="Views/Forums/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/EntityFramework.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/Microsoft.Web.Infrastructure.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Accounts/Edit.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom6.png" publishTime="04/18/2013 01:23:24" />
<file relUrl="Content/Images/Gold.png" publishTime="04/19/2013 17:25:56" />
<file relUrl="bin/StructureMap.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery-1.4.4-vsdoc.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/_ViewStart.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/MicrosoftMvcAjax.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.WebPages.Deployment.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/Newtonsoft.Json.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/portfolio/02.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/js/lightbox.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Manage/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/PaypalTest/Index.cshtml" publishTime="12/20/2012 21:33:42" />
<file relUrl="Content/css/bootstrap-responsive.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom8.png" publishTime="04/18/2013 01:45:53" />
<file relUrl="Areas/Manage/Views/Web.config" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Home/Index.cshtml" publishTime="07/03/2013 13:36:56" />
<file relUrl="Content/themes/techno/js/prototype.js" publishTime="11/27/2012 17:05:50" />
@ -99,7 +96,6 @@
<file relUrl="Scripts/jquery-1.4.4.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/slider/02.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_image_01.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Account/LogOn.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/EntityFramework.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_image_02.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/LOC.Website.Common.pdb" publishTime="07/26/2013 13:15:45" />
@ -107,40 +103,42 @@
<file relUrl="Content/Images/Wiki/red_dye.jpg" publishTime="04/19/2013 03:12:21" />
<file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/_ViewStart.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Log/Index.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Global.asax" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_more.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/js/jquery.nivo.slider.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Delete.cshtml" publishTime="12/04/2012 23:16:12" />
<file relUrl="bin/System.Web.Mvc.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Paypal/Receipt.cshtml" publishTime="01/07/2013 22:29:06" />
<file relUrl="packages.config" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Payments/_WriteTransaction.cshtml" publishTime="02/15/2013 08:31:48" />
<file relUrl="Areas/Manage/Views/ServerManagement/Index.cshtml" publishTime="04/19/2013 15:51:04" />
<file relUrl="Content/themes/techno/images/templatemo_subpage_header.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/facebook.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/yellow_dye.jpg" publishTime="04/19/2013 03:12:14" />
<file relUrl="bin/Newtonsoft.Json.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Gamemodes.png" publishTime="04/17/2013 23:26:14" />
<file relUrl="Areas/Manage/Views/Shared/_Layout.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/WebMatrix.Data.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/img/glyphicons-halflings.png" publishTime="04/19/2013 00:40:10" />
<file relUrl="Content/Images/Truck.png" publishTime="04/19/2013 17:26:38" />
<file relUrl="Content/themes/base/images/ui-icons_222222_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/tr_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/blue_dye.jpg" publishTime="04/19/2013 03:12:46" />
<file relUrl="Areas/Manage/Views/Log/Details.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Payments/Index.cshtml" publishTime="02/15/2013 15:36:57" />
<file relUrl="Content/Images/Customization.png" publishTime="04/17/2013 23:20:46" />
<file relUrl="Content/css/bootstrap.css" publishTime="04/19/2013 00:40:10" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Details.cshtml" publishTime="12/04/2012 23:19:27" />
<file relUrl="bin/System.Web.Routing.dll" publishTime="03/18/2010 19:31:26" />
<file relUrl="bin/Moq.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.validate.unobtrusive.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/slider/ss.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom2.png" publishTime="04/18/2013 01:20:58" />
<file relUrl="bin/Intelligencia.UrlRewriter.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.nivo.slider.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/css/bootstrap.min.css" publishTime="04/19/2013 00:40:10" />
<file relUrl="bin/WebMatrix.WebData.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Wiki/Mage.png" publishTime="04/19/2013 03:34:54" />
<file relUrl="Views/Stats/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Shared/_FrontLayout.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Wiki/Knight.png" publishTime="04/19/2013 03:34:46" />
<file relUrl="Content/themes/techno/js/scriptaculous.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Accounts/Index.cshtml" publishTime="11/27/2012 17:05:50" />
@ -151,27 +149,32 @@
<file relUrl="Content/js/bootstrap.min.js" publishTime="04/19/2013 09:38:28" />
<file relUrl="Content/themes/techno/images/youtube.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/slider/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/PaypalTest/Index.cshtml" publishTime="12/20/2012 21:33:42" />
<file relUrl="Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_image_05.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.validate-vsdoc.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/blog/04.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom14.png" publishTime="04/18/2013 01:25:51" />
<file relUrl="Content/themes/techno/images/ss1.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom9.png" publishTime="04/18/2013 01:25:36" />
<file relUrl="Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.nivo.slider.pack.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Account/ChangePassword.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom7.png" publishTime="04/18/2013 01:24:10" />
<file relUrl="Content/themes/techno/images/twitter.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/ss2.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/PaypalTest/Ipn.cshtml" publishTime="12/20/2012 21:32:29" />
<file relUrl="Content/Images/Wiki/bow.jpg" publishTime="04/19/2013 03:56:19" />
<file relUrl="Content/themes/techno/images/closelabel.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-icons_454545_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery-ui.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Store/_WritePackage.cshtml" publishTime="04/19/2013 17:36:49" />
<file relUrl="Areas/Manage/Views/Accounts/Delete.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/css/bootstrap-responsive.min.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Servers/Index.cshtml" publishTime="05/08/2013 10:15:36" />
<file relUrl="bin/LOC.Website.Web.dll" publishTime="07/26/2013 13:15:47" />
<file relUrl="Views/Shared/_FrontLayout.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Log/Index.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/LOC.Website.Web.pdb" publishTime="07/26/2013 13:15:47" />
<file relUrl="Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Profile/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/WebMatrix.WebData.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.flot.min.js" publishTime="11/27/2012 17:05:51" />
@ -179,89 +182,86 @@
<file relUrl="Views/Shared/_Layout.cshtml" publishTime="06/08/2013 00:28:59" />
<file relUrl="bin/Moq.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_list.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/js/effects.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom15.png" publishTime="04/18/2013 01:25:17" />
<file relUrl="Content/Images/Mega.png" publishTime="04/19/2013 17:26:03" />
<file relUrl="Views/Account/ChangePasswordSuccess.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/WebMatrix.WebData.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Wiki/SkillBook.png" publishTime="04/19/2013 03:44:52" />
<file relUrl="Content/Images/Single.png" publishTime="04/19/2013 17:26:21" />
<file relUrl="Content/Images/dom13.png" publishTime="04/18/2013 01:26:43" />
<file relUrl="Content/Images/dom9.png" publishTime="04/18/2013 01:25:36" />
<file relUrl="Areas/Manage/Views/Accounts/Create.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Skills/Details.cshtml" publishTime="01/15/2013 14:34:14" />
<file relUrl="bin/WebActivator.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/js/bootstrap.js" publishTime="04/19/2013 09:38:28" />
<file relUrl="Content/themes/base/images/ui-icons_cd0a0a_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/iron_sword.jpg" publishTime="04/19/2013 03:56:10" />
<file relUrl="Content/themes/techno/css/nivo-slider.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/WebMatrix.Data.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/ddsmoothmenu.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/WebActivator.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/logo.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/css/lightbox.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/StructureMap.pdb" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Pvp.png" publishTime="04/17/2013 23:33:03" />
<file relUrl="Content/ss.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/NuGet.Core.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/blog_post.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/contact.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Accounts/Create.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Customization.png" publishTime="04/17/2013 23:20:46" />
<file relUrl="Views/Stats/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.WebPages.Razor.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Accounts/Details.cshtml" publishTime="02/11/2013 11:55:25" />
<file relUrl="Content/themes/techno/images/ss3.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Accounts/AccountLogins.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom10.png" publishTime="04/18/2013 01:48:04" />
<file relUrl="Scripts/MicrosoftAjax.debug.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Wiki/bow.jpg" publishTime="04/19/2013 03:56:19" />
<file relUrl="Content/Images/dom3.png" publishTime="04/18/2013 01:28:19" />
<file relUrl="Areas/Manage/Views/Skills/Index.cshtml" publishTime="01/15/2013 16:55:55" />
<file relUrl="Content/themes/techno/js/effects.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/loading.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Dominate.png" publishTime="04/17/2013 23:26:14" />
<file relUrl="Content/themes/techno/images/templatemo_image_04.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_home_header.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/03.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/slider/ss.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/ddsmoothmenu.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/LOC.Website.Common.dll" publishTime="07/26/2013 13:15:46" />
<file relUrl="Content/themes/techno/images/templatemo_logo.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/prevlabel.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_subpage_bg.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/LOC.Core.dll" publishTime="07/26/2013 12:11:17" />
<file relUrl="Areas/Manage/Views/Accounts/_CreateOrEdit.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/facebook.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Details.cshtml" publishTime="12/04/2012 23:19:27" />
<file relUrl="Content/themes/base/images/ui-icons_888888_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/css/templatemo_style.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Forums/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/foot_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/feed.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Bosses.png" publishTime="04/17/2013 23:33:03" />
<file relUrl="Content/themes/techno/css/ddsmoothmenu.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery-1.8.2.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/ss1.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom5.png" publishTime="04/18/2013 01:29:42" />
<file relUrl="Content/Images/dom3.png" publishTime="04/18/2013 01:28:19" />
<file relUrl="bin/System.Web.Routing.dll" publishTime="03/18/2010 19:31:26" />
<file relUrl="bin/System.Web.WebPages.Razor.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom12.png" publishTime="04/18/2013 01:26:27" />
<file relUrl="Content/themes/techno/images/templatemo_slider.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Shared/_basicLayout.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.Helpers.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom5.png" publishTime="04/18/2013 01:29:42" />
<file relUrl="Content/Images/dom11.png" publishTime="04/18/2013 01:26:08" />
<file relUrl="Content/themes/techno/images/flickr.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/EntityFramework.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.unobtrusive-ajax.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_subpage_header.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/js/builder.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_footer.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Truck.png" publishTime="04/19/2013 17:26:38" />
<file relUrl="Content/themes/techno/images/blog/04.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/portfolio.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.validate.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Account/Register.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Manage/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/js/jquery-1.4.3.min.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/green_dye.jpg" publishTime="04/19/2013 03:12:39" />
<file relUrl="Content/Site.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.nivo.slider.pack.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery-ui.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/close.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/WebMatrix.Data.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.WebPages.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/js/lightbox.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_logo.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.unobtrusive-ajax.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Account/LogOn.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_learnmore.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Store/Index.cshtml" publishTime="04/19/2013 19:18:41" />
<file relUrl="Scripts/jquery-1.4.4.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Store/Test.cshtml" publishTime="01/08/2013 01:43:43" />
<file relUrl="Areas/Manage/Views/_ViewStart.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery-1.8.2.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.WebPages.Deployment.xml" publishTime="11/27/2012 17:05:51" />
</publishProfile>
<publishProfile publishUrl="ftp://192.95.29.103/inetpub/wwwroot/mineplexTemp" deleteExistingFiles="False" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Profile2" publishMethod="FTP" replaceMatchingFiles="True" userName="root" savePWD="False" userPWD="" SelectedForPublish="True">
<file relUrl="Content/Images/Wiki/SkillBook.png" publishTime="04/19/2013 03:44:52" />
@ -270,7 +270,7 @@
<file relUrl="Areas/Manage/Views/Skills/Edit.cshtml" publishTime="01/15/2013 14:35:34" />
<file relUrl="Content/img/logobtntest.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/System.Web.WebPages.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/css/bootstrap.css" publishTime="04/19/2013 00:40:10" />
<file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/StructureMap.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/41_64x64.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/nStuff.UpdateControls.dll" publishTime="11/27/2012 17:05:51" />
@ -283,15 +283,16 @@
<file relUrl="Content/themes/techno/images/templatemo_home_bg.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/Microsoft.Web.Infrastructure.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_middle.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Shared/_Layout.cshtml" publishTime="06/08/2013 00:28:59" />
<file relUrl="Content/themes/techno/images/foot_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Classes/Index.cshtml" publishTime="04/19/2013 13:05:06" />
<file relUrl="Views/Account/ChangePasswordSuccess.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Log/Delete.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/blog_post.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Skills/Delete.cshtml" publishTime="01/15/2013 14:32:44" />
<file relUrl="Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/portfolio/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/NuGet.Core.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.validate.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/blog.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/System.Web.Razor.xml" publishTime="11/27/2012 17:05:51" />
@ -305,25 +306,24 @@
<file relUrl="Views/PaypalTest/Receipt.cshtml" publishTime="12/20/2012 21:32:29" />
<file relUrl="Content/img/glyphicons-halflings-white.png" publishTime="04/19/2013 00:40:10" />
<file relUrl="Areas/Manage/Views/Accounts/Delete.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.validate.unobtrusive.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_home_header.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Account/Test.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Ultra.png" publishTime="04/19/2013 17:45:48" />
<file relUrl="Content/themes/techno/images/templatemo_image_04.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Paypal/Ipn.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/avator.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/css/muffin.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Paypal/ImpulseIpn.cshtml" publishTime="01/07/2013 22:28:02" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Create.cshtml" publishTime="12/04/2012 23:16:11" />
<file relUrl="bin/System.Web.WebPages.Deployment.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Edit.cshtml" publishTime="12/04/2012 23:16:11" />
<file relUrl="Content/themes/techno/images/close.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/Brute.png" publishTime="04/19/2013 03:34:34" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Index.cshtml" publishTime="12/04/2012 23:18:53" />
<file relUrl="Views/Shared/_LogOnPartial.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom4.png" publishTime="04/18/2013 01:22:43" />
<file relUrl="Content/themes/techno/images/portfolio/03.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/02.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/04.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Web.config" publishTime="08/19/2013 03:09:03" />
<file relUrl="Content/themes/techno/images/arrows.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom8.png" publishTime="04/18/2013 01:45:53" />
<file relUrl="bin/System.Web.Helpers.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Details.cshtml" publishTime="12/04/2012 23:19:27" />
<file relUrl="Views/Account/ManageRoles.cshtml" publishTime="11/27/2012 17:05:51" />
@ -334,74 +334,74 @@
<file relUrl="Scripts/MicrosoftMvcAjax.debug.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_image_03.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/About/Index.cshtml" publishTime="04/01/2013 08:18:30" />
<file relUrl="Content/themes/techno/js/jquery-1.4.3.min.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/th_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/portfolio/04.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Forums/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/EntityFramework.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Skills/Index.cshtml" publishTime="01/15/2013 16:55:55" />
<file relUrl="Areas/Manage/Views/Accounts/Edit.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom6.png" publishTime="04/18/2013 01:23:24" />
<file relUrl="Content/Images/Gold.png" publishTime="04/19/2013 17:25:56" />
<file relUrl="bin/StructureMap.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery-1.4.4-vsdoc.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/_ViewStart.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/MicrosoftMvcAjax.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.WebPages.Deployment.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/Newtonsoft.Json.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/portfolio/02.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Manage/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/js/lightbox.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/PaypalTest/Index.cshtml" publishTime="12/20/2012 21:33:42" />
<file relUrl="Content/css/bootstrap-responsive.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Web.config" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Home/Index.cshtml" publishTime="07/03/2013 13:36:56" />
<file relUrl="bin/LOC.Website.Common.dll" publishTime="08/25/2013 22:03:56" />
<file relUrl="Content/themes/techno/js/prototype.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery-1.4.4.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Double.png" publishTime="04/19/2013 17:25:46" />
<file relUrl="Content/themes/techno/images/templatemo_image_01.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Account/LogOn.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/EntityFramework.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_image_02.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/Ranger.png" publishTime="04/19/2013 03:35:02" />
<file relUrl="Scripts/jquery-1.8.2.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/LOC.Website.Common.pdb" publishTime="08/25/2013 22:03:55" />
<file relUrl="bin/LOC.Website.Common.pdb" publishTime="08/29/2013 20:11:47" />
<file relUrl="bin/LOC.Core.pdb" publishTime="08/25/2013 22:03:54" />
<file relUrl="Content/Images/Wiki/red_dye.jpg" publishTime="04/19/2013 03:12:21" />
<file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/_ViewStart.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Web.config" publishTime="08/19/2013 03:09:03" />
<file relUrl="Scripts/ddsmoothmenu.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Global.asax" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_more.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/js/jquery.nivo.slider.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom14.png" publishTime="04/18/2013 01:25:51" />
<file relUrl="Scripts/jquery.unobtrusive-ajax.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/blog/03.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/GameSalesPackage/Delete.cshtml" publishTime="12/04/2012 23:16:12" />
<file relUrl="bin/System.Web.Mvc.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Paypal/Receipt.cshtml" publishTime="01/07/2013 22:29:06" />
<file relUrl="packages.config" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Payments/_WriteTransaction.cshtml" publishTime="02/15/2013 08:31:48" />
<file relUrl="Global.asax" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom4.png" publishTime="04/18/2013 01:22:43" />
<file relUrl="Areas/Manage/Views/ServerManagement/Index.cshtml" publishTime="04/19/2013 15:51:04" />
<file relUrl="Content/Images/Wiki/yellow_dye.jpg" publishTime="04/19/2013 03:12:14" />
<file relUrl="bin/Newtonsoft.Json.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Gamemodes.png" publishTime="04/17/2013 23:26:14" />
<file relUrl="Areas/Manage/Views/Shared/_Layout.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/WebMatrix.Data.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/img/glyphicons-halflings.png" publishTime="04/19/2013 00:40:10" />
<file relUrl="Content/Images/Truck.png" publishTime="04/19/2013 17:26:38" />
<file relUrl="Content/themes/base/images/ui-icons_222222_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/tr_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/blue_dye.jpg" publishTime="04/19/2013 03:12:46" />
<file relUrl="Areas/Manage/Views/Log/Details.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Payments/Index.cshtml" publishTime="02/15/2013 15:36:57" />
<file relUrl="Areas/Manage/Views/Accounts/Details.cshtml" publishTime="02/11/2013 11:55:25" />
<file relUrl="Areas/Manage/Views/ServerManagement/Index.cshtml" publishTime="04/19/2013 15:51:04" />
<file relUrl="Content/css/bootstrap.css" publishTime="04/19/2013 00:40:10" />
<file relUrl="bin/System.Web.Routing.dll" publishTime="03/18/2010 17:31:26" />
<file relUrl="bin/Moq.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/EntityFramework.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/slider/ss.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.validate.unobtrusive.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom2.png" publishTime="04/18/2013 01:20:58" />
<file relUrl="bin/Intelligencia.UrlRewriter.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.nivo.slider.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/css/bootstrap.min.css" publishTime="04/19/2013 00:40:10" />
<file relUrl="bin/WebMatrix.WebData.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Wiki/Mage.png" publishTime="04/19/2013 03:34:54" />
<file relUrl="Views/Shared/_FrontLayout.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Stats/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.unobtrusive-ajax.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/js/effects.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/Knight.png" publishTime="04/19/2013 03:34:46" />
<file relUrl="Content/themes/techno/js/scriptaculous.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Accounts/Index.cshtml" publishTime="11/27/2012 17:05:50" />
@ -412,34 +412,30 @@
<file relUrl="Content/js/bootstrap.min.js" publishTime="04/19/2013 07:38:28" />
<file relUrl="Content/themes/techno/images/youtube.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/slider/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/PaypalTest/Index.cshtml" publishTime="12/20/2012 21:33:42" />
<file relUrl="Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/slider/02.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_image_05.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/Microsoft.Web.Infrastructure.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/ss1.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom9.png" publishTime="04/18/2013 01:25:36" />
<file relUrl="Scripts/jquery.unobtrusive-ajax.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.nivo.slider.pack.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Account/ChangePassword.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom7.png" publishTime="04/18/2013 01:24:10" />
<file relUrl="Content/themes/techno/images/twitter.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/ss2.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/PaypalTest/Ipn.cshtml" publishTime="12/20/2012 21:32:29" />
<file relUrl="Content/Images/Wiki/bow.jpg" publishTime="04/19/2013 03:56:19" />
<file relUrl="Content/themes/techno/images/closelabel.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-icons_454545_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery-ui.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Store/_WritePackage.cshtml" publishTime="04/19/2013 17:36:49" />
<file relUrl="Content/themes/techno/portfolio.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/css/bootstrap-responsive.min.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Servers/Index.cshtml" publishTime="05/08/2013 10:15:36" />
<file relUrl="bin/LOC.Website.Web.dll" publishTime="08/25/2013 22:03:57" />
<file relUrl="Areas/Manage/Views/Log/Index.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/LOC.Website.Web.pdb" publishTime="08/25/2013 22:03:57" />
<file relUrl="bin/LOC.Website.Web.dll" publishTime="08/29/2013 20:11:48" />
<file relUrl="Views/Shared/_FrontLayout.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/LOC.Website.Web.pdb" publishTime="08/29/2013 20:11:48" />
<file relUrl="Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Profile/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/WebMatrix.WebData.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.WebPages.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.flot.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/PaypalTest/_WritePackage.cshtml" publishTime="12/20/2012 21:33:50" />
<file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="11/27/2012 17:05:51" />
@ -447,83 +443,87 @@
<file relUrl="Content/themes/techno/images/templatemo_list.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom15.png" publishTime="04/18/2013 01:25:17" />
<file relUrl="Content/Images/Mega.png" publishTime="04/19/2013 17:26:03" />
<file relUrl="bin/WebMatrix.WebData.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/avator.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Single.png" publishTime="04/19/2013 17:26:21" />
<file relUrl="Content/Images/dom13.png" publishTime="04/18/2013 01:26:43" />
<file relUrl="Content/Images/dom11.png" publishTime="04/18/2013 01:26:08" />
<file relUrl="Areas/Manage/Views/Accounts/Create.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery-ui.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom9.png" publishTime="04/18/2013 01:25:36" />
<file relUrl="Areas/Manage/Views/Skills/Details.cshtml" publishTime="01/15/2013 14:34:14" />
<file relUrl="Content/js/bootstrap.js" publishTime="04/19/2013 07:38:28" />
<file relUrl="Content/themes/base/images/ui-icons_cd0a0a_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/iron_sword.jpg" publishTime="04/19/2013 03:56:10" />
<file relUrl="Views/Shared/Error.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/css/nivo-slider.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/WebMatrix.Data.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/WebActivator.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/logo.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/css/lightbox.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/jquery.validate-vsdoc.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/StructureMap.pdb" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Pvp.png" publishTime="04/17/2013 23:33:03" />
<file relUrl="Content/ss.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/blog_post.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/NuGet.Core.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/contact.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Accounts/Create.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Stats/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Customization.png" publishTime="04/17/2013 23:20:46" />
<file relUrl="bin/System.Web.WebPages.Razor.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Accounts/_CreateOrEdit.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Accounts/Details.cshtml" publishTime="02/11/2013 11:55:25" />
<file relUrl="Content/themes/techno/images/ss3.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Accounts/AccountLogins.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom10.png" publishTime="04/18/2013 01:48:04" />
<file relUrl="Scripts/MicrosoftAjax.debug.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Areas/Manage/Views/Skills/Index.cshtml" publishTime="01/15/2013 16:55:55" />
<file relUrl="Content/themes/techno/js/effects.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Wiki/bow.jpg" publishTime="04/19/2013 03:56:19" />
<file relUrl="Content/themes/techno/images/templatemo_home_header.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/loading.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Dominate.png" publishTime="04/17/2013 23:26:14" />
<file relUrl="Content/themes/techno/images/templatemo_image_04.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/03.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Scripts/ddsmoothmenu.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Shared/_Layout.cshtml" publishTime="06/08/2013 00:28:59" />
<file relUrl="Areas/Manage/Views/Accounts/_CreateOrEdit.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="Areas/Manage/Views/Log/Index.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/EntityFramework.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/slider/ss.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/LOC.Website.Common.dll" publishTime="08/29/2013 20:11:47" />
<file relUrl="Content/themes/techno/images/templatemo_logo.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/prevlabel.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_subpage_bg.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/LOC.Core.dll" publishTime="08/25/2013 22:03:54" />
<file relUrl="Content/themes/techno/images/facebook.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/base/images/ui-icons_888888_256x240.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/css/templatemo_style.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/foot_bck.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Forums/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/feed.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Bosses.png" publishTime="04/17/2013 23:33:03" />
<file relUrl="Content/themes/techno/css/ddsmoothmenu.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom3.png" publishTime="04/18/2013 01:28:19" />
<file relUrl="bin/System.Web.Routing.dll" publishTime="03/18/2010 17:31:26" />
<file relUrl="Content/themes/techno/images/ss1.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/dom5.png" publishTime="04/18/2013 01:29:42" />
<file relUrl="bin/System.Web.WebPages.Razor.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom12.png" publishTime="04/18/2013 01:26:27" />
<file relUrl="Content/themes/techno/images/templatemo_slider.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Shared/_basicLayout.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom5.png" publishTime="04/18/2013 01:29:42" />
<file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.Helpers.dll" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/dom11.png" publishTime="04/18/2013 01:26:08" />
<file relUrl="Content/themes/techno/images/flickr.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_subpage_header.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Web.config" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/js/builder.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_footer.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/01.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/portfolio.html" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/blog/04.jpg" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/Images/Truck.png" publishTime="04/19/2013 17:26:38" />
<file relUrl="Scripts/jquery.validate.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Account/Register.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/js/jquery-1.4.3.min.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Manage/Index.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Wiki/green_dye.jpg" publishTime="04/19/2013 03:12:39" />
<file relUrl="Content/Site.css" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/close.gif" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/WebMatrix.Data.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.validate-vsdoc.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/js/lightbox.js" publishTime="11/27/2012 17:05:50" />
<file relUrl="Content/themes/techno/images/templatemo_logo.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Account/Test.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/Images/Dominate.png" publishTime="04/17/2013 23:26:14" />
<file relUrl="Scripts/jquery.nivo.slider.pack.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery-ui.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="bin/System.Web.WebPages.xml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Scripts/jquery.unobtrusive-ajax.min.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Account/LogOn.cshtml" publishTime="11/27/2012 17:05:51" />
<file relUrl="Content/themes/techno/images/templatemo_learnmore.png" publishTime="11/27/2012 17:05:50" />
<file relUrl="Views/Store/Index.cshtml" publishTime="04/19/2013 19:18:41" />
<file relUrl="Scripts/jquery-1.4.4.js" publishTime="11/27/2012 17:05:51" />
<file relUrl="Views/Store/Test.cshtml" publishTime="01/08/2013 01:43:43" />
<file relUrl="Areas/Manage/Views/_ViewStart.cshtml" publishTime="11/27/2012 17:05:50" />
<file relUrl="bin/System.Web.WebPages.Deployment.xml" publishTime="11/27/2012 17:05:51" />
</publishProfile>
</publishData>

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More