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

[Free Plugin] DivingGiftAutoClicker

Okey can someone make this easier for us noobs like me , who have no clue what u are talking about.

I only understand copy paste at plugin directory and click play.

can you simplify if for me like that please .

6.9.2015 14:26:47.771 > Starting divinegiftclicker
Window dimensions are : 1920 x 1080
6
6.9.2015 14:28:35.011 > Got Divine gift.
6.9.2015 14:28:35.012 > Clicked the gift icon
6.9.2015 14:28:41.792 > ----- DivineGiftClick stopped -----
6.9.2015 14:47:51.492 > Starting divinegiftclicker
Window dimensions are : 1920 x 1080
7
6.9.2015 14:48:08.668 > Click error, trying again in 5 secs... attempt:1
6.9.2015 14:48:15.858 > Click error, trying again in 5 secs... attempt:2
6.9.2015 14:48:23.044 > Click error, trying again in 5 secs... attempt:3
6.9.2015 14:48:30.269 > Click error, trying again in 5 secs... attempt:4
6.9.2015 14:48:37.487 > Click error, trying again in 5 secs... attempt:5
6.9.2015 14:48:42.649 > ----- DivineGiftClick stopped -----
6.9.2015 14:50:25.209 > Starting divinegiftclicker
Window dimensions are : 1920 x 1080
6
6.9.2015 14:52:12.408 > Got Divine gift.
6.9.2015 14:52:12.421 > Clicked the gift icon
6.9.2015 14:56:40.110 > Starting divinegiftclicker
Window was minimized, restoring temporarily
Window dimensions are : 160 x 27
Window was minimized, minimizing back
6
6.9.2015 14:59:04.416 > Click error, trying again in 5 secs... attempt:1
6.9.2015 14:59:11.597 > Click error, trying again in 5 secs... attempt:2
6.9.2015 14:59:18.813 > Click error, trying again in 5 secs... attempt:3
6.9.2015 14:59:25.990 > Click error, trying again in 5 secs... attempt:4
6.9.2015 14:59:33.232 > Click error, trying again in 5 secs... attempt:5
6.9.2015 14:59:38.487 > ----- DivineGiftClick stopped -----
 
https://www.thebuddyforum.com/archebuddy-forum/177840-changelogs-post1869293.html#post1869293
Code:
foreach (var i in getScheduleItems())
{
  Log("Time before we can claim next item: " + i.remainTime.ToString()); 
  Log("Item name: " + i.db.name);
  Log("Received today: " + i.totalReceivedCount.ToString());
  i.Claim(); //will try to claim item
}

How do I make an if statement with these?
if (i.remainTime.ToString() == 0 & i.totalReceivedCount.ToString() < 12)

Operator '==' cannot be applied to operands of type 'string' and 'int'
Operator '<' cannot be applied to operands of type 'string' and 'int'
 
if (i.remainTime.ToString() == 0 & i.totalReceivedCount.ToString() < 12)

you cant compare strings with integers. They both are integers to begin with so you only have to not convert them to string. You also shouldnt use the single & for comparison since its a "binary and" , the proper comparison AND operator is &&
so
if (i.remainTime == 0 && i.totalReceivedCount < 12)
 
mm2211
i am noob mate

can you please give me zip file i extract it to plugging directory i dont know how to make it work, and i did honestly tried all my best.
i am 1920x1080 fullscreen running x3 clients with ultimate fighter plugin, and clients are minimized
 
6.9.2015 17:45:15.292 > Starting divinegiftclicker
Window dimensions are : 1920 x 1080
6.9.2015 17:45:32.531 > Click error, trying again in 5 secs... attempt:1
6.9.2015 17:45:39.726 > Click error, trying again in 5 secs... attempt:2
6.9.2015 17:45:46.893 > Click error, trying again in 5 secs... attempt:3
6.9.2015 17:45:54.114 > Click error, trying again in 5 secs... attempt:4
6.9.2015 17:46:01.360 > Click error, trying again in 5 secs... attempt:5
6.9.2015 17:46:06.559 > ----- DivineGiftClick stopped -----

thats msg i get
 
if (i.remainTime.ToString() == 0 & i.totalReceivedCount.ToString() < 12)

you cant compare strings with integers. They both are integers to begin with so you only have to not convert them to string. You also shouldnt use the single & for comparison since its a "binary and" , the proper comparison AND operator is &&
so
if (i.remainTime == 0 && i.totalReceivedCount < 12)

Oh, I could've sworn that I've tried that before. Must've gotten sloppy.

It did compile, I can't wait to use it, thanks for the help.

6.9.2015 17:45:15.292 > Starting divinegiftclicker
Window dimensions are : 1920 x 1080
6.9.2015 17:45:32.531 > Click error, trying again in 5 secs... attempt:1
6.9.2015 17:45:39.726 > Click error, trying again in 5 secs... attempt:2
6.9.2015 17:45:46.893 > Click error, trying again in 5 secs... attempt:3
6.9.2015 17:45:54.114 > Click error, trying again in 5 secs... attempt:4
6.9.2015 17:46:01.360 > Click error, trying again in 5 secs... attempt:5
6.9.2015 17:46:06.559 > ----- DivineGiftClick stopped -----

thats msg i get

Read the post by Out, he updated AB. I personally couldn't get the divine boxes plugin to work, but I was able to formulate a plugin with the sample given by Out.

If you want to make it easy, just loop what he wrote with

Code:
while (true) { 
-sample-
Thread.Sleep(900000);
}


as 900,000ms is 15 minutes.
 
Last edited:
oh man can u pls give me plugin already done that i dont need to code anything i am having headache here from this facing bullshit and no support on this forums.
spent 200 euro on this people and they can not provide 0 support for people like me who are first time in life even seeing something like this.

Put it at store i will buy it.

JUST FOR GOD LOVE AND ALL REST 10000000000x religions Give me Frikin plugin and how to setup it.
 
Back
Top