turbocross
New Member
- Joined
- Mar 23, 2010
- Messages
- 231
- Reaction score
- 0
Hi, I'm currently farming some motes and as my bags get full I'd like my character to use the motes to make them into primals. How can I do this?
I know to use items using:
I use the above but HB never loads my CC after I input this code as it always says no CC loaded.
I know to use items using:
Code:
private WoWItem MoteofMana
{
get
{
return HaveItemCheck(22576);
}
}
private uint tmpMoteofManaCount
{
get
{
uint tmpMoteofManaCount = 0;
Lua.DoString("luaMoteofManaCount = GetItemCount(22576)");
tmpSoulShardCount = Lua.GetLocalizedUInt32("luaMoteofManaCount", ObjectManager.Me.BaseAddress);
if (tmpMoteofManaCount > 9)
{
slog("Mote of Mana: " + tmpMoteofManaCount.ToString() + ".");
Lua.DoString("UseItemByName(\"" + MoteofMana.Name + "\")");
Thread.Sleep(600);
}
return tmpMoteofManaCount;
}
I use the above but HB never loads my CC after I input this code as it always says no CC loaded.