From 9877fd4ad81120af8e63e96d5d429092014dc017 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 7 Jul 2021 20:34:27 -0300 Subject: Remove all Legacy files --- world/map/npc/056-2/_import.txt | 10 --- world/map/npc/056-2/_mobs.txt | 3 - world/map/npc/056-2/_nodes.txt | 4 -- world/map/npc/056-2/_warps.txt | 5 -- world/map/npc/056-2/barrier.txt | 18 ----- world/map/npc/056-2/mapflags.txt | 2 - world/map/npc/056-2/mirak.txt | 152 --------------------------------------- world/map/npc/056-2/notes.txt | 15 ---- 8 files changed, 209 deletions(-) delete mode 100644 world/map/npc/056-2/_import.txt delete mode 100644 world/map/npc/056-2/_mobs.txt delete mode 100644 world/map/npc/056-2/_nodes.txt delete mode 100644 world/map/npc/056-2/_warps.txt delete mode 100644 world/map/npc/056-2/barrier.txt delete mode 100644 world/map/npc/056-2/mapflags.txt delete mode 100644 world/map/npc/056-2/mirak.txt delete mode 100644 world/map/npc/056-2/notes.txt (limited to 'world/map/npc/056-2') diff --git a/world/map/npc/056-2/_import.txt b/world/map/npc/056-2/_import.txt deleted file mode 100644 index 79dda260..00000000 --- a/world/map/npc/056-2/_import.txt +++ /dev/null @@ -1,10 +0,0 @@ -// Map 056-2: Mirak's House -// This file is generated automatically. All manually added changes will be removed when running the Converter. -map: 056-2 -npc: npc/056-2/_mobs.txt -npc: npc/056-2/_nodes.txt -npc: npc/056-2/_warps.txt -npc: npc/056-2/barrier.txt -npc: npc/056-2/mapflags.txt -npc: npc/056-2/mirak.txt -npc: npc/056-2/notes.txt diff --git a/world/map/npc/056-2/_mobs.txt b/world/map/npc/056-2/_mobs.txt deleted file mode 100644 index 487fdc8d..00000000 --- a/world/map/npc/056-2/_mobs.txt +++ /dev/null @@ -1,3 +0,0 @@ -// This file is generated automatically. All manually added changes will be removed when running the Converter. -// Mirak's House mobs - diff --git a/world/map/npc/056-2/_nodes.txt b/world/map/npc/056-2/_nodes.txt deleted file mode 100644 index 597f2336..00000000 --- a/world/map/npc/056-2/_nodes.txt +++ /dev/null @@ -1,4 +0,0 @@ -// This file is generated automatically. All manually added changes will be removed when running the Converter. -// Mirak's House nodes - -// (no nodes) diff --git a/world/map/npc/056-2/_warps.txt b/world/map/npc/056-2/_warps.txt deleted file mode 100644 index 2fa49767..00000000 --- a/world/map/npc/056-2/_warps.txt +++ /dev/null @@ -1,5 +0,0 @@ -// This file is generated automatically. All manually added changes will be removed when running the Converter. -// Mirak's House warps - -056-2,63,34|warp|-1,-1,056-2,23,32 -056-2,35,30|warp|-1,-1,017-1,169,90 diff --git a/world/map/npc/056-2/barrier.txt b/world/map/npc/056-2/barrier.txt deleted file mode 100644 index 956dc630..00000000 --- a/world/map/npc/056-2/barrier.txt +++ /dev/null @@ -1,18 +0,0 @@ -056-2,23,33,0|script|#Barrier|45,0,0 -{ - if (Mirak_Bantime > gettimetick(2)) - goto L_Block; - if (BaseLevel < 25) - goto L_Weak; - warp "056-2", 63, 35; - end; - -L_Block: - message strcharinfo(0), "I can't enter.... That old man really made sure that I wouldn't be able to bother him again anytime soon."; - end; - -L_Weak: - message strcharinfo(0), "I can't enter because this magic field is too strong. Maybe I should train some more...."; - end; - -} diff --git a/world/map/npc/056-2/mapflags.txt b/world/map/npc/056-2/mapflags.txt deleted file mode 100644 index 02af4171..00000000 --- a/world/map/npc/056-2/mapflags.txt +++ /dev/null @@ -1,2 +0,0 @@ -056-2|mapflag|nosave|017-1,107,70 -056-2|mapflag|resave|017-1,107,70 diff --git a/world/map/npc/056-2/mirak.txt b/world/map/npc/056-2/mirak.txt deleted file mode 100644 index e1a37347..00000000 --- a/world/map/npc/056-2/mirak.txt +++ /dev/null @@ -1,152 +0,0 @@ -056-2,67,24,0|script|Mirak|372 -{ -// Variables to set: -// @dq_cost - The number of points this quest uses -// @dq_money - The money reward for doing the quest -// @dq_exp - Experince gained by doing the quest - -// Variables used inside: -// Mirak_Quest - This variable contains the @annoy level and the storyline (@talk) -// Mirak_Bantime - Time you cannot come back to the NPC when you upset him -// Mirak_Questtime - Time you cannot come back once you finished the quest -// Update Dailyquest Points - callfunc "DailyQuestPoints"; - -// Bitmasks - set @Mirak_MASK, NIBBLE_0_MASK; - set @Mirak_SHIFT, NIBBLE_0_SHIFT; - - set @talk, ((QUEST_Mirak & @Mirak_MASK) >> @Mirak_SHIFT); - - set @Mirak_Annoy_MASK, NIBBLE_1_MASK; - set @Mirak_Annoy_SHIFT, NIBBLE_1_SHIFT; - - set @annoy, ((QUEST_Mirak & @Mirak_Annoy_MASK) >> @Mirak_Annoy_SHIFT); - -// Bitmasks END - - if (Mirak_Questtime > gettimetick(2)) - goto L_TooSoon; - if (@annoy > 3) - goto L_Kill; - if (Mirak_Bantime > gettimetick(2)) - goto L_Ban; - if (@talk < 3) - goto L_Talk; - goto L_Ban; - -L_Ban: - mes "[Mirak]"; - mes "\"How did you get back here?\""; - goto L_Kill; - -L_Talk: - set Mirak_Bantime, 0; - set Mirak_Questtime, 0; - if (@talk == 1) - goto L_Talk1; - if (@talk == 2) - goto L_Talk2; - mes "The old man reads a book and looks up when he sees you coming."; - mes "He looks at you angrily."; - next; - mes "[Mirak]"; - mes "\"Hi, my name is Mirak. You might have the impression that I am nice, but I am NOT! I want to be left alone to read in peace! I tried that at my mansion in Port City but it did not work. My damn brother, he always kept going on about Bat Wings...\""; - next; - mes "Suddenly his face gets red. He breathes slowly three times..."; - next; - mes "He seems to be calm again."; - next; - mes "[Mirak]"; - mes "\"Eh... Ah! That's why I bought this house in this goddamn woods. I hoped nobody would come by here. It seems I was wrong. I believe that you did not read the notes I left behind. Read them on your way out.\""; - mes "He looks down on his book and ignores you."; - set @talk, 1; - callsub S_Update_Mask; - close; - -L_Talk1: - mes "[Mirak]"; - mes "\"What?! You again? Get going!\""; - set @talk, 2; - callsub S_Update_Mask; - close; - -L_Talk2: - mes "[Mirak]"; - mes "\"What do you want?!\""; - menu - "Nothing.", L_Nothing, - "Money!", L_Quest; - -L_Nothing: - mes "[Mirak]"; - mes "\"Ahhhh! Get lost, or you'll regret it!\""; - set @annoy, @annoy+1; - callsub S_Update_Mask_Annoy; - close; - -L_Quest: - set @dq_cost, DailyQuestPoints; - set @dq_money, 20; - set @dq_exp, 20; - mes "[Mirak]"; - mes "\"If you have some energy left, which I need, I can give you money for it. But only if you will leave me alone!\""; - menu - "Okay.", L_Trade, - "Nah, I won't leave you alone.", L_Kill; - -L_TooSoon: - mes "Mirak looks up, sees you, and gets angry."; - mes "[Mirak]"; - mes "\"I told you not to bother me again! That's why I paid you!\""; - goto L_Kill; - -L_Kill: - misceffect sfx_magic_war, strcharinfo(0); - heal -Hp, 0; - set @annoy, 0; - callsub S_Update_Mask_Annoy; - set Mirak_Bantime, gettimetick(2) + 86400; - set Mirak_Questtime, 0; - mes "The old man stands up and looks at you angrier than ever. He mumbles something and your head explodes."; - next; - mes "[Mirak]"; - mes "\"That's what you get for annoying me! I studied under the Mages of Tulimshar!"; - mes "I feel better now.\""; - next; - mes "The old man sits back down and continues to read."; - close; - -L_Trade: - if (DailyQuestPoints == 0) - goto L_NoPoints; - set Zeny, Zeny + (@dq_money * @dq_cost); - getexp @dq_exp * @dq_cost, 0; - set DailyQuestPoints, DailyQuestPoints - @dq_cost; - - mes "[" + @dq_money * @dq_cost + " money]"; - mes "[" + @dq_exp * @dq_cost + " experience points]"; - mes "\"Now leave or you'll regret it. Don't come back!\""; - set Mirak_Questtime, gettimetick(2) + 86400; - set Mirak_Bantime, 0; - close; - -L_NoPoints: - mes "[Mirak]"; - mes "\"Why do you bother me!? You have no energy left!\""; - goto L_Kill; - -// Bitmasks - -S_Update_Mask_Annoy: - set QUEST_Mirak, - (QUEST_Mirak & ~(@Mirak_Annoy_MASK)) - | (@annoy << @Mirak_Annoy_SHIFT); - return; - -S_Update_Mask: - set QUEST_Mirak, - (QUEST_Mirak & ~(@Mirak_MASK)) - | (@talk << @Mirak_SHIFT); - return; -} diff --git a/world/map/npc/056-2/notes.txt b/world/map/npc/056-2/notes.txt deleted file mode 100644 index f48ced08..00000000 --- a/world/map/npc/056-2/notes.txt +++ /dev/null @@ -1,15 +0,0 @@ -056-2,77,34,0|script|Warning#mirak|400 -{ - mes "Turn around. Do not come any closer!"; - mes "Go back upstairs and leave! I don't want to see anybody!"; - mes "This is the last warning!"; - mes "- Mirak"; - close; -} -056-2,29,30,0|script|Note#mirak|400 -{ - mes "DO NOT GO ANY FURTHER!"; - mes "Put the supplies on the table and do not come downstairs. I don't want to be bothered."; - mes "- Mirak"; - close; -} -- cgit v1.2.3-60-g2f50