Jack Posted September 3, 2013 Posted September 3, 2013 Jack's Pest Control Coming Soon! It is getting closer and closer to flawless every day! I'm adding the paint now, but here is a picture of the logging system... I plan to release it as soon as possible into the sdn!
Popular Posted September 3, 2013 Posted September 3, 2013 I personally voted for the $5 because once I have full void, i never go to pest control ever again :3
beastlymaul Posted September 3, 2013 Posted September 3, 2013 Ye JUST PLEASE NOT FREE THE BAN RATE WILL SKY ROCKET I VOTED $5
Jack Posted September 3, 2013 Author Posted September 3, 2013 Ye JUST PLEASE NOT FREE THE BAN RATE WILL SKY ROCKET I VOTED $5 This is why I dont want it to be free. I want everyone to be safe botting with it. It is very human like though, it attacks spinners first, etc.
ScorpioZ Posted September 3, 2013 Posted September 3, 2013 $5 then $2.99 monthly because usually I don't use PC for more than a month, and if I need to do it after a reduced price would be better than $5 $5 $5 $5
Excell Posted September 3, 2013 Posted September 3, 2013 Will it World hop, like look for the world the majority of clan members are in then hop to that specific world? I would pay much more if this was supported
Jack Posted September 3, 2013 Author Posted September 3, 2013 Will it World hop, like look for the world the majority of clan members are in then hop to that specific world? I would pay much more if this was supported I can look into this, but the clan chat interfaces and not in the api
Mr Asshole Posted September 3, 2013 Posted September 3, 2013 Good luck with this but it won't be as good without world hopping. I suggest you wait till the admins add clan chat api.
Dashboard Posted September 3, 2013 Posted September 3, 2013 Yeah, I'd suggest that you add world hopping before releasing this script.
Th3 Posted September 3, 2013 Posted September 3, 2013 (edited) Will it World hop, like look for the world the majority of clan members are in then hop to that specific world? I would pay much more if this was supportedI can look into this, but the clan chat interfaces and not in the api Read the interface data from the clan members, array the worlds all the members are in. Using a map find the most common number in the array and hop to that world. Something like this. public int getCommonWorld(int[] a) { int count = 1, tempCount; int world = a[0]; int temp = 0; for (int i = 0; i < (a.length - 1); i++) { temp = a[i]; tempCount = 0; for (int j = 1; j < a.length; j++) { if (temp == a[j]) tempCount++; } if (tempCount > count) { world = temp; count = tempCount; } } return world; } Edited September 3, 2013 by Th3
Jack Posted September 3, 2013 Author Posted September 3, 2013 Will it World hop, like look for the world the majority of clan members are in then hop to that specific world? I would pay much more if this was supportedI can look into this, but the clan chat interfaces and not in the apiRead the interface data from the clan members, array the worlds all the members are in. Using a map find the most common number in the array and hop to that world.Something like this. public int getCommonWorld(int[] a){int count = 1, tempCount;int world = a[0];int temp = 0;for (int i = 0; i < (a.length - 1); i++){temp = a[i];tempCount = 0;for (int j = 1; j < a.length; j++){if (temp == a[j])tempCount++;}if (tempCount > count){world = temp;count = tempCount;}}return world;} im good with the advanced java part, its just reading the world from the interfaces that im having trouble with.
Th3 Posted September 3, 2013 Posted September 3, 2013 You gonna have to make your own hook to get the components of the child for it since API doesn't support the option at the moment. I think it's the components of interface 489 child 5.
Jack Posted September 3, 2013 Author Posted September 3, 2013 You gonna have to make your own hook to get the components of the child for it since API doesn't support the option at the moment. I think it's the components of interface 489 child 5. Is there an example somewhere?