diff options
Diffstat (limited to 'npc/functions/quest-debug/000-ShipQuests_Julia.txt')
-rw-r--r-- | npc/functions/quest-debug/000-ShipQuests_Julia.txt | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/npc/functions/quest-debug/000-ShipQuests_Julia.txt b/npc/functions/quest-debug/000-ShipQuests_Julia.txt deleted file mode 100644 index e4e0ec2cd..000000000 --- a/npc/functions/quest-debug/000-ShipQuests_Julia.txt +++ /dev/null @@ -1,37 +0,0 @@ -// Julia quest debug -// Author: -// gumi - -function script QuestDebug0 { - do - { - clear; - setnpcdialogtitle l("Quest debug"); - mes "ShipQuests_Julia"; - mes "---"; - mes l("Quest state: @@", getq(ShipQuests_Julia)); - mes "---"; - mes l("Related quests:"); - mes "ShipQuests_Nard: " + getq(ShipQuests_Nard); - mes "ShipQuests_ChefGado: " + getq(ShipQuests_ChefGado); - mes "General_Narrator: " + getq(General_Narrator); - next; - - GenericQuestDebug ShipQuests_Julia, - menuimage("actions/manage", l("Debug Nard quest")), -1, - menuimage("actions/manage", l("Debug Gado quest")), -2, - menuimage("actions/manage", l("Debug Narrator")), -3, - l("Does not have the quest"), 0, - l("Got the quest"), 1, - l("Completed"), 2; - - switch (@menuret) - { - case -1: callfunc "QuestDebug4"; break; - case -2: callfunc "QuestDebug17"; break; - case -3: callfunc "QuestDebug28"; break; - default: if (@menuret < 0) return; - } - - } while (1); -} |