mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Added quest director class.
This commit is contained in:
parent
c0cd7555e1
commit
b8a3d4f1e0
@ -72,6 +72,7 @@
|
|||||||
<Compile Include="actors\debug\Debug.cs" />
|
<Compile Include="actors\debug\Debug.cs" />
|
||||||
<Compile Include="actors\director\Director.cs" />
|
<Compile Include="actors\director\Director.cs" />
|
||||||
<Compile Include="actors\director\OpeningDirector.cs" />
|
<Compile Include="actors\director\OpeningDirector.cs" />
|
||||||
|
<Compile Include="actors\director\quest\QuestDirectorMan0l001..cs" />
|
||||||
<Compile Include="actors\director\WeatherDirector.cs" />
|
<Compile Include="actors\director\WeatherDirector.cs" />
|
||||||
<Compile Include="actors\EventList.cs" />
|
<Compile Include="actors\EventList.cs" />
|
||||||
<Compile Include="actors\judge\Judge.cs" />
|
<Compile Include="actors\judge\Judge.cs" />
|
||||||
|
@ -125,7 +125,7 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||||||
public Quest[] questScenario = new Quest[16];
|
public Quest[] questScenario = new Quest[16];
|
||||||
public Quest[] questGuildleve = new Quest[8];
|
public Quest[] questGuildleve = new Quest[8];
|
||||||
|
|
||||||
public Director currentDirector = new OpeningDirector(0x46080012);
|
public Director currentDirector;// = new OpeningDirector(0x46080012);
|
||||||
|
|
||||||
public PlayerWork playerWork = new PlayerWork();
|
public PlayerWork playerWork = new PlayerWork();
|
||||||
|
|
||||||
@ -1004,9 +1004,9 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||||||
currentDirector = new QuestDirectorMan0l001(0x46080012);
|
currentDirector = new QuestDirectorMan0l001(0x46080012);
|
||||||
}
|
}
|
||||||
|
|
||||||
queuePacket(RemoveActorPacket.buildPacket(actorId, 0x46080012));
|
// queuePacket(RemoveActorPacket.buildPacket(actorId, 0x46080012));
|
||||||
queuePacket(currentDirector.getSpawnPackets(actorId));
|
// queuePacket(currentDirector.getSpawnPackets(actorId));
|
||||||
queuePacket(currentDirector.getInitPackets(actorId));
|
// queuePacket(currentDirector.getInitPackets(actorId));
|
||||||
// queuePacket(currentDirector.getSetEventStatusPackets(actorId));
|
// queuePacket(currentDirector.getSetEventStatusPackets(actorId));
|
||||||
// currentDirector.getSpawnPackets(actorId).debugPrintPacket();
|
// currentDirector.getSpawnPackets(actorId).debugPrintPacket();
|
||||||
// currentDirector.getInitPackets(actorId).debugPrintPacket();
|
// currentDirector.getInitPackets(actorId).debugPrintPacket();
|
||||||
|
Loading…
Reference in New Issue
Block a user