May 10, 20205 yr Hi, I am looking to randomize certain spells. For example, Buff "Ice armor" sometimes after 30 minutes, sometimes in 15..etc. I do not want the bot to cast it in the same pattern.
May 10, 20205 yr 2 hours ago, warmanebotter said: Hi, I am looking to randomize certain spells. For example, Buff "Ice armor" sometimes after 30 minutes, sometimes in 15..etc. I do not want the bot to cast it in the same pattern. Random randomNumber = new Random(); int iceArmorTimer = randomNumber.Next(15, 30); // Makes the int iceArmorTimer into a random number between 15 and 30
May 11, 20205 yr Author On 5/10/2020 at 5:27 AM, Ordush said: Random randomNumber = new Random(); int iceArmorTimer = randomNumber.Next(15, 30); // Makes the int iceArmorTimer into a random number between 15 and 30 Can I do that in xml profile ? Sorry for my ignorance, but I have zero knowledge of coding. I try to learn and apply.
May 11, 20205 yr 34 minutes ago, warmanebotter said: Can I do that in xml profile ? Sorry for my ignorance, but I have zero knowledge of coding. I try to learn and apply. Not without any coding knowledge
Create an account or sign in to comment