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

How do Upgrade/Downgrade Specialization

Manicao

New Member
Joined
Mar 16, 2015
Messages
13
Reaction score
0
I found how to get specialization/points, but I couldn't find how to do upgrade/downgrade.

Code:
foreach (var actb in me.getActabilities().where(w => w.points == 20000 && w.name == "Farming"))
{
  [B]actb.???[/B]
}

And how can I cancel the current CollectItemsAtFarm/PlantItemsAtFarm being executed? (I don't want collect/plant one by one)
Ex.: I would like when I press a button, cancel these plugin's actions.
 
Last edited:
And how can I cancel the current CollectItemsAtFarm/PlantItemsAtFarm being executed? (I don't want collect/plant one by one)
Ex.: I would like when I press a button, cancel these plugin's actions.

u must use Thread. Then u can Thread - pause or abort .
But sometimes AB crashed after th.abort()
It is necessary to carefully examine this possibility
 
Back
Top