From e4e448f867268abf04197039fe6e0e58dd141585 Mon Sep 17 00:00:00 2001 From: wcko87 Date: Fri, 12 May 2017 21:51:30 +0800 Subject: [PATCH] add variables: no. of health/mana/regen/pack/attack ups --- rabi_splitter_WPF/VariableExportConfig.cs | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/rabi_splitter_WPF/VariableExportConfig.cs b/rabi_splitter_WPF/VariableExportConfig.cs index aacb8cd..b64dbd9 100644 --- a/rabi_splitter_WPF/VariableExportConfig.cs +++ b/rabi_splitter_WPF/VariableExportConfig.cs @@ -194,6 +194,37 @@ namespace rabi_splitter_WPF tracker: () => snapshot == null ? 0 : snapshot.stamina ), + ExportVariable ( + handle: "healthups", + displayName: "No. of Health Ups", + tracker: () => snapshot == null ? 0 : snapshot.nHpUps + ), + + ExportVariable ( + handle: "manaups", + displayName: "No. of Mana Ups", + tracker: () => snapshot == null ? 0 : snapshot.nManaUps + ), + + ExportVariable ( + handle: "regenups", + displayName: "No. of Regen Ups", + tracker: () => snapshot == null ? 0 : snapshot.nRegenUps + ), + + ExportVariable ( + handle: "packups", + displayName: "No. of Pack Ups", + tracker: () => snapshot == null ? 0 : snapshot.nPackUps + ), + + ExportVariable ( + handle: "attackups", + displayName: "No. of Attack Ups", + tracker: () => snapshot == null ? 0 : snapshot.nAttackUps + ), + + ExportVariable ( handle: "x", displayName: "x",