Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Request I need a to make account creator for rs

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
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

PostPosted: Tue Sep 02, 2008 3:59 pm    Post subject: Request I need a to make account creator for rs Reply with quote

Ok I need The source code for making a simple account creator for runescape in vb6. Very Happy Ill +rep you
_________________

GROOT FTW!!!
Back to top
View user's profile Send private message
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Tue Sep 02, 2008 5:53 pm    Post subject: Reply with quote

Yeah, no.

At least put some effort in and try on your own.
Back to top
View user's profile Send private message
G0DFATHER
How do I cheat?
Reputation: 0

Joined: 14 May 2008
Posts: 0
Location: C:/Nexon/Maplestory

PostPosted: Tue Sep 02, 2008 5:55 pm    Post subject: Reply with quote

i did AND SCREWED U BADLEY CUZ I DONT KNOW PHP
_________________

GROOT FTW!!!
Back to top
View user's profile Send private message
nog_lorp
Grandmaster Cheater
Reputation: 0

Joined: 26 Feb 2006
Posts: 743

PostPosted: Tue Sep 02, 2008 11:12 pm    Post subject: Reply with quote

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
View user's profile Send private message
Kerelmans
Advanced Cheater
Reputation: 0

Joined: 29 Oct 2007
Posts: 57

PostPosted: Wed Sep 03, 2008 10:07 am    Post subject: Reply with quote

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
View user's profile Send private message
G0DFATHER
How do I cheat?
Reputation: 0

Joined: 14 May 2008
Posts: 0
Location: C:/Nexon/Maplestory

PostPosted: Wed Sep 03, 2008 12:57 pm    Post subject: Reply with quote

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
View user's profile Send private message
jackyyll
Expert Cheater
Reputation: 0

Joined: 28 Jan 2008
Posts: 143
Location: here

PostPosted: Wed Sep 03, 2008 1:36 pm    Post subject: Reply with quote

Want them to wipe your ass too?
Back to top
View user's profile Send private message AIM Address MSN Messenger
G0DFATHER
How do I cheat?
Reputation: 0

Joined: 14 May 2008
Posts: 0
Location: C:/Nexon/Maplestory

PostPosted: Wed Sep 03, 2008 1:55 pm    Post subject: Reply with quote

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
View user's profile Send private message
jackyyll
Expert Cheater
Reputation: 0

Joined: 28 Jan 2008
Posts: 143
Location: here

PostPosted: Wed Sep 03, 2008 2:00 pm    Post subject: Reply with quote

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
View user's profile Send private message AIM Address MSN Messenger
pkedpker
Master Cheater
Reputation: 1

Joined: 11 Oct 2006
Posts: 412

PostPosted: Wed Sep 03, 2008 3:12 pm    Post subject: Reply with quote

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

_________________
Hacks I made for kongregate.
Kongregate Universal Badge Hack: http://forum.cheatengine.org/viewtopic.php?p=4129411
Kongreate Auto Rating/Voter hack: http://forum.cheatengine.org/viewtopic.php?t=263576
Took a test lol
Back to top
View user's profile Send private message
e!ns7e!n
Cheater
Reputation: 0

Joined: 06 Sep 2007
Posts: 30

PostPosted: Wed Sep 03, 2008 11:53 pm    Post subject: Reply with quote

mm for delphi ?
Back to top
View user's profile Send private message
NothingToShow
Grandmaster Cheater Supreme
Reputation: 0

Joined: 11 Jul 2007
Posts: 1579

PostPosted: Thu Sep 04, 2008 5:27 am    Post subject: Reply with quote

e!ns7e!n wrote:
mm for delphi ?

For using Inet in Delphi:
Code:
var
  inet: variant;
...
  inet:= CreateOleObject('InetCtls.Inet');
Back to top
View user's profile Send private message
G0DFATHER
How do I cheat?
Reputation: 0

Joined: 14 May 2008
Posts: 0
Location: C:/Nexon/Maplestory

PostPosted: Thu Sep 04, 2008 2:08 pm    Post subject: Reply with quote

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
View user's profile Send private message
Fuzz
Grandmaster Cheater
Reputation: 0

Joined: 12 Nov 2006
Posts: 531

PostPosted: Thu Sep 04, 2008 6:00 pm    Post subject: Reply with quote

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
View user's profile Send private message AIM Address
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites