Skip to content

Commit

Permalink
"new" acs quest (2024)
Browse files Browse the repository at this point in the history
  • Loading branch information
wtffidy committed Jan 18, 2025
1 parent 3478ba8 commit 6cbe13b
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 8 deletions.
34 changes: 26 additions & 8 deletions Army/OneClient/AccsForAll.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,46 @@ public void ScriptMain(IScriptInterface Bot)
{
Core.SetOptions();

Core.Logger("Quest has been Removed, blame AE");
// FreeAcs();
// Core.Logger("Quest has been Removed, blame AE");
FreeAcs();

Core.SetOptions(false);
}

#region 2024
private void FreeAcs()
{
List<string> warnings = new();
Core.OneTimeMessage("Only for army", "This is intended for use with an army, not for solo players.");

while (!Bot.ShouldExit && Army.doForAll())
{
if (!Story.QuestProgression(9937))
if (Bot.Quests.IsAvailable(10035))
{
Core.EnsureAccept(9937);
Core.HuntMonster("yulgar", "Agitated Orb", "Free ACs... and Yogurt");
Core.EnsureComplete(9937);
Core.EquipClass(ClassType.Solo);
Core.EnsureAccept(10035);
Core.KillMonster("borgars", "r2", "Left", "*", "Cookie Dough");
Core.EnsureComplete(10035);
Bot.Wait.ForQuestComplete(10035);
}
}
}

// private void FreeAcs()
// {
// List<string> warnings = new();
// Core.OneTimeMessage("Only for army", "This is intended for use with an army, not for solo players.");

// while (!Bot.ShouldExit && Army.doForAll())
// {
// if (!Story.QuestProgression(9937))
// {
// Core.EnsureAccept(9937);
// Core.HuntMonster("yulgar", "Agitated Orb", "Free ACs... and Yogurt");
// Core.EnsureComplete(9937);
// }
// }
// }

// public void FreeAcs()
// {
// List<string> warnings = new();
Expand Down Expand Up @@ -73,7 +91,7 @@ private void FreeAcs()

// }
// }

#endregion 2024
}


Expand Down
33 changes: 33 additions & 0 deletions Other/FreeAcGifts[Yearly]/2024HolidayAcGift.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
name: Holdiay Ac Gift 2024
description: This script will kill burlingster in /borgars to get free 500 AC.
tags: ac, free, 500, 2024
*/
//cs_include Scripts/CoreBots.cs
using Skua.Core.Interfaces;

public class HoldiayAcGift2024
{
private IScriptInterface Bot => IScriptInterface.Instance;
private CoreBots Core => CoreBots.Instance;

public void ScriptMain(IScriptInterface Bot)
{
Core.SetOptions();

GetFreeAcs();
Core.SetOptions(false);
}

public void GetFreeAcs()
{
if (Bot.Quests.IsAvailable(10035))
{
Core.EquipClass(ClassType.Solo);
Core.EnsureAccept(10035);
Core.KillMonster("borgars", "r2", "Left", "*", "Cookie Dough");
Core.EnsureComplete(10035);
Bot.Wait.ForQuestComplete(10035);
}
}
}

0 comments on commit 6cbe13b

Please sign in to comment.