diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-01-25 22:05:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-01-25 22:05:47 -0300 |
commit | 18f2b5d9162bedb886cd6206c130dfdb76c5b667 (patch) | |
tree | 9d9b35b567d24417d9b7dc8ab6c59cc462277c55 | |
parent | de66882b663b359fcab31c1c8affa37f2db3b71b (diff) | |
download | serverdata-18f2b5d9162bedb886cd6206c130dfdb76c5b667.tar.gz serverdata-18f2b5d9162bedb886cd6206c130dfdb76c5b667.tar.bz2 serverdata-18f2b5d9162bedb886cd6206c130dfdb76c5b667.tar.xz serverdata-18f2b5d9162bedb886cd6206c130dfdb76c5b667.zip |
Change Swezanne to give her cards weekly, not monthly. Reduce total No of cards
-rw-r--r-- | npc/003-1/swezanne.txt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/npc/003-1/swezanne.txt b/npc/003-1/swezanne.txt index 83a45c23a..262691adf 100644 --- a/npc/003-1/swezanne.txt +++ b/npc/003-1/swezanne.txt @@ -34,12 +34,12 @@ L_Heroics: mesn; .@d=rand2(1,6); - if (.@d == 1) .@deed$="protected our cities!"; - else if (.@d == 2) .@deed$="did great acts of bravery!"; - else if (.@d == 3) .@deed$="is just awesome!"; - else if (.@d == 4) .@deed$="killed a monster army single-handed!"; - else if (.@d == 5) .@deed$="proved their worth in battlefield!"; - else if (.@d == 6) .@deed$="impressed even the High Council!"; + if (.@d == 1) .@deed$=l("protected our cities!"); + else if (.@d == 2) .@deed$=l("did great acts of bravery!"); + else if (.@d == 3) .@deed$=l("is just awesome!"); + else if (.@d == 4) .@deed$=l("killed a monster army single-handed!"); + else if (.@d == 5) .@deed$=l("proved their worth in battlefield!"); + else if (.@d == 6) .@deed$=l("impressed even the High Council!"); else .@deed$="is awesome like me!"; // Should not happen mesq l("I hope to one day be like @@, who @@", $MOST_HEROIC$, .@deed$); @@ -72,17 +72,17 @@ L_Finish2: .@q3=getq3(TulimsharQuest_Swezanne)+1; setq2 TulimsharQuest_Swezanne, gettimetick(2)+60*60*24; setq3 TulimsharQuest_Swezanne, .@q3; - if (!(.@q3 % 30)) { - //inventoryplace MercCard_Swezanne, 1; - getitem MercCard_Swezanne, 10; + //inventoryplace MercCard_Swezanne, 2; + if (!(.@q3 % 7)) { + getitem MercCard_Swezanne, 2; mesn; - mesq l("Thanks for helping me this month. Here is my card, just call me if you need."); + mesq l("Thanks for helping me this week. Here is my card, just call me if you need."); } close; L_Finish: delitem CactusDrink, 5; - getexp 63, 4; // 4 Job points! A "great" reward. + getexp 63, 5; // 5 Job points! A "great" reward. // Bonus: +300% .@price = getiteminfo(CactusDrink, ITEMINFO_SELLPRICE) * 5 * 3; Zeny += .@price; |