What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Recent content by igm

  1. I

    auto loot

    using System; using System.Drawing; using System.Windows.Forms; using System.Threading; using System.Collections.Generic; using System.Linq; using ArcheBuddy.Bot.Classes; namespace Combat { public class PrimevalCombat : Core { public static string GetPluginAuthor() { return "iGM"...
  2. I

    Question: Call Pet

    Try this private bool haveMount = false; public void PluginRun() { onNewCreature += (c) => { if (c.Equals(getMount())) haveMount = true; }; onCreatureRemoved += (c) => { if (c.Equals(getMount())) haveMount = false; }; } EDIT: I'm dumb, this doesn't...
Back
Top