29988122 / Fate-Grand-Order_Lua

Fate Grand Order auto battle script - no root needed, for Android use only
MIT License
289 stars 95 forks source link

Custom Script for Summer Race #402

Closed SilvaLau closed 4 years ago

SilvaLau commented 4 years ago

Can I get a custom script for the Dead Heat Summer Race rerun?

reconman commented 4 years ago

And what exactly should that custom script do that is not handled by the default one?

SilvaLau commented 4 years ago

hmm, I don't know, for selecting the boosters and such maybe? The documentation said "A custom script is required for summer racing events and Oni island events. Please ask in issue forum if you need this feature."

reconman commented 4 years ago

Nah, that's outdated. Just set this: https://github.com/29988122/Fate-Grand-Order_Lua/blob/2e5057b6c15d08c6e76f30e6e49b803917cf46c5/docs/features.md#boostitem_selectionmode

SilvaLau commented 4 years ago

On, thank you. Just for clarification though, can I put all the command inside the auto-skill list or should I put them outside of the list? Like the Battle Card Priority and other such things.

`--AutoSkill Enable_Autoskill = 1 Skill_Confirmation = 1

Autoskill_List = { { Name = "Quick", BoostItem_SelectionMode = "1" Battle_CardPriority = "WQ, WB, WA", Support_SelectionMode = "preferred", Support_PreferredServants = "nitocros4", Support_PreferredCEs = "sugar_vacation.png, chaldea_beach_volleyball.png, seaside_luxury.png" } }

--Card Priority Customization Battle_CardPriority = "BAQ" --AutoChooseTarget Battle_AutoChooseTarget = 1 --NoblePhantasm Casting Battle_NoblePhantasm = "danger"`

reconman commented 4 years ago

Outside if it should be a global setting, inside if it should be setting only for that one AutoSkill setup.

SilvaLau commented 4 years ago

oh, so that means I have to create a new script file for every different scenario then?

reconman commented 4 years ago

What is "every different scenario"?

You can use 1 script for all scenarios if you put in a bunch of AutoSkill parties where each party overrides some global settings.

Also your CardPriority inside the AutoSkill_List item is incomplete. Should be "WQ, WB, WA, Q, B, A, RQ, RB, RA".

SilvaLau commented 4 years ago

well, I mean, what if I want to select a different boost item, or prioritize different cards based on the team? I can't do that in a single script right?

Also your CardPriority inside the AutoSkill_List item is incomplete. Should be "WQ, WB, WA, Q, B, A, RQ, RB, RA".

oh, thanks

reconman commented 4 years ago

You can, just like in the part of the script you posted.

SilvaLau commented 4 years ago

oh wait, I can actually do that? sorry, I'm new to this...