May 19, 2007

IP Changer

Ive found this internet protocol changer. This way if you get banned from something say a game or a chat room you can use this to change your IP address and get back into the game/chat room. It comes in handy for club penguin and other games I get banned from often. You may experience some bugs or problems but just remember I did not make this. It came from here. Theres also some instructions their. And if you want to change your IP manually you can watch this video. And about dragon fable I am still trying to find hacks using CE so that I can make a table but I may have it soon.

Download IP Changer

3 comments:

Sal said...

damm thats maad nice! I'm gonna do that on family feud lol, just keep playing free forever........
thnx for releasing it :)

Anonymous said...

teiz,
to add a link to your program add this to the declarations
__________________________________
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
___________________________________
and then add this to the label
___________________________________
Private Sub Label1_Click()
ShellExecute 0, "open", "site", vbNullString, vbNullString, SW_SHOW
___________________________________

where it says site put in the url.

Anonymous said...

ok,
i see that i did in fact make a tiny mistake. Here's the real one. If this doesnt work then email me and i'll send you a different way.
go to the general: declarations and put in

Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long

now create your label (make sure the name is lable1) and put this as the code

Private Sub Label1_Click()
ShellExecute 0, "open", "http://ppt277.blogspot.com", vbNullString, vbNullString, SW_SHOW
End Sub

**where it says http://ppt277.blogspot.com you can put in the name of whatever site you want.