I'm not experienced in C#, but I think this should be pretty simple.
I'm working on making a simple plugin to farm mobs and move around to different farm spots after killing 10 mobs or so. Reason for this is to make it harder to spot by other players.
I'll figure it out, just want to make sure I'm on the right track. Would the best way to go be to use the iteration/condition?
ex:
int total = 0;
for (int i = 1; i <= 10; i++)
total += i;
Thanks for any help.
I'm working on making a simple plugin to farm mobs and move around to different farm spots after killing 10 mobs or so. Reason for this is to make it harder to spot by other players.
I'll figure it out, just want to make sure I'm on the right track. Would the best way to go be to use the iteration/condition?
ex:
int total = 0;
for (int i = 1; i <= 10; i++)
total += i;
Thanks for any help.