|
You last visited: Today at 09:31
Advertisement
[Release] OyhelperPET SOURCE CODE!
Discussion on [Release] OyhelperPET SOURCE CODE! within the DarkOrbit forum part of the Browsergames category.
10/23/2016, 21:52
|
#1
|
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
|
[Release] OyhelperPET SOURCE CODE!
#CLOSE
|
|
|
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
|
|
|
10/23/2016, 21:59
|
#3
|
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
|
Quote:
Originally Posted by benk980
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
|
#4
|
elite*gold: 0
Join Date: Jun 2013
Posts: 141
Received Thanks: 22
|
wow, ty
|
|
|
10/23/2016, 22:11
|
#5
|
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
|
Quote:
Originally Posted by SonyporSpace
wow, ty 
|
do not forget to put like
|
|
|
10/24/2016, 03:00
|
#6
|
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
|
|
|
10/24/2016, 07:21
|
#7
|
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
|
Quote:
Originally Posted by NUMANDERBUHMAN
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);
}
}
|
|
|
10/24/2016, 12:16
|
#8
|
elite*gold: 0
Join Date: May 2014
Posts: 663
Received Thanks: 1,154
|
I would recommend using github for source code releases.
|
|
|
10/24/2016, 15:45
|
#9
|
elite*gold: 0
Join Date: Jun 2015
Posts: 647
Received Thanks: 956
|
Quote:
Originally Posted by orys
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 =)
|
|
|
10/24/2016, 17:59
|
#10
|
elite*gold: 0
Join Date: Nov 2015
Posts: 157
Received Thanks: 61
|
Quote:
Originally Posted by NUMANDERBUHMAN
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
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
|
|
|
10/24/2016, 18:25
|
#11
|
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.....
|
|
|
10/24/2016, 19:04
|
#12
|
elite*gold: 0
Join Date: Aug 2015
Posts: 803
Received Thanks: 1,359
|
Quote:
Originally Posted by YatoDev
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());
|
|
|
10/24/2016, 22:33
|
#13
|
elite*gold: 33
Join Date: Feb 2012
Posts: 590
Received Thanks: 148
|
Quote:
Originally Posted by Freshek
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
|
|
|
10/25/2016, 14:45
|
#14
|
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
|
Quote:
Originally Posted by 123456789thread
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
|
|
|
10/25/2016, 15:49
|
#15
|
elite*gold: 33
Join Date: Feb 2012
Posts: 590
Received Thanks: 148
|
Quote:
Originally Posted by YatoDev
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()
|
|
|
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.
|
|