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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

OrderBot Random Number between

pyromanci

New Member
Joined
Sep 1, 2014
Messages
11
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. :
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.
 
Back
Top