-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCommand.cs
More file actions
48 lines (46 loc) · 1.74 KB
/
Copy pathCommand.cs
File metadata and controls
48 lines (46 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System;
using PulsarModLoader.Chat.Commands.CommandRouter;
using PulsarModLoader.Utilities;
//namespace Template
//{
// internal class Command : ChatCommand
// {
// public override string[] CommandAliases()
// {
// return new string[] { "Sync" };
// }
// public override string[][] Arguments()
// {
// return new string[][] { new string[] { } };
// }
// public override string Description()
// {
// return "template command description";
// }
// public override void Execute(string arguments)
// {
// PLSectorInfo CometSector = PLGlobal.Instance.Galaxy.GetSectorOfVisualIndication(ESectorVisualIndication.COMET);
// PLServer.Instance.photonView.RPC("ClientUpdateSectorPosition", PhotonTargets.Others, new object[] { (short)CometSector.ID, CometSector.Position });
// }
// }
// //internal class Command : ChatCommand
// //{
// // public override string[] CommandAliases()
// // {
// // return new string[] { "Sync" };
// // }
// // public override string[][] Arguments()
// // {
// // return new string[][] { new string[] { } };
// // }
// // public override string Description()
// // {
// // return "template command description";
// // }
// // public override void Execute(string arguments)
// // {
// // PLSectorInfo CometSector = PLGlobal.Instance.Galaxy.GetSectorOfVisualIndication(ESectorVisualIndication.COMET);
// // PLServer.Instance.photonView.RPC("ClientUpdateSectorPosition", PhotonTargets.Others, new object[] { (short)CometSector.ID, CometSector.Position });
// // }
// //}
//}