초기커밋
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System.Text;
|
||||
|
||||
|
||||
namespace ServerCommon;
|
||||
|
||||
|
||||
public class QuestValidatorForTriggerSet: QuestScriptValidatorBase
|
||||
{
|
||||
private string m_func_cond1 = string.Empty;
|
||||
|
||||
public QuestValidatorForTriggerSet(QuestMetaValidateHandler handler, string funcCond1) : base(handler)
|
||||
{
|
||||
m_func_cond1 = funcCond1;
|
||||
init();
|
||||
}
|
||||
|
||||
public override void init()
|
||||
{
|
||||
StringBuilder trigger_entered = new();
|
||||
trigger_entered.Append(EQuestEventTargetType.TRIGGER.ToString()).Append(EQuestEventNameType.ENTERED.ToString())
|
||||
.Append(m_func_cond1);
|
||||
m_handler.addEventChecker(trigger_entered.ToString());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user