mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-24 11:28:22 +02:00
Overhaul of the director system and opening quests. Private Areas further implemented as well.
This commit is contained in:
parent
dcaad5729d
commit
e898c045f7
69 changed files with 2602 additions and 1816 deletions
|
@ -41,6 +41,11 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
//Inform update
|
||||
}
|
||||
|
||||
public uint GetQuestId()
|
||||
{
|
||||
return actorId & 0xFFFFF;
|
||||
}
|
||||
|
||||
public object GetQuestData(string dataName)
|
||||
{
|
||||
if (questData.ContainsKey(dataName))
|
||||
|
@ -52,12 +57,7 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
public void ClearQuestData()
|
||||
{
|
||||
questData.Clear();
|
||||
}
|
||||
|
||||
public uint GetQuestId()
|
||||
{
|
||||
return actorId;
|
||||
}
|
||||
}
|
||||
|
||||
public void ClearQuestFlags()
|
||||
{
|
||||
|
@ -98,9 +98,11 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
return currentPhase;
|
||||
}
|
||||
|
||||
public void NextPhase()
|
||||
public void NextPhase(int phaseNumber)
|
||||
{
|
||||
currentPhase++;
|
||||
currentPhase = phaseNumber;
|
||||
owner.SendGameMessage(Server.GetWorldManager().GetActor(), 25116, 0x20, (object)GetQuestId());
|
||||
SaveData();
|
||||
}
|
||||
|
||||
public uint GetQuestFlags()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue