Might have found one reason for being caught
Quote:
|
ControlClick("KalOnline","",$handle,"right",1,1,20 0)
|
I'm assuming the 200 means it uses the skill at intervals of 200. GBL looks for keys being hit on the same interval constantly. My auto-splash that I made is not that great compared to this, but it is undetectable. Don't use set intervals, I will show you how I did mine, even tho it's in vb.net. I would be willing to collaborate with taking this to the next level.
Code:
Private Sub TimeSplash_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimeSplash.Tick
Dim a As Integer = CInt(Int((100 * Rnd()) + 1))
Dim b As Integer = CInt(Int((100 * Rnd()) + 1))
TimeSplash.Interval = a + b + 300
Num_1 = 1
SendKeys.Send(Num_1)
End Sub
This should be easy enough to understand as long as you know math.
So splashy ice cooldown = 900
I will do this step by step
Code:
Dim a As Integer = CInt(Int((100 * Rnd()) + 1))
Dim b As Integer = CInt(Int((100 * Rnd()) + 1))
this is setting a and b as a random number up to 100, and then adding 1 more just because i felt like it.
Code:
TimeSplash.Interval = a + b + 300
This is adding the two random numbers and 300, so our key press interval will be between 300 and 502. Using two different random numbers helps to ensure the random part because a+a=2a but a+b=a+b.
This is the most effective way to not have your keypress detected.