diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-10 21:03:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-10 21:03:53 -0300 |
commit | 752f086b8e6aeada501cc7fb452af65dc8c882c6 (patch) | |
tree | 0170282793f88f36e7e3f8bee1bc771f78fd56e1 /npc | |
parent | 3ec45da32a366e728c36d062bb3062f24778d8e2 (diff) | |
download | serverdata-752f086b8e6aeada501cc7fb452af65dc8c882c6.tar.gz serverdata-752f086b8e6aeada501cc7fb452af65dc8c882c6.tar.bz2 serverdata-752f086b8e6aeada501cc7fb452af65dc8c882c6.tar.xz serverdata-752f086b8e6aeada501cc7fb452af65dc8c882c6.zip |
Remove Sponsor Quests from Saulc and GonzoDark.
Rakinorf Sponsor Quest remains, as well as restricted access.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-2/GonzoDark.txt | 52 | ||||
-rw-r--r-- | npc/012-2/Saulc.txt | 52 |
2 files changed, 2 insertions, 102 deletions
diff --git a/npc/012-2/GonzoDark.txt b/npc/012-2/GonzoDark.txt index f5e65314f..38a74ae3f 100644 --- a/npc/012-2/GonzoDark.txt +++ b/npc/012-2/GonzoDark.txt @@ -8,54 +8,6 @@ // Quest ID: 2 012-2,50,81,0 script GonzoDark Sponsor NPC_LUCAS,{ - function resetSQS { - setq SQuest_Sponsor, 0, gettime(GETTIME_MONTH); - } - // Check monthly quest - .@d=getq2(SQuest_Sponsor); - if (.@d != gettime(GETTIME_MONTH)) resetSQS(); - - // Are you a sponsor or a guest? - if (!getgmlevel()) - goto L_Guest; - - // Core - .@q=getq(SQuest_Sponsor); - mesn; - mesq l("Ahh, I hate @@.", getmonsterlink(BlackScorpion)); - if (!(.@q & .questID)) goto L_Menu; - close; - -L_Menu: - mesq l("I will reward you for 7 @@.", getitemlink(.itemID)); - mes ""; - menu - rif(countitem(.itemID) >= 7, l("Here they are!")), L_Finish, - l("Where can I find them?"),L_Where, - l("No, thanks."),L_Close; - -L_Finish: - delitem .itemID, 7; - Zeny=Zeny+700; // 100 GP each - getitem StrangeCoin, rand(1,4); - .@q=getq(SQuest_Sponsor); - setq1 SQuest_Sponsor, .@q | .questID; - mes ""; - mesn; - mesq l("Many thanks! Come back later to bring me extra @@!", getitemlink(.itemID)); - close; - -L_Where: - mes ""; - mesq l("Ah, there are lots on dark mines."); - next; - -L_Close: - closedialog; - goodbye; - close; - -L_Guest: mesn; mesq lg("Yo, girl.", "Yo, man."); next; @@ -63,13 +15,11 @@ L_Guest: mesq l("I sponsor the alliance and all I got was a NPC and access to this ugly room."); next; mesn; - mesq l("Well, I did got some other things more, but I don't want to be an snob."); + mesq l("Well, I don't want to be an snob."); close; OnInit: .sex = G_MALE; .distance = 5; - .questID=2; - .itemID=BlackScorpionStinger; end; } diff --git a/npc/012-2/Saulc.txt b/npc/012-2/Saulc.txt index e4f790475..3b5cadc32 100644 --- a/npc/012-2/Saulc.txt +++ b/npc/012-2/Saulc.txt @@ -8,54 +8,6 @@ // Quest ID: 1 012-2,46,81,0 script Saulc Sponsor NPC_HUMAN_MALE_CHIEF,{ - function resetSQS { - setq SQuest_Sponsor, 0, gettime(GETTIME_MONTH); - } - // Check monthly quest - .@d=getq2(SQuest_Sponsor); - if (.@d != gettime(GETTIME_MONTH)) resetSQS(); - - // Are you a sponsor or a guest? - if (!getgmlevel()) - goto L_Guest; - - // Core - .@q=getq(SQuest_Sponsor); - mesn; - mesq l("Ahh, I hate @@.", getmonsterlink(Pinkie)); - if (!(.@q & .questID)) goto L_Menu; - close; - -L_Menu: - mesq l("I will reward you for 7 @@.", getitemlink(.itemID)); - mes ""; - menu - rif(countitem(.itemID) >= 7, l("Here they are!")), L_Finish, - l("Where can I find them?"),L_Where, - l("No, thanks."),L_Close; - -L_Finish: - delitem .itemID, 7; - Zeny=Zeny+84; // 12 GP each - getitem StrangeCoin, rand(1,4); - .@q=getq(SQuest_Sponsor); - setq1 SQuest_Sponsor, .@q | .questID; - mes ""; - mesn; - mesq l("Many thanks! Come back later to bring me extra @@!", getitemlink(.itemID)); - close; - -L_Where: - mes ""; - mesq l("Ah, there are lots on the fields."); - next; - -L_Close: - closedialog; - goodbye; - close; - -L_Guest: mesn; mesq lg("Yo, girl.", "Yo, man."); next; @@ -63,13 +15,11 @@ L_Guest: mesq l("I sponsor the alliance and all I got was a NPC and access to this ugly room."); next; mesn; - mesq l("Well, I did got some other things more, but I don't want to be an snob."); + mesq l("Well, I don't want to be an snob."); close; OnInit: .sex = G_MALE; .distance = 5; - .questID=1; - .itemID=PinkAntenna; end; } |