|
You last visited: Today at 16:12
Advertisement
[Announcement] Elixir-Bot [New and partially free]
Discussion on [Announcement] Elixir-Bot [New and partially free] within the DarkOrbit forum part of the Browsergames category.
02/28/2013, 20:22
|
#76
|
elite*gold: 85
Join Date: Jan 2011
Posts: 1,526
Received Thanks: 1,060
|
Quote:
Originally Posted by »FlutterShy™
in epvp ip ban dont exists
|
LOL...Was ist denn das für ein Fail  Das ist ein Forum voll von Programmierern und das epvp Team schafft es nichtmal jemanden die IP zu sperren? Da brauch ich ja gar nicht fragen ob man in der Lage ist einen Hardware ID Bann vorzunehmen...
|
|
|
02/28/2013, 20:40
|
#77
|
elite*gold: 50
Join Date: Sep 2012
Posts: 3,841
Received Thanks: 1,462
|
Quote:
Originally Posted by Yakuza™
LOL...Was ist denn das für ein Fail  Das ist ein Forum voll von Programmierern und das epvp Team schafft es nichtmal jemanden die IP zu sperren? Da brauch ich ja gar nicht fragen ob man in der Lage ist einen Hardware ID Bann vorzunehmen...
|
ein ip ban ist glaube ich rechtlich gesehen nicht möglich hwid jedoch in sonderfällen schon
|
|
|
02/28/2013, 21:10
|
#78
|
elite*gold: LOCKED
Join Date: Oct 2012
Posts: 645
Received Thanks: 224
|
Nice to hear about new bots =)
Specially from 'Heaven. guy :3
Hope I can be tester (if it costs) :P
|
|
|
02/28/2013, 23:23
|
#79
|
elite*gold: 0
Join Date: Sep 2011
Posts: 352
Received Thanks: 202
|
Sounds good. Good luck for dev.  I hope you have enough time to update it(I hope it doesn't end like boxybot).
|
|
|
03/01/2013, 04:55
|
#80
|
elite*gold: 0
Join Date: Dec 2010
Posts: 407
Received Thanks: 274
|
I have one idea using license for ID CPU:
Example in Visual Basic .NET
Add in Form :
* Label
* ListBox
In Form1.Load
Code:
Control.CheckForIllegalCrossThreadCalls = False
If My.Computer.FileSystem.FileExists("ISD") Then
'Si existe, lo borrara
My.Computer.FileSystem.DeleteFile("ISD")
End If
Dim mbsList As ManagementObjectCollection = New ManagementObjectSearcher("Select ProcessorID From Win32_processor").Get
Dim mo As ManagementObject
For Each mo In mbsList
Me.label7.Text = mo.Item("ProcessorID").ToString
Next
My.Computer.Network.DownloadFile _
("http://www.example.com/LIC.txt", "ISD")
Dim reader As New StreamReader("ISD")
Do While (reader.Peek > -1)
Me.ListBox1.Items.Add(reader.ReadLine)
Loop
reader.Close()
Timer1.Interval = 1
Timer1.Enabled = True
In Timer1.Tick
Code:
If (Me.ListBox1.FindString(Me.label7.Text) <> -1) Then
Me.Timer1.Enabled = False
MyBase.Enabled = True
Else
Me.Timer1.Enabled = False
Me.Text = (Me.Text & " - License Invalid")
MessageBox.Show(("Buy license.."))
Clipboard.SetText(Me.label7.Text)
Application.Exit()
End If
|
|
|
03/01/2013, 05:39
|
#81
|
elite*gold: 30
Join Date: Jan 2013
Posts: 212
Received Thanks: 463
|
Quote:
Originally Posted by jmpl3
I have one idea using license for ID CPU:
Example in Visual Basic .NET
Add in Form :
* Label
* ListBox
In Form1.Load
Code:
Control.CheckForIllegalCrossThreadCalls = False
If My.Computer.FileSystem.FileExists("ISD") Then
'Si existe, lo borrara
My.Computer.FileSystem.DeleteFile("ISD")
End If
Dim mbsList As ManagementObjectCollection = New ManagementObjectSearcher("Select ProcessorID From Win32_processor").Get
Dim mo As ManagementObject
For Each mo In mbsList
Me.label7.Text = mo.Item("ProcessorID").ToString
Next
My.Computer.Network.DownloadFile _
("http://www.example.com/LIC.txt", "ISD")
Dim reader As New StreamReader("ISD")
Do While (reader.Peek > -1)
Me.ListBox1.Items.Add(reader.ReadLine)
Loop
reader.Close()
Timer1.Interval = 1
Timer1.Enabled = True
In Timer1.Tick
Code:
If (Me.ListBox1.FindString(Me.label7.Text) <> -1) Then
Me.Timer1.Enabled = False
MyBase.Enabled = True
Else
Me.Timer1.Enabled = False
Me.Text = (Me.Text & " - License Invalid")
MessageBox.Show(("Buy license.."))
Clipboard.SetText(Me.label7.Text)
Application.Exit()
End If
|
Nice, but we will use server to make the license part and we will put the license in the account no in the computer  but anyway thanks for your code.
PD: I also see that you speak spanish like me, if you want we could talk more, add me to my skype: gnome.programming
|
|
|
03/01/2013, 06:04
|
#82
|
elite*gold: 150
Join Date: Sep 2010
Posts: 912
Received Thanks: 807
|
About jmpl3's idea: It's good, but can be easily emulated unless extra encryption is added. Also, I think that there is a server already to do the packet job
|
|
|
03/01/2013, 06:36
|
#83
|
elite*gold: 237
Join Date: Sep 2010
Posts: 1,152
Received Thanks: 4,910
|
[offtopic]Does anyone else agree with me that this forum needs a better "code" formatting plugin? [/offtopic]
-jD
|
|
|
03/01/2013, 06:42
|
#84
|
elite*gold: 30
Join Date: Jan 2013
Posts: 212
Received Thanks: 463
|
Quote:
Originally Posted by »jD«
[offtopic]Does anyone else agree with me that this forum needs a better "code" formatting plugin? [/offtopic]
-jD
|
What did you mean? like change design?
|
|
|
03/01/2013, 06:52
|
#85
|
elite*gold: 237
Join Date: Sep 2010
Posts: 1,152
Received Thanks: 4,910
|
No, I mean you know the code formatter? ? They need to make it better
-jD
|
|
|
03/01/2013, 06:55
|
#86
|
elite*gold: 1
Join Date: Jun 2012
Posts: 5,819
Received Thanks: 3,200
|
Quote:
Originally Posted by jmpl3
I have one idea using license for ID CPU:
Example in Visual Basic .NET
Add in Form :
* Label
* ListBox
In Form1.Load
Code:
Control.CheckForIllegalCrossThreadCalls = False
If My.Computer.FileSystem.FileExists("ISD") Then
'Si existe, lo borrara
My.Computer.FileSystem.DeleteFile("ISD")
End If
Dim mbsList As ManagementObjectCollection = New ManagementObjectSearcher("Select ProcessorID From Win32_processor").Get
Dim mo As ManagementObject
For Each mo In mbsList
Me.label7.Text = mo.Item("ProcessorID").ToString
Next
My.Computer.Network.DownloadFile _
("http://www.example.com/LIC.txt", "ISD")
Dim reader As New StreamReader("ISD")
Do While (reader.Peek > -1)
Me.ListBox1.Items.Add(reader.ReadLine)
Loop
reader.Close()
Timer1.Interval = 1
Timer1.Enabled = True
In Timer1.Tick
Code:
If (Me.ListBox1.FindString(Me.label7.Text) <> -1) Then
Me.Timer1.Enabled = False
MyBase.Enabled = True
Else
Me.Timer1.Enabled = False
Me.Text = (Me.Text & " - License Invalid")
MessageBox.Show(("Buy license.."))
Clipboard.SetText(Me.label7.Text)
Application.Exit()
End If
|
WTF This code is the 3rd worsest ive ever seen... after the old futautobuyervand dorfman aka dr.toni
|
|
|
03/01/2013, 07:05
|
#87
|
elite*gold: 30
Join Date: Jan 2013
Posts: 212
Received Thanks: 463
|
Quote:
Originally Posted by »jD«
No, I mean you know the code formatter? ? They need to make it better
-jD
|
O yea! They should make it beater
# Heaven come to skype!
|
|
|
03/02/2013, 02:23
|
#88
|
elite*gold: 0
Join Date: May 2010
Posts: 1,082
Received Thanks: 320
|
I'm sure this Bot beta will release in today or tomorrow
PS : Still develop the Site
But don't use main account on Beta test
In my experience , beta test have high ban chance
Use new account or Useless acc s
|
|
|
03/02/2013, 02:28
|
#89
|
elite*gold: 0
Join Date: Jun 2011
Posts: 481
Received Thanks: 183
|
does it have any anti bans?
|
|
|
03/02/2013, 02:49
|
#90
|
elite*gold: 0
Join Date: May 2010
Posts: 1,082
Received Thanks: 320
|
Yes It have .
If bot dont have anti ban . All account will be banned when you use bot
|
|
|
Similar Threads
|
DeviasOnline Account Database partially
02/18/2013 - SRO Private Server - 6 Replies
Have fun guys, these are ids and pws of a few thousond accounts :)
However, most of them are already cleaned out by 15-20 friends of mine, the ones remaining... well have fun :)
This ofc includes some other fun stuff, for example the passport copy of the server owner or the amount of money that ass "Silverlight" was making :O
|
Partially invisible char
09/16/2011 - SRO Private Server - 9 Replies
Why am i half invisible.. or is this just bloodys client fault ?
http://img703.imageshack.us/img703/3237/unledkha. th.png
Any info good ty
|
How To Run Partially Serverfiles ReMake Highquallity
08/25/2009 - Metin2 PServer Guides & Strategies - 107 Replies
Moin ,
da nico_w in seinem tut soviele fehler hatte und es viel zu schnell war hier mal ein ReMake von mir ;)
sind 23,5 MB Gepackt und entpackt 500 MB
Have Fun :
*
|
All times are GMT +1. The time now is 16:13.
|
|