Is there anyway to test an act method for a certain number of turns. My actor does something every 100 turns and it would really convenient if I could set the counter in the test method or something similar.Here is my act set up. Any help would be greatly appreciated.
public void act()
{
counter++;
if (counter == 40)
{
counter = 0;
move();
}
}
