diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-28 01:55:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-28 01:55:25 -0300 |
commit | 62ec97467f12df7d9c697581feef228ff603fc6b (patch) | |
tree | a9aa969eac78664aac83356d255c0607a4077d7f /npc/functions | |
parent | dd6f0b2fc4e6cbfe4d76b51f5df2b82760c7fd07 (diff) | |
download | serverdata-62ec97467f12df7d9c697581feef228ff603fc6b.tar.gz serverdata-62ec97467f12df7d9c697581feef228ff603fc6b.tar.bz2 serverdata-62ec97467f12df7d9c697581feef228ff603fc6b.tar.xz serverdata-62ec97467f12df7d9c697581feef228ff603fc6b.zip |
Nobody likes getting Alchemy Blueprints, so lower them at Thanksgiving from 50% to 33%
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/event.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt index cb6732565..58f3ec57f 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -192,11 +192,11 @@ function script sThanksgiving { mes l("You got a %s!", getitemlink(.@p)); break; case 11: // BLUE - .@p=any(EquipmentBlueprintA, AlchemyBlueprintA); - .@p=(#THANKS_STREAK > 7 ? any(EquipmentBlueprintB, AlchemyBlueprintB) : .@p); - .@p=(#THANKS_STREAK > 14 ? any(EquipmentBlueprintC, AlchemyBlueprintC) : .@p); - .@p=(#THANKS_STREAK > 21 ? any(EquipmentBlueprintD, AlchemyBlueprintD) : .@p); - .@p=(#THANKS_STREAK > 27 ? any(EquipmentBlueprintE, AlchemyBlueprintE) : .@p); + .@p=any(EquipmentBlueprintA, EquipmentBlueprintA, AlchemyBlueprintA); + .@p=(#THANKS_STREAK > 7 ? any(EquipmentBlueprintB, EquipmentBlueprintB, AlchemyBlueprintB) : .@p); + .@p=(#THANKS_STREAK > 14 ? any(EquipmentBlueprintC, EquipmentBlueprintC, AlchemyBlueprintC) : .@p); + .@p=(#THANKS_STREAK > 21 ? any(EquipmentBlueprintD, EquipmentBlueprintD, AlchemyBlueprintD) : .@p); + .@p=(#THANKS_STREAK > 27 ? any(EquipmentBlueprintE, EquipmentBlueprintE, AlchemyBlueprintE) : .@p); getitem .@p, 1; mes l("You got a %s!", getitemlink(.@p)); break; |