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

How to add more settings in autoskills_list #384

Closed hayate1412 closed 4 years ago

hayate1412 commented 4 years ago

I have many different entries but there are only 3 settings. It takes too much efford to replace entry witht he new one in the setting.

reconman commented 4 years ago

Please reformulate your question. What "3 settings" are you talking about? Why are you replacing entries? Why is it too much effort to create a new entry?

hayate1412 commented 4 years ago

Sorry for my english ![Uploading autoskills list.png.jpg…]()

Before, we have 10 entries, 1 to 10. Now we only have 3, qp,dust and gear. Cause i have to replace skill command for 6 different farming quests so it take a lot of efford.

hayate1412 commented 4 years ago

autoskills list png

reconman commented 4 years ago

You misunderstood, you can add unlimited entries!

For example,

Autoskill_List =
{
    {
        Name = "QP",
        Support_PreferredCEs = MonaLisa,
        Skill_Command = "a2b2dfi25,#,5,#,5"
    },
    {
        Name = "Feathers",
        Support_PreferredCEs = Lunchtime,
        Support_PreferredServants = Waver,
        Skill_Command = "0,#,hia5,#,g2cbdft245"
    },
    {
        Name = "Hearts",
        Support_PreferredCEs = Lunchtime,
        Support_PreferredServants = Waver,
        Skill_Command = "bd4,#,ag1hi4,#,fec2k25"
    },
    {
        Name = "EXP",
        Support_PreferredCEs = Lunchtime,
        Support_PreferredServants = Merlin,
        Skill_Command = "ci14,#,gd5,#,b4"
    },
    {
        Name = "Ice ball",
        Support_PreferredCEs = Lunchtime,
        Support_PreferredServants = Merlin,
        Skill_Command = "dg5,#,e5,#,i1abc1k14"
    },
    {
        Name = "Bullet",
        Support_PreferredCEs = Lunchtime,
        Support_PreferredServants = Merlin,
        Skill_Command = "c4,#,cdg4,#,i2fk25"
    }
}
hayate1412 commented 4 years ago

Oh. I will try it now. Thanks a lot for your reply.