diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-22 21:48:12 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-22 21:48:12 -0300 |
commit | 90f5a5b4d45114c3aaafa7ffb039802ada2d6d26 (patch) | |
tree | b2a112976e74aaaebe7b4866794ff451c7aec855 /npc/functions/quest-debug/000-ShipQuests_Julia.txt | |
parent | a0712e6473747b5e63b9a717989282d984d176af (diff) | |
download | serverdata-90f5a5b4d45114c3aaafa7ffb039802ada2d6d26.tar.gz serverdata-90f5a5b4d45114c3aaafa7ffb039802ada2d6d26.tar.bz2 serverdata-90f5a5b4d45114c3aaafa7ffb039802ada2d6d26.tar.xz serverdata-90f5a5b4d45114c3aaafa7ffb039802ada2d6d26.zip |
Remove quest debug to make quest db cleanup
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); -} |