Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.04 KB | None | 0 0
  1. [General]
  2. # Possible values: jp, en. Default to en when the string is malformed. Please make sure that your configuration file is encoded using UTF8 if you use non Unicode characters.
  3. Language=en
  4. MaxPageLoadDelayInMsBeforeRetry=3500
  5. # Maximum amount of time Zooey will wait for an expected event to occur (for instance, the attack button appearance) before triggering the fallback policy.
  6. MaxTriggerDelayInMsBeforeFallback=5000
  7. # Maximum delay before an action is deemed to have failed due to a lack of response from the GBF servers
  8. MaxResponseDelayInMs=2500
  9. # Maximum number of retry attempts when an action fails (due to a lack of response for instance) before the fallback policy kicks in
  10. MaxNumActionRetries=2
  11. MinWaitTimeInMsAfterRefresh=2000
  12. # The bot will stop after the given parameter no matter what.
  13. TimeLimitInSeconds=7000
  14. UseViramate=false
  15. # Zooey-bot will stop after using the given number of 1/2 AP potions (resets each time you restart Zooey-bot)
  16. MaxNumPotionsToUse=100
  17. # The number of 1/2 AP potions to use for each refill
  18. NumPotionsToUsePerRefill=1
  19.  
  20. # Horizontal position of the countdown timer which appears when a nightmare mode is available, with regards to the top left corner of your desktop. No countdown timer is displayed when the Event mode is activated.
  21. CountdownTimerHorizontalPosition=0
  22. # Vertical position of the countdown timer which appears when a nightmare mode is available, with regards to the top left corner of your desktop. No countdown timer is displayed when the Event mode is activated.
  23. CountdownTimerVerticalPosition=0
  24.  
  25. # The "slave mode" is used to host Co-Op quests (the slime H2-1 stage for instance) using 2 accounts on a same computer.
  26. # It requires the use of 2 accounts and the "zooey-bot-slave" Chrome extension installed in addition to the "zooey-bot" Chrome extension.
  27. # The "slave account" will host the quests and pay the AP cost.
  28. # You can log into a second account on a same computer using Chrome Incognito mode.
  29. # To use this mode, set the parameter Active to true and follow the console instructions.
  30. [SlaveMode]
  31. Active=false
  32. # Relative path to the script to use to customize the behaviour of the main account.
  33. # If left blank, the slave account will attack at each turn.
  34. MainAccountLuaScript=Scripts/slime_blasting_sword_master.lua
  35. # Relative path to the script to use to customize the behaviour of the slave account.
  36. # If left blank, the slave account will attack at each turn.
  37. SlaveLuaScript=Scripts/slime_blasting_sword_master.lua
  38. # By default, Zooey will make the slave account attack first. Set this parameter to true if you would like your main account to attack first.
  39. ProcessMainAccountTurnFirst=false
  40. # If this parameter is set to false, the slave account will refill its action points by navigating to the supply menu just like you would!
  41. QuickActionPointRefill=true
  42.  
  43. [Inputs]
  44. DelayInMsBetweenMouseDownAndUp=40
  45. RandomDelayInMsBetweenMouseDownAndUp=20
  46. MouseSpeed=580
  47. MouseScrollSpeed=250
  48. # The bot will stop when you press the given key. The default key is F1. Please refer to https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx (the values on this page are given in hexadecimal base).
  49. # If you also use Viramate, DO NOT use a key which is shared by Viramate shortcuts.
  50. ExitKeyCode=112
  51. # After the bot moves the cursor to the target position, wait for the given duration before performing the click
  52. WaitTimeInMsBeforeClickInput=50
  53.  
  54. [PartySelection]
  55. # Integer which defines the party group to use. If an integer outside of the range [1, 7] (boundaries included) is provided, the current party group will be selected.
  56. PreferredPartyGroup=0
  57. # Integer which defines the party deck to use. If an integer outside of the range [1, 6] (boundaries included) is provided, the current party deck will be selected.
  58. PreferredPartyDeck=0
  59. # Integer which defines the party group to use for the nightmare mode. If an integer outside of the range [1, 7] (boundaries included) is provided, the current party group will be selected.
  60. PreferredNightmareModePartyGroup=0
  61. # Integer which defines the party deck to use for the nightmare mode. If an integer outside of the range [1, 6] (boundaries included) is provided, the current party deck will be selected.
  62. PreferredNightmareModePartyDeck=0
  63. # Relative path to the Lua script to use to select programmatically a party based on the selected support summon
  64. PartySelectionScript=party_selection.lua
  65.  
  66. [Summons]
  67. # Comma-delimited list of summons which will be selected in priority if they are available
  68. PreferredSummons=Kaguya,White Rabbit
  69. # In case none of the preferred summons was found, select a random summon in the given summon attribute tab, unless the parameter RerollSummonWhenNoPreferredSummonWasFound is set to true.
  70. # Possible values are 'misc' (Kaguya, White Rabbit fall into this category), 'fire', 'water', 'earth', 'wind', 'light' or 'dark'.
  71. # Not case-sensitive.
  72. DefaultSummonAttributeTab=Dark
  73. # Zooey will reroll summons until one of the preferred summons is available, using trial battles to refresh the summon list. This does not apply to the summon selection for the nightmare stage (see the EventMode section).
  74. RerollSummonWhenNoPreferredSummonWasFound=false
  75.  
  76. [Combat]
  77. # If set to true, emulate Viramate shortcut keys (works without installing Viramate)
  78. EnableShortcutKeys=false
  79. # If set to true, increase the in-game frame rate. The feature is disabled by default.
  80. EnableFpsAcceleration=false
  81. # Zooey-bot will wait at least the given number of milliseconds after pressing the attack button
  82. MinWaitTimeInMsAfterAttack=500
  83. # Zooey-bot will wait at least the given number of milliseconds after using a summon
  84. MinWaitTimeInMsAfterSummon=3000
  85. # Zooey-bot will wait at least the given number of milliseconds after using a skill
  86. MinWaitTimeInMsAfterAbility=2200
  87. # Relative path to the script to use to customize the pace of combats. Embrace a world of infinite possibilities!
  88. # Leave this parameter blank if you do not want to use any script. In this case Zooey will just attack at each turn. You can test your scripts using the TrialBattleMode (see the Debug section).
  89. # Please refer to https://github.com/Masuzu/ZooeyBot/wiki/Lua-scripts for a comprehensive overview of the scripting features.
  90. LuaScript=slime_blasting_sword_master.lua
  91. # If set to true, Zooey will refresh the page after each attack on the last stage of a quest.
  92. # This saves up some precious seconds and that is what every MVP racer does.
  93. ReloadPageOnLastBattle=false
  94. # Maximum wait time in milliseconds to load the character selection menu when an ability targetting a party member is used.
  95. MaxWaitTimeToLoadCharacterSelectionMenuInMs=1100
  96. EnableEarlyTurnStartWithViramate=false
  97. # This parameter is only taken into account when UseViramate and EnableEarlyTurnStartWithViramate are set to true, which makes it possible to cast skills or use summons before the raid stage is fully loaded. It configures how long to wait before taking any action, from the moment Zooey deemed it possible to start casting skills or using summons.
  98. MinWaitTimeBeforeActionAfterEarlyTurnStartInMs=1500
  99.  
  100. # After performing a chain burst with 2 or more characters, you can't take any actions for a short period of time.
  101. # Use the parameters below to configure how long you would like to wait when it happens.
  102. AdditionalDelayInMsAfter2ChainBurst=3000
  103. AdditionalDelayInMsAfter3ChainBurst=7000
  104. AdditionalDelayInMsAfter4ChainBurst=11500
  105. AdditionalDelayInMsAfterOverchainBurst=11500
  106.  
  107. # Showcase: Zooey bot project - Cerberus showdown 3-hour demo - automated event grinding
  108. # https://www.youtube.com/watch?v=-xvDRwB4QEk
  109. # Applicable to any quest with a nightmare mode such as Angel Halo and Xeno showdowns.
  110. # Please refer to https://github.com/Masuzu/ZooeyBot/wiki/Event-mode for more information.
  111. [EventMode]
  112. # Set this parameter to true to use the event mode. Zooey will enter autopilot mode when you navigate to the quest menu.
  113. Enabled=true
  114. # Url of the summon selection page for Angel Halo (Extreme)
  115. EventRaidUrl=http://game.granbluefantasy.jp/#quest/supporter/510051/5
  116. EventRaidScript=
  117. # Url of the summon selection page for Dimensional Halo
  118. NightmareModeUrl=http://game.granbluefantasy.jp/#quest/supporter/510051/5
  119. NightmareModeScript=
  120. # Some events such as Rise of the Beasts require to navigate to the home page of the event before navigating to the event raid url defined above. If EventPageUrl is provided, Zooey will first navigate to this url before hosting the raid. Leave EventPageUrl blank for events which do not require you to do so.
  121. EventPageUrl=
  122. # Comma-delimited list of summons which will be selected in priority if they are available for the nightmare mode.
  123. # In case none of the preferred summons was found, select a random summon in the summon attribute tab defined by the parameter DefaultSummonAttributeTab, unless the parameter RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode is set to true.
  124. NightmareModePreferredSummons=Bahamut
  125. # Zooey will reroll summons until one of the preferred summons for the nightmare mode is available, using trial battles to refresh the summon list.
  126. RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode=true
  127. # Set this parameter to true if the nightmare mode is available when you start Zooey so she can proceed to the nightmare stage right ahead.
  128. NightmareModeAvailableAtStart=false
  129. # Wait time in milliseconds after Zooey finishes loading the EventPageUrl
  130. WaitTimeInMsAfterEventPageIsLoaded=1000
  131.  
  132. # Use this special event mode to automate farming of events stages which require a certain number of items to be hosted, such as Guild War nightmare modes.
  133. # Please refer to https://github.com/Masuzu/ZooeyBot/wiki/Treasure-Raid-Event-mode for more information
  134. [TreasureEventMode]
  135. Enabled=false
  136. # Url of the event page. The URL of the June 2017 dark GW is given as an example.
  137. TreasureEventUrl=http://game.granbluefantasy.jp/#quest/extra/event/2018
  138. # Supported value are 'vh' (for "very hard"), 'ex' (for "extreme"), 'impossible' (introduced since the "Right Behind You" event), 'xeno-raid' (for the level 100 Xeno raid), 'gw' (for the preliminary round and first day of "Unite and Fight" nightmare mode level 90), 'gw-day-2-nm-90' for the second and 3rd days of "Unite and Fight" nightmare mode level 90, 'gw-day-2-nm-95' for the second and 3rd days of "Unite and Fight" nightmare mode level 95, 'gw-day-4-nm-90' for the 4th and last days of "Unite and Fight" nightmare mode level 90, 'gw-day-4-nm-95' for the 4th and last days of "Unite and Fight" nightmare mode level 95, 'gw-day-4-nm-100' for the 4th and last days of "Unite and Fight" nightmare mode level 100, proving-grounds (https://github.com/Masuzu/ZooeyBot/wiki/Treasure-Raid-Event-mode#proving-grounds)
  139. Difficulty=gw-day-4-nm-90
  140. # Action point cost of the quest you are trying to start
  141. ActionPointCost=30
  142. TreasureEventModeScript=
  143.  
  144.  
  145. NightmareModeUrl=
  146. NightmareModeScript=
  147. # Comma-delimited list of summons which will be selected in priority if they are available for the nightmare mode.
  148. # In case none of the preferred summons was found, select a random summon in the summon attribute tab defined by the parameter DefaultSummonAttributeTab, unless the parameter RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode is set to true.
  149. NightmareModePreferredSummons=Bahamut
  150. # Zooey will reroll summons until one of the preferred summons for the nightmare mode is available, using trial battles to refresh the summon list.
  151. RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode=true
  152. # Set this parameter to true if the nightmare mode is available when you start Zooey so she can proceed to the nightmare stage right ahead.
  153. NightmareModeAvailableAtStart=false
  154.  
  155. ProvingGroundsFirstBattlePreferredParty=2
  156. ProvingGroundsSecondBattlePreferredParty=1
  157. ProvingGroundsThirdBattlePreferredParty=2
  158.  
  159. # Use this mode to host and repeat co-op stages on your own.
  160. # More information about this mode can be found here https://github.com/Masuzu/ZooeyBot/wiki/Solo-co-op-mode
  161. [SoloCoOpMode]
  162. Enabled=false
  163. # Relative path to the script to use to customize the behaviour of the main account.
  164. # If left blank, the slave account will attack at each turn.
  165. LuaScript=Scripts/slime_blasting_sword_master
  166.  
  167. # Use this mode to repeat a certain number of times raid A, then move on to raid B and so on.
  168. # More information to get started with the customized raid scheduling mode can be found here https://github.com/Masuzu/ZooeyBot/wiki/Customized-raid-scheduling
  169. [CustomizedScheduling]
  170. Enabled=false
  171. SchedulingLuaScript=scheduling.lua
  172. PlaySoundNotificationAfterScheduling=false
  173.  
  174. [Debug]
  175. Clicks=false
  176. # When this parameter is set to true, Zooey bot won't start until you press ENTER. This is especially useful to test your Lua scripts using trial battles.
  177. TrialBattleMode=false
  178. DebugCalibration=false
  179. DebugLuaScriptLoading=false
  180.  
  181. # With this mode, Zooey will not perform any action. Use this mode to capture status effects by clicking on the list of status effects of characters and/or enemies, as shown here: https://i.imgur.com/bdneWen.png). A summary file named "status_effects.txt" will also log the captured status effects.
  182. [ListenerMode]
  183. Enable=false
  184.  
  185. [Alerting]
  186. # Relative path to the mp3 or wav file to play when the captcha window appears
  187. CaptchaNotificationSoundPath=captcha_notification.mp3
  188. # Number of times the captcha notification sound is played before Zooey stops, following a captcha appearance.
  189. NumNotifications=9999
  190. # Maximum number of times in a row allowed when Zooey has to refresh the summon page. Reloading an abnormally high amount of times can indicate that the captcha popup is displayed but that Zooey somehow missed it.
  191. # A sound notification will be played when the summon selection page is refreshed more than this number of times.
  192. MaxNumSummonSelectionFailuresBeforePlayingSoundNotification=3
  193. StopAndPlaySoundAlertOnNightmareModeAppearance=true
  194.  
  195. [DimensionalHalo]
  196. # It is possible to know in advance whether the Dimensional Halo boss will transform or not.
  197. # Unless you are not already drowning in Angel fodder, set this parameter to true to retreat immediately at the start of the battle if the boss won't transform.
  198. RetreatWhenNoDimensionalHaloTransformation=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement