[Release] OyhelperPET SOURCE CODE!

10/23/2016 21:52 orys#1
#CLOSE
10/23/2016 21:57 benk980#2
thanks you very much of your effort for the community ! we greatly appreciate that
10/23/2016 21:59 orys#3
Quote:
Originally Posted by benk980 View Post
thanks you very much of your effort for the community ! we greatly appreciate that
I am happy that it can help someone, I will publish other codes in the future ;) ;)
10/23/2016 22:10 SonyporSpace#4
wow, ty :D
10/23/2016 22:11 orys#5
Quote:
Originally Posted by SonyporSpace View Post
wow, ty :D

do not forget to put like :p
10/24/2016 03:00 ItsTequila#6
Nice job but in my opinion you could've done way better job on C# and try focusing on creating as many files as you need.

And a tip from me:
Don't re-create the same thing twice that can be done with the same code
10/24/2016 07:21 orys#7
Quote:
Originally Posted by NUMANDERBUHMAN View Post
Nice job but in my opinion you could've done way better job on C# and try focusing on creating as many files as you need.

And a tip from me:
Don't re-create the same thing twice that can be done with the same code
Hi, you're right, I with this code I wanted to give initial help to those who want to creating bots, and have no experience.
I did not go with complicating procedures or other, to try to understand the code having basic knowledge
( I admit it is a bit confusing but it is not difficult to understand :D )

P.S: vb.net in my opinion is the easiest to learn


Es c# procedure repair p.e.t:
Code:
private void repair_pet()
{
	String[] dataz = null;
	string imgshade = "16";
	dataz = UseImageSearch((Convert.ToString("*") + imgshade) + " " + "images\\petz.png");
	if (dataz != null && dataz.Length != 0) {
		int xc = 0;
		int yc = 0;
		int.TryParse(dataz(1), xc);
		int.TryParse(dataz(2), yc);
		au.MouseClick("left", xc, yc, 1, 0);
	}
}
10/24/2016 12:16 manulaiko3.0#8
I would recommend using github for source code releases.
10/24/2016 15:45 ItsTequila#9
Quote:
Originally Posted by orys View Post
Hi, you're right, I with this code I wanted to give initial help to those who want to creating bots, and have no experience.
I did not go with complicating procedures or other, to try to understand the code having basic knowledge
( I admit it is a bit confusing but it is not difficult to understand :D )

P.S: vb.net in my opinion is the easiest to learn


Es c# procedure repair p.e.t:
Code:
private void repair_pet()
{
	String[] dataz = null;
	string imgshade = "16";
	dataz = UseImageSearch((Convert.ToString("*") + imgshade) + " " + "images\\petz.png");
	if (dataz != null && dataz.Length != 0) {
		int xc = 0;
		int yc = 0;
		int.TryParse(dataz(1), xc);
		int.TryParse(dataz(2), yc);
		au.MouseClick("left", xc, yc, 1, 0);
	}
}
I have a better view for coding bots for this game. If you want PM and I can help you create a revolutionary one and teach you some new things =)
10/24/2016 17:59 orys#10
Quote:
Originally Posted by NUMANDERBUHMAN View Post
I have a better view for coding bots for this game. If you want PM and I can help you create a revolutionary one and teach you some new things =)
thank you, but I like to program more videogames that bot: D

(if you tell me something about the background of the browser operation looking image etc., I would not mind :rolleyes: )

Quote:
Originally Posted by manulaiko3.0 View Post
I would recommend using github for source code releases.
I maybe next time I will consider :D , in any case I have placed the entire project
10/24/2016 18:25 YatoDev#11
i think i fixed your bug there:

Code:
Convert.ToString("*")
would be

Code:
(new string(Convert.ToString("*").ToCharArray()).ToString()
just to be sure

Edit:

I've spotted someone with 0 knowledge, releasing "his" source and begging for PayPal donations.....
10/24/2016 19:04 Freshek#12
Quote:
Originally Posted by YatoDev View Post
i think i fixed your bug there:

Code:
Convert.ToString("*")
would be

Code:
(new string(Convert.ToString("*").ToCharArray()).ToString()
just to be sure
Bad coding practices :facepalm:
It should be
PHP Code:
Convert.ToString((string)Encoding.Default.GetString(Encoding.Default.GetBytes("*".ToLower().ToUpper().ToLower())).ToString()); 
10/24/2016 22:33 Technostar#13
Quote:
Originally Posted by Freshek View Post
Bad coding practices :facepalm:
It should be
PHP Code:
Convert.ToString((string)Encoding.Default.GetString(Encoding.Default.GetBytes("*".ToLower().ToUpper().ToLower())).ToString()); 
What do you guys want to do ? ^^
The most unefficient casting ? Why not releasing a whole dll with fucking useless casting functions. Then I would donate my money to you :pimp:
10/25/2016 14:45 YatoDev#14
Quote:
Originally Posted by 123456789thread View Post
What do you guys want to do ? ^^
The most unefficient casting ?
I see people pressing the thanks button on the wrong persons..... :D:D:D

The only cast happened here was there:

Convert.ToString((string)Encoding.Default.GetString(Encoding.Default.GetByt es("*".ToLower().ToUpper().ToLower())).ToString()) ;
I am not sure why no one got it but here is why we wrote that:

The op has many useless conversions in his code and does not seem to know what he is doing
10/25/2016 15:49 Technostar#15
Quote:
Originally Posted by YatoDev View Post
I see people pressing the thanks button on the wrong persons..... :D:D:D

The only cast happened here was there:

Convert.ToString((string)Encoding.Default.GetString(Encoding.Default.GetByt es("*".ToLower().ToUpper().ToLower())).ToString()) ;
I am not sure why no one got it but here is why we wrote that:

The op has many useless conversions in his code and does not seem to know what he is doing
Well....
I only mentioned one cast, am I right ?

No offense, bro. I just want a dll with useless functions such as
Code:
public static int countWLANCablesInRoom()