Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Commands/PM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ public string Help
{
get { return "Enter text to message your set receiver."; }
}
public AllowedCaller AllowedCaller
{
get { return AllowedCaller.Both; }
}
public List<string> Permissions
{
get
Expand Down
5 changes: 5 additions & 0 deletions Commands/R.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ public string Syntax
return "<message>";
}
}
public AllowedCaller AllowedCaller
{
get { return AllowedCaller.Both; }
}

public string Help
{
get { return "Enter text to reply to last received message."; }
Expand Down
32 changes: 19 additions & 13 deletions P2P.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -28,29 +28,35 @@
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Assembly-CSharp">
<HintPath>..\Rocket API\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Rocket.API">
<HintPath>..\Rocket API\Rocket.API.dll</HintPath>
<HintPath>lib\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Assembly-CSharp-firstpass">
<HintPath>..\..\..\..\..\Program Files %28x86%29\Steam\steamapps\common\Unturned\Unturned_Data\Managed\Assembly-CSharp-firstpass.dll</HintPath>
<HintPath>lib\Assembly-CSharp-firstpass.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Rocket.API">
<HintPath>lib\Rocket.API.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Rocket.Core">
<HintPath>..\Rocket API\Rocket.Core.dll</HintPath>
<HintPath>lib\Rocket.Core.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Rocket.Unturned">
<HintPath>..\Rocket API\Rocket.Unturned.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\Rocket API\UnityEngine.dll</HintPath>
<HintPath>lib\Rocket.Unturned.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Windows" />
<Reference Include="System.Xml" />
<Reference Include="System.Data" />
<Reference Include="UnityEngine">
<HintPath>lib\UnityEngine.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
Expand All @@ -60,6 +66,6 @@
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Commands\" />
<Folder Include="lib\" />
</ItemGroup>
</Project>
Binary file added P2P.v12.suo
Binary file not shown.
33 changes: 33 additions & 0 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("P2P")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("P2P")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("4e546eaf-de7f-4f6c-81c5-35046578ed48")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Binary file added bin/Debug/P2P.dll
Binary file not shown.
Binary file added bin/Debug/P2P.pdb
Binary file not shown.
Binary file added lib/Assembly-CSharp-firstpass.dll
Binary file not shown.
Binary file added lib/Assembly-CSharp.dll
Binary file not shown.
Binary file added lib/Rocket.API.dll
Binary file not shown.
Binary file added lib/Rocket.Core.dll
Binary file not shown.
Binary file added lib/Rocket.Unturned.dll
Binary file not shown.
Binary file added lib/UnityEngine.dll
Binary file not shown.
Binary file not shown.
5 changes: 5 additions & 0 deletions obj/Debug/P2P.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
D:\Files from Old Windows Installs\laptop files\documents\GitHub\P2P\obj\Debug\P2P.csprojResolveAssemblyReference.cache
D:\Files from Old Windows Installs\laptop files\documents\GitHub\P2P\bin\Debug\P2P.dll
D:\Files from Old Windows Installs\laptop files\documents\GitHub\P2P\bin\Debug\P2P.pdb
D:\Files from Old Windows Installs\laptop files\documents\GitHub\P2P\obj\Debug\P2P.dll
D:\Files from Old Windows Installs\laptop files\documents\GitHub\P2P\obj\Debug\P2P.pdb
Binary file not shown.
Binary file added obj/Debug/P2P.dll
Binary file not shown.
Binary file added obj/Debug/P2P.pdb
Binary file not shown.
Empty file.
Empty file.
Empty file.