Core/Quests: Implemented player choice rewards
DB/Creature: Cosmetic Mottled Raptor
This commit is contained in:
@@ -657,7 +657,7 @@ namespace Game.Scripting
|
||||
public virtual void OnMovieComplete(Player player, uint movieId) { }
|
||||
|
||||
// Called when a player choose a response from a PlayerChoice
|
||||
public virtual void OnPlayerChoiceResponse(Player player, uint choiceID, uint responseID) { }
|
||||
public virtual void OnPlayerChoiceResponse(Player player, uint choiceId, uint responseId) { }
|
||||
}
|
||||
|
||||
public class GuildScript : ScriptObject
|
||||
|
||||
@@ -1175,9 +1175,9 @@ namespace Game.Scripting
|
||||
{
|
||||
ForEach<PlayerScript>(p => p.OnMovieComplete(player, movieId));
|
||||
}
|
||||
public void OnPlayerChoiceResponse(Player player, uint choiceID, uint responseID)
|
||||
public void OnPlayerChoiceResponse(Player player, uint choiceId, uint responseId)
|
||||
{
|
||||
ForEach<PlayerScript>(p => p.OnPlayerChoiceResponse(player, choiceID, responseID));
|
||||
ForEach<PlayerScript>(p => p.OnPlayerChoiceResponse(player, choiceId, responseId));
|
||||
}
|
||||
|
||||
// GuildScript
|
||||
|
||||
Reference in New Issue
Block a user