I've been looking at a lot of profiles.
There is one 1 really like, but i want to modify it a bit to ad a bit of randomness to it. It's a Shard and crystal farming profile.
It has a few variables in it like to track where it's suppose to stop. :
What I would like to do is is at the end of the profile, increment those values normally I would just do something like:
Or something there about in normal C# coding. I just don't know how to exactly do it with in these OrderBot Profiles. As all the profiles i've looked at never seem to update the value of those Entity tags.
There is one 1 really like, but i want to modify it a bit to ad a bit of randomness to it. It's a Shard and crystal farming profile.
It has a few variables in it like to track where it's suppose to stop. :
Code:
<!ENTITY Crystal_Fire "100">
<!ENTITY Shard_Fire "500">
What I would like to do is is at the end of the profile, increment those values normally I would just do something like:
Code:
int IncLower = 0
int IncHigher = 20;
Shard_Fire += new Random().Next(IncLower , IncHigher);
Or something there about in normal C# coding. I just don't know how to exactly do it with in these OrderBot Profiles. As all the profiles i've looked at never seem to update the value of those Entity tags.