Skip to content

Commit

Permalink
added 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
barncastle committed Nov 25, 2017
1 parent 044acec commit 282105c
Show file tree
Hide file tree
Showing 13 changed files with 1,175 additions and 7 deletions.
13 changes: 11 additions & 2 deletions AIO Sandbox.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2005
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorldServer", "WorldServer\WorldServer.csproj", "{B736A574-F0AD-43D2-BF24-A54EDC0BCD6B}"
EndProject
Expand All @@ -23,6 +23,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Beta_3988", "Plugins\Beta_3
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TBC_Alpha_5610", "Plugins\TBC_Alpha_5610\TBC_Alpha_5610.csproj", "{19DD917C-87C6-407E-BFAA-9ECD37155040}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Alpha_3494", "Plugins\Alpha_3494\Alpha_3494.csproj", "{FD14FB48-C3D1-40EC-8526-E401661FE24A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -69,8 +71,15 @@ Global
{19DD917C-87C6-407E-BFAA-9ECD37155040}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19DD917C-87C6-407E-BFAA-9ECD37155040}.Release|Any CPU.ActiveCfg = Release|Any CPU
{19DD917C-87C6-407E-BFAA-9ECD37155040}.Release|Any CPU.Build.0 = Release|Any CPU
{FD14FB48-C3D1-40EC-8526-E401661FE24A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FD14FB48-C3D1-40EC-8526-E401661FE24A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FD14FB48-C3D1-40EC-8526-E401661FE24A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FD14FB48-C3D1-40EC-8526-E401661FE24A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6B3E5E47-F534-40C5-8A61-5C3B3ABB1030}
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion Common/Commands/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private static void GoTrigger(IWorldManager manager, string[] args)
#endregion

#region Nudge
[CommandHelp(".nudge Optional: [0 - 100] {height}")]
[CommandHelp(".nudge Optional: [0 - 100] {z offset}")]
public static void Nudge(IWorldManager manager, string[] args)
{
var character = manager.Account.ActiveCharacter;
Expand Down
61 changes: 61 additions & 0 deletions Plugins/Alpha_3494/Alpha_3494.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{FD14FB48-C3D1-40EC-8526-E401661FE24A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Alpha_3494</RootNamespace>
<AssemblyName>Alpha_3494</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\Debug\Plugins\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\Release\Plugins\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Character.cs" />
<Compile Include="Handlers\AuthHandler.cs" />
<Compile Include="Handlers\CharHandler.cs" />
<Compile Include="Handlers\WorldHandler.cs" />
<Compile Include="Opcodes.cs" />
<Compile Include="PacketReader.cs" />
<Compile Include="PacketWriter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Sandbox.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj">
<Project>{63268176-7ff9-4b3e-aaad-cc7c329f924a}</Project>
<Name>Common</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Loading

0 comments on commit 282105c

Please sign in to comment.