| View previous topic :: View next topic |
| Author |
Message |
G0DFATHER How do I cheat?
Reputation: 0
Joined: 14 May 2008 Posts: 0 Location: C:/Nexon/Maplestory
|
Posted: Tue Sep 02, 2008 3:59 pm Post subject: Request I need a to make account creator for rs |
|
|
Ok I need The source code for making a simple account creator for runescape in vb6. Ill +rep you
_________________
GROOT FTW!!! |
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Tue Sep 02, 2008 5:53 pm Post subject: |
|
|
Yeah, no.
At least put some effort in and try on your own.
|
|
| Back to top |
|
 |
G0DFATHER How do I cheat?
Reputation: 0
Joined: 14 May 2008 Posts: 0 Location: C:/Nexon/Maplestory
|
Posted: Tue Sep 02, 2008 5:55 pm Post subject: |
|
|
i did AND SCREWED U BADLEY CUZ I DONT KNOW PHP
_________________
GROOT FTW!!! |
|
| Back to top |
|
 |
nog_lorp Grandmaster Cheater
Reputation: 0
Joined: 26 Feb 2006 Posts: 743
|
Posted: Tue Sep 02, 2008 11:12 pm Post subject: |
|
|
What does PHP have to do with it. I would use perl cuz it is fun/easy, but language doesn't matter much.
GET runescape.com.
Parse out the link that has domain create.runescape.com.
POST
password1=yourpass
password2=yourpass
termsandcond=1
username=username
country=225
day=19
month=1
year=1990
to /(directory from last step)/createaccount.ws
_________________
Mutilated lips give a kiss on the wrist of the worm-like tips of tentacles expanding in my mind
I'm fine accepting only fresh brine you can get another drop of this yeah you wish |
|
| Back to top |
|
 |
Kerelmans Advanced Cheater
Reputation: 0
Joined: 29 Oct 2007 Posts: 57
|
Posted: Wed Sep 03, 2008 10:07 am Post subject: |
|
|
May contain some bugs: (for Visual Basic 2005 or higher), but you can use the webbrowser part... Credits to master447 (Sythe forums)
| Code: | Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate("https://create.runescape.com/createaccount.ws?password1=" & TextBox2.Text & "&password2=" & TextBox2.Text & "&termsandcond=1&username=" & TextBox1.Text & "&country=225")
End Sub
Private Sub WebBrowser1_Navigating(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Handles WebBrowser1.Navigating
If e.Url.AbsoluteUri = "http://www.runescape.com/" Then e.Cancel = True
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
If WebBrowser1.DocumentText.Length = (2876) Then
MsgBox("Sorry the username:" & TextBox1.Text & "has already been taken!")
End If
If WebBrowser1.DocumentText.Length > (20500) Then
MsgBox("Account Created with the username:" & TextBox1.Text & " and the password:" & TextBox2.Text & " has been created!")
End If
If WebBrowser1.DocumentText.Length = (1174) Then
MsgBox("LOL BANNED!!!!!! JK try again in a fiew Mins :P u tried to make to many accounts!")
End If
End Sub
End Class |
|
|
| Back to top |
|
 |
G0DFATHER How do I cheat?
Reputation: 0
Joined: 14 May 2008 Posts: 0 Location: C:/Nexon/Maplestory
|
Posted: Wed Sep 03, 2008 12:57 pm Post subject: |
|
|
K thanks guys ill try it.
edit:
um im not that good at tralslationg it so ca u give me code in vb6
_________________
GROOT FTW!!! |
|
| Back to top |
|
 |
jackyyll Expert Cheater
Reputation: 0
Joined: 28 Jan 2008 Posts: 143 Location: here
|
Posted: Wed Sep 03, 2008 1:36 pm Post subject: |
|
|
| Want them to wipe your ass too?
|
|
| Back to top |
|
 |
G0DFATHER How do I cheat?
Reputation: 0
Joined: 14 May 2008 Posts: 0 Location: C:/Nexon/Maplestory
|
Posted: Wed Sep 03, 2008 1:55 pm Post subject: |
|
|
| jackyyll wrote: | | Want them to wipe your ass too? |
How bout u wipe it bitch i just dont know those stuff and i want to learn so gtfo
_________________
GROOT FTW!!!
Last edited by G0DFATHER on Thu Sep 04, 2008 2:07 pm; edited 1 time in total |
|
| Back to top |
|
 |
jackyyll Expert Cheater
Reputation: 0
Joined: 28 Jan 2008 Posts: 143 Location: here
|
Posted: Wed Sep 03, 2008 2:00 pm Post subject: |
|
|
| G0DFATHER wrote: | | jackyyll wrote: | | Want them to wipe your ass too? |
How bout wipe it bitch i just dont know those stuff and i want to learn so gtfo |
Dumbass, learning and having someone do it for you are completely different. You haven't tried to learn a single thing in this thread.
|
|
| Back to top |
|
 |
pkedpker Master Cheater
Reputation: 1
Joined: 11 Oct 2006 Posts: 412
|
Posted: Wed Sep 03, 2008 3:12 pm Post subject: |
|
|
something like this. I didn't test it so it might not work.. i dont even go to runescape
| Code: |
Private Sub Command1_Click()
createRS("zezima95943","Iluvzezima")
End Sub
sub createRS(username as string, password as string)
Dim strURL As String, strFormData As String
strURL = "https://create.runescape.com/createaccount.ws"
strFormData = "password1=" & password & "&password2=" & password & "&termsandcond=1" & "&username=" & username & "&country=225&day=19&month=1&year=1990"
Inet.Execute strURL, "POST", strFormData, "Content-Type: application/x-www-form-urlencoded" & vbCrLf
end sub
|
add Inet control from components
_________________
|
|
| Back to top |
|
 |
e!ns7e!n Cheater
Reputation: 0
Joined: 06 Sep 2007 Posts: 30
|
Posted: Wed Sep 03, 2008 11:53 pm Post subject: |
|
|
| mm for delphi ?
|
|
| Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Thu Sep 04, 2008 5:27 am Post subject: |
|
|
| e!ns7e!n wrote: | | mm for delphi ? |
For using Inet in Delphi:
| Code: | var
inet: variant;
...
inet:= CreateOleObject('InetCtls.Inet'); |
|
|
| Back to top |
|
 |
G0DFATHER How do I cheat?
Reputation: 0
Joined: 14 May 2008 Posts: 0 Location: C:/Nexon/Maplestory
|
Posted: Thu Sep 04, 2008 2:08 pm Post subject: |
|
|
| jackyyll wrote: | | G0DFATHER wrote: | | jackyyll wrote: | | Want them to wipe your ass too? |
How bout wipe it bitch i just dont know those stuff and i want to learn so gtfo |
Dumbass, learning and having someone do it for you are completely different. You haven't tried to learn a single thing in this thread. |
How do you know im not trying to study it because im knew to coding and i just want to learn how to do it.
_________________
GROOT FTW!!! |
|
| Back to top |
|
 |
Fuzz Grandmaster Cheater
Reputation: 0
Joined: 12 Nov 2006 Posts: 531
|
Posted: Thu Sep 04, 2008 6:00 pm Post subject: |
|
|
| G0DFATHER wrote: | | jackyyll wrote: | | G0DFATHER wrote: | | jackyyll wrote: | | Want them to wipe your ass too? |
How bout wipe it bitch i just dont know those stuff and i want to learn so gtfo |
Dumbass, learning and having someone do it for you are completely different. You haven't tried to learn a single thing in this thread. |
How do you know im not trying to study it because im knew to coding and i just want to learn how to do it. |
Pro-tip: RuneScape sucks.
_________________
|
|
| Back to top |
|
 |
|