Would it be possible to add a random wait time variable that can be used for profiles?
Native XML doesn't support it, so it would be needed either in the program itself or be possible as plugin.
What I'm think of is to add something like:
Values could be defined in a profile like:
Idea is to make it more human like.
Native XML doesn't support it, so it would be needed either in the program itself or be possible as plugin.
What I'm think of is to add something like:
Code:
int min;
int max;
private int randomWaitTime(min,max)
{
Random random = new Random();
return random.Next(min, max);
}
Code:
int returnValue = randomWaitTime();
Values could be defined in a profile like:
Code:
<WaitTimer questId="1" randomWaitTime="50,100" />
Idea is to make it more human like.
Last edited:






