diff options
Diffstat (limited to 'npc')
-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; |