using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using static app.MapAreaStruc; namespace app { public class KahlimBrainRush { Form1 Form1_0; public int CurrentStep = 0; public bool ScriptDone = false; public Position ChestPos = new Position { X = 0, Y = 0 }; public void SetForm1(Form1 form1_1) { Form1_0 = form1_1; } public void ResetVars() { CurrentStep = 0; ScriptDone = false; } public void DetectCurrentStep() { if ((Enums.Area)Form1_0.PlayerScan_0.levelNo == Enums.Area.FlayerJungle) CurrentStep = 1; if ((Enums.Area)Form1_0.PlayerScan_0.levelNo == Enums.Area.FlayerDungeonLevel1) CurrentStep = 2; if ((Enums.Area)Form1_0.PlayerScan_0.levelNo == Enums.Area.FlayerDungeonLevel2) CurrentStep = 3; if ((Enums.Area)Form1_0.PlayerScan_0.levelNo == Enums.Area.FlayerDungeonLevel3) CurrentStep = 4; } public void RunScript() { Form1_0.Town_0.ScriptTownAct = 3; //set to town act 5 when running this script if (Form1_0.Town_0.GetInTown()) { Form1_0.SetGameStatus("GO TO WP"); CurrentStep = 0; Form1_0.Town_0.GoToWPArea(3, 3); } else { if (CurrentStep == 0) { Form1_0.SetGameStatus("DOING KAHLIM BRAIN"); Form1_0.Battle_0.CastDefense(); Form1_0.WaitDelay(15); if ((Enums.Area) Form1_0.PlayerScan_0.levelNo == Enums.Area.FlayerJungle) { Form1_0.Town_0.SpawnTP(); CurrentStep++; } else { DetectCurrentStep(); if (CurrentStep == 0) Form1_0.Town_0.GoToTown(); } } if (CurrentStep == 1) { Form1_0.PathFinding_0.MoveToExit(Enums.Area.FlayerDungeonLevel1); CurrentStep++; } if (CurrentStep == 2) { if (Form1_0.PlayerScan_0.levelNo != (int)Enums.Area.FlayerDungeonLevel1) { CurrentStep--; return; } Form1_0.PathFinding_0.MoveToExit(Enums.Area.FlayerDungeonLevel2); CurrentStep++; } if (CurrentStep == 3) { if (Form1_0.PlayerScan_0.levelNo != (int)Enums.Area.FlayerDungeonLevel2) { CurrentStep--; return; } Form1_0.PathFinding_0.MoveToExit(Enums.Area.FlayerDungeonLevel3); CurrentStep++; } if (CurrentStep == 4) { if (Form1_0.PlayerScan_0.levelNo != (int)Enums.Area.FlayerDungeonLevel3) { CurrentStep--; return; } ChestPos = Form1_0.MapAreaStruc_0.GetPositionOfObject("object", "KhalimChest2", (int) Enums.Area.FlayerDungeonLevel3, new List()); if (ChestPos.X != 0 && ChestPos.Y != 0) { Form1_0.PathFinding_0.MoveToThisPos(ChestPos); //repeat clic on chest int tryyy = 0; while (tryyy <= 25) { Dictionary itemScreenPos = Form1_0.GameStruc_0.World2Screen(Form1_0.PlayerScan_0.xPosFinal, Form1_0.PlayerScan_0.yPosFinal, ChestPos.X, ChestPos.Y); Form1_0.KeyMouse_0.MouseClicc(itemScreenPos["x"], itemScreenPos["y"]); Form1_0.PlayerScan_0.GetPositions(); tryyy++; } CurrentStep++; } else { Form1_0.method_1("Kahlim Brain Chest location not detected!", Color.Red); Form1_0.Town_0.UseLastTP = false; ScriptDone = true; return; } } if (CurrentStep == 5) { if (!Form1_0.Battle_0.DoBattleScript(15)) { Position ThisTPPos = new Position { X = ChestPos.X - 10, Y = ChestPos.Y + 5 }; Form1_0.PathFinding_0.MoveToThisPos(ThisTPPos); Form1_0.Town_0.TPSpawned = false; CurrentStep++; } } if (CurrentStep == 6) { Form1_0.SetGameStatus("Kahlim Brain waiting on leecher"); if (!Form1_0.Town_0.TPSpawned) Form1_0.Town_0.SpawnTP(); Form1_0.Battle_0.DoBattleScript(15); //get leecher infos Form1_0.PlayerScan_0.GetLeechPositions(); if (Form1_0.PlayerScan_0.LeechlevelNo == (int)Enums.Area.FlayerDungeonLevel3) { CurrentStep++; } } if (CurrentStep == 7) { Form1_0.SetGameStatus("Kahlim Brain waiting on leecher #2"); Form1_0.Battle_0.DoBattleScript(15); //get leecher infos Form1_0.PlayerScan_0.GetLeechPositions(); if (Form1_0.PlayerScan_0.LeechlevelNo == (int)Enums.Area.KurastDocks) { Form1_0.Town_0.UseLastTP = false; ScriptDone = true; } } } } } }