ZooeyBot icon indicating copy to clipboard operation
ZooeyBot copied to clipboard

Guidelines to automate farming the Proving Grounds mode

Open Masuzu opened this issue 6 years ago • 0 comments

Greetings fellow skyfarers!

You will find below a configuration to farm the current Proving Grounds Extreme+ mode (or else replace the event URL with the mode you would like to automate), using the Treasure Raid Event mode:

# 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.
# Please refer to https://github.com/Masuzu/ZooeyBot/wiki/Treasure-Raid-Event-mode for more information
[TreasureEventMode]
Enabled=true
# Url of the event page. The URL of the June 2017 dark GW is given as an example.
TreasureEventUrl=http://game.granbluefantasy.jp/#event/sequenceraid002/supporter/1400203
# 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)
Difficulty=proving-grounds
# Action point cost of the quest you are trying to start
ActionPointCost=50
TreasureEventModeScript=Scripts/demo.lua

NightmareModeUrl=
NightmareModeScript=
# Comma-delimited list of summons which will be selected in priority if they are available for the nightmare mode.
# 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.
NightmareModePreferredSummons=Varuna_1
# Zooey will reroll summons until one of the preferred summons for the nightmare mode is available, using trial battles to refresh the summon list.
RerollSummonWhenNoPreferredSummonWasFoundForNightmareMode=true
# 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.
NightmareModeAvailableAtStart=false

Here is an example script I am currently using to clear each stage in 1 turn (Agni x Shiva. Berserker for the first stage with miserable mist bound to the second skill, Asparas for the second stage with with miserable mist bound to the second skill. The first party is Ghandagoza, Anthuria, Grea,The second party is Esser, Shiva, Anila. The 5th summon is the Sun FLB):

if battle == 1 then
  character_1:UseSkill(1)
  character_1:UseSkill(2)
  character_2:UseSkill(3)
  Summon(5)
end
if battle == 2 then
  character_1:UseSkill(2)
  character_2:UseSkill(3)
  character_2:UseSkill(2)
  character_4:UseSkill(3)
  character_4:UseSkill(1)
  character_3:UseSkill(2)
  character_3:UseSkill(1)
  character_3:UseSkill(3)
  Summon(5)
end

Good luck with your loot!

Masuzu avatar Feb 09 '19 19:02 Masuzu