julianperrott / WowClassicGrindBot

WOW Classic Grind Bot, World of Warcraft Grind Bot - No DLL injection or memory watching, just screen capture and mouse and keyboard clicking.
121 stars 206 forks source link

mage6.json fixes #15

Closed teehehe closed 4 years ago

teehehe commented 4 years ago
{
      "Name": "Low Health",
      "HasCastBar": true,
      "StopBeforeCast": true,
      "Key": "6",
      "Requirement": "TargetHealth%<90",
      "Cooldown": 10,
      "Log": false
    },

should be

{
      "Name": "Low Health",
      "HasCastBar": true,
      "StopBeforeCast": true,
      "Key": "6",
      "Requirement": "Health%<90",
      "Cooldown": 10,
      "Log": false
    },

and then

  {
      "Name": "Conjure Food",
      "HasCastBar": true,
      "StopBeforeCast": true,
      "Key": "8",
      "Requirement": "not BagItem:5350:4",
      "Cooldown": 30,
      "Log": false
    }

should be

{
      "Name": "Conjure Food",
      "HasCastBar": true,
      "StopBeforeCast": true,
      "Key": "8",
      "Requirement": "not BagItem:5349:4",
      "Cooldown": 30,
      "Log": false
    }