Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 09:31

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] OyhelperPET SOURCE CODE!

Discussion on [Release] OyhelperPET SOURCE CODE! within the DarkOrbit forum part of the Browsergames category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
Wink [Release] OyhelperPET SOURCE CODE!

#CLOSE
orys is offline  
Thanks
8 Users
Old 10/23/2016, 21:57   #2
 
elite*gold: 0
Join Date: Feb 2015
Posts: 72
Received Thanks: 25
thanks you very much of your effort for the community ! we greatly appreciate that
benk980 is offline  
Old 10/23/2016, 21:59   #3
 
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
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
orys is offline  
Thanks
2 Users
Old 10/23/2016, 22:10   #4
 
SonyporSpace's Avatar
 
elite*gold: 0
Join Date: Jun 2013
Posts: 141
Received Thanks: 22
wow, ty
SonyporSpace is offline  
Old 10/23/2016, 22:11   #5
 
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
Quote:
Originally Posted by SonyporSpace View Post
wow, ty

do not forget to put like
orys is offline  
Old 10/24/2016, 03:00   #6
 
ItsTequila's Avatar
 
elite*gold: 0
Join Date: Jun 2015
Posts: 647
Received Thanks: 956
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
ItsTequila is offline  
Old 10/24/2016, 07:21   #7
 
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
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 )

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);
	}
}
orys is offline  
Old 10/24/2016, 12:16   #8
 
manulaiko3.0's Avatar
 
elite*gold: 0
Join Date: May 2014
Posts: 663
Received Thanks: 1,154
I would recommend using github for source code releases.
manulaiko3.0 is offline  
Old 10/24/2016, 15:45   #9
 
ItsTequila's Avatar
 
elite*gold: 0
Join Date: Jun 2015
Posts: 647
Received Thanks: 956
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 )

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 =)
ItsTequila is offline  
Thanks
1 User
Old 10/24/2016, 17:59   #10
 
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
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 )

Quote:
Originally Posted by manulaiko3.0 View Post
I would recommend using github for source code releases.
I maybe next time I will consider , in any case I have placed the entire project
orys is offline  
Old 10/24/2016, 18:25   #11
 
YatoDev's Avatar
 
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
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.....
YatoDev is offline  
Thanks
1 User
Old 10/24/2016, 19:04   #12
 
Freshek's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,359
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
It should be
PHP Code:
Convert.ToString((string)Encoding.Default.GetString(Encoding.Default.GetBytes("*".ToLower().ToUpper().ToLower())).ToString()); 
Freshek is offline  
Thanks
4 Users
Old 10/24/2016, 22:33   #13
 
elite*gold: 33
Join Date: Feb 2012
Posts: 590
Received Thanks: 148
Quote:
Originally Posted by Freshek View Post
Bad coding practices
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 ******* useless casting functions. Then I would donate my money to you
Technostar is offline  
Thanks
2 Users
Old 10/25/2016, 14:45   #14
 
YatoDev's Avatar
 
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
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.....

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
YatoDev is offline  
Old 10/25/2016, 15:49   #15
 
elite*gold: 33
Join Date: Feb 2012
Posts: 590
Received Thanks: 148
Quote:
Originally Posted by YatoDev View Post
I see people pressing the thanks button on the wrong persons.....

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()
Technostar is offline  
Reply


Similar Threads Similar Threads
[Release] OyhelperPET
10/27/2016 - DarkOrbit - 29 Replies
http://i65.tinypic.com/2mm8pqp.png OYhelperPET Features P.E.T.: Auto kamicazze Repair Ship Timer for repair and connect Auto guard mode
[RELEASE] [OPEN SOURCE] CE 5.5 Pointer to AutoIt Source-Code
02/13/2011 - AutoIt - 6 Replies
Habe heute erst gemerkt, dass es hier eine AutoIt Sektion gibt xD also poste ich mal mein Programm mit rein. Funktionsweise: 1. in CE Rechtsklick auf den Pointer und auf "Copy" klicken 2. in meinem Programm auf "Code generieren" klicken 3. In euer Scite gehen und einfügen Hier ist der Source Code vom Programm:



All times are GMT +1. The time now is 09:31.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.