forked from metin2/server
Restructured gamefiles, locale data loading refactoring, docker build fixes
This commit is contained in:
36
gamefiles/data/quest/new_christmas_nog.quest
Normal file
36
gamefiles/data/quest/new_christmas_nog.quest
Normal file
@ -0,0 +1,36 @@
|
||||
quest new_christmas_nog_quest begin
|
||||
state start begin
|
||||
end
|
||||
state nog_first_give begin
|
||||
when 20126.chat.gameforge.new_christmas._050_npcChat begin
|
||||
say_title(mob_name(20126))
|
||||
say (gameforge.new_christmas._060_say)
|
||||
wait()
|
||||
say_title(mob_name(20126))
|
||||
say (gameforge.new_christmas._070_say)
|
||||
wait()
|
||||
pc.give_item2 (50216, 6)
|
||||
pc.setqf ("last_nog_give_time", get_global_time())
|
||||
say_title(mob_name(20126))
|
||||
say (gameforge.new_christmas._080_say)
|
||||
set_state(nog_give)
|
||||
end
|
||||
end
|
||||
state nog_give begin
|
||||
when 20126.chat.gameforge.new_christmas._090_npcChat begin
|
||||
say_title(mob_name(20126))
|
||||
say (gameforge.new_christmas._100_say)
|
||||
wait()
|
||||
if get_global_time() - pc.getqf ("last_nog_give_time") >= 86400 then
|
||||
say_title(mob_name(20126))
|
||||
say (gameforge.new_christmas._110_say)
|
||||
pc.setqf ("last_nog_give_time", get_global_time())
|
||||
pc.give_item2 (50216, 6)
|
||||
else
|
||||
say_title(mob_name(20126))
|
||||
say (gameforge.new_christmas._120_say)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user