Penguin Archive--For now--
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Penguin Archive--For now--

Penguin Archive
 
HomeLatest imagesSearchRegisterLog in
Search
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
» Yo WUtz up everyone
How to make a CP Trainer (VB6) Icon_minitimeTue Aug 02, 2011 8:26 am by Flame

» There will be a New Cp trainer that ive made Only if i could get the loading invotory fixed
How to make a CP Trainer (VB6) Icon_minitimeTue Aug 02, 2011 8:25 am by Flame

» I'm old here,But i justed signed up so i have a question i haven't seen here.
How to make a CP Trainer (VB6) Icon_minitimeTue Aug 02, 2011 8:23 am by Flame

» ONLY WORKING HACKS
How to make a CP Trainer (VB6) Icon_minitimeTue Aug 02, 2011 8:23 am by Flame

» MBBS In Ukraine
How to make a CP Trainer (VB6) Icon_minitimeTue Aug 02, 2011 8:23 am by Flame

» Countdown to 0 from 2000
How to make a CP Trainer (VB6) Icon_minitimeSat Nov 01, 2008 8:42 am by Wurmple

» Wow guess what
How to make a CP Trainer (VB6) Icon_minitimeTue Oct 28, 2008 10:09 pm by Marioman Sp

» Have you ever seen billybob
How to make a CP Trainer (VB6) Icon_minitimeTue Oct 21, 2008 3:10 pm by Kool Boys

» Fun Chats and Cool blogs =D
How to make a CP Trainer (VB6) Icon_minitimeMon Oct 20, 2008 8:05 pm by foodfight030

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search
Forum
Affiliates
free forum
 

 

 How to make a CP Trainer (VB6)

Go down 
+26
Detroit87
Bulletwolf_x
~Burgers Rule~
Wurmple
5yobajluos
Dljs
DisRox
Steverino97
Acezboy
hey1509
Nyy8
Mohd222
Mook3
Ray Toolbeart
Boopy12345
kooki95
Dalekad
goalkick12
Tommer651
bobrjb
-Sanity-
Jbl44
Bergeron4444
chewy
Graser8
Mike 92
30 posters
Go to page : 1, 2, 3  Next
AuthorMessage
Mike 92
Read Da Rules
Mike 92


Number of posts : 53
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 129
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:13 pm

Here is how to make a CP Trainer with Visual Basic 6.

You can also watch a video on how to do it: https://www.youtube.com/watch?v=14v2k4Vy0N0

1. Open up Visual Basic 6 and chose Standard EXE.

How to make a CP Trainer (VB6) 51119016do7

2. Go to the properties for your form and name your trainer.

How to make a CP Trainer (VB6) 62025311oc9.th

3. Right click your toolbox and choose components, then scroll down and choose Shockwave Flash

How to make a CP Trainer (VB6) 13816052cc2

4. A new option will be added to your toolbox, put it in to your form

How to make a CP Trainer (VB6) 82737169qd7

5. Now go to the properties for the shockwave flash and go to Custom at the top, now make the movie URL http://play.clubpenguin.com/load.swf

How to make a CP Trainer (VB6) 22229866er9

6. Now go to coding and add this:

Code:
Private Sub Form_Load()
ShockwaveFlash1.Play
End Sub

How to make a CP Trainer (VB6) 80658657ap4

(Make sure that you change the name shockwaveflash1 to fit the name of your's.)

7. Now we will start to add variables, lets start with Username change. Add a button and a text box to the form.

How to make a CP Trainer (VB6) 82012738fi1

Don't forget to change the text and the caption of the button with the properties to make it say what it's action will be Wink

8. Now we have to add the coding to that button. Here it is:

Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Nickname", Text1.Text)

Basically what that is saying is to set your players nickname to what text1.text says. (Don't forget to change the name of your flash or text box if necessary.)

9. Now we want to do the item hacking right? Basically do the same thing that you did in the last step with the adding button and text boxes but don't do the coding I gave you in step 8, use the coding I am about to tell you.

Head Item:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Head", Text2.Text)

Face Item:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Face", Text3.Text)

Neck Item:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Neck", Text4.Text)

Body Item:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Body", Text5.Text)

Hand Item:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Hand", Text6.Text)

Foot Item:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Feet", Text7.Text)

Color:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Colour", Text8.Text)

Don't forget to change the name of your flash and/or text box.

You now have made a basic Club Penguin trainer! Now you can style it how you want by choosing differnt colors and that kind of stuff.

Also here are some more variables for you

Walk On Walls:
Code:
Call ShockwaveFlash1.SetVariable("_level1.world.room.block.hitTest", 1)

Coins:
Code:
Call ShockwaveFlash1.SetVariable("_level1.myPlayer.Coins", Text9.Text)

Once you are done all you have to do is make it an exe, to do that go to file>> Make the name of your project and exe.
Back to top Go down
http://mike92.wordpress.com
Graser8
Read Da Rules
Graser8


Number of posts : 19
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 100
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:15 pm

Nice tutorial! Cool
Back to top Go down
http://clubpenguincheatz.com
chewy
Teh ChEwYiNg Admin
chewy


Number of posts : 220
Age : 28
Location : Searching...Invalid Perimeters
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : Max.
Awards : More then you!
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:15 pm

Cool, thanks Mike Very Happy
Back to top Go down
http://penguincheatscp.com
Bergeron4444
Moderator
Bergeron4444


Number of posts : 473
Age : 29
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 456461341561
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:16 pm

Nice tut, to bad i no nothing about trainers Razz
Back to top Go down
http://www.bergeron4444.com
chewy
Teh ChEwYiNg Admin
chewy


Number of posts : 220
Age : 28
Location : Searching...Invalid Perimeters
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : Max.
Awards : More then you!
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:18 pm

Same Exclamation
Back to top Go down
http://penguincheatscp.com
Bergeron4444
Moderator
Bergeron4444


Number of posts : 473
Age : 29
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 456461341561
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:20 pm

Yeah, its pretty confusing, and im not what you call 'Super Smart' Razz
Back to top Go down
http://www.bergeron4444.com
Jbl44
Read Da Rules
Jbl44


Number of posts : 100
Location : Basketball tournament tomorrow. =)
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 100
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:24 pm

Ya cool post mike! Very helpful! Smile
Back to top Go down
http://sheevmista1.com
Mike 92
Read Da Rules
Mike 92


Number of posts : 53
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 129
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:24 pm

Bergeron4444 wrote:
Yeah, its pretty confusing, and im not what you call 'Super Smart' Razz

It is pretty easy to understand, there is a video and everything. Also you don't have to be super smart to make a trainer as basic as this.
Back to top Go down
http://mike92.wordpress.com
Jbl44
Read Da Rules
Jbl44


Number of posts : 100
Location : Basketball tournament tomorrow. =)
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 100
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:25 pm

Im not into hacking but it looks fun lol
Back to top Go down
http://sheevmista1.com
Mike 92
Read Da Rules
Mike 92


Number of posts : 53
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 129
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:27 pm

Jbl44 wrote:
Im not into hacking but it looks fun lol

It isn't hacking, it is cheating. Hacking would be something like going in to Club Penguin's personal databases. This is cheating.
Back to top Go down
http://mike92.wordpress.com
Jbl44
Read Da Rules
Jbl44


Number of posts : 100
Location : Basketball tournament tomorrow. =)
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 100
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:32 pm

o ok. Can other ppl see it?
Back to top Go down
http://sheevmista1.com
Mike 92
Read Da Rules
Mike 92


Number of posts : 53
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 129
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:37 pm

Jbl44 wrote:
o ok. Can other ppl see it?

All the function in here are client side (with the exception of walk on walls if someone else is using the same function). This is only to give people a basic idea of how to make CP Trainers.
Back to top Go down
http://mike92.wordpress.com
Jbl44
Read Da Rules
Jbl44


Number of posts : 100
Location : Basketball tournament tomorrow. =)
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 100
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:38 pm

ok thanks for the info
Back to top Go down
http://sheevmista1.com
Bergeron4444
Moderator
Bergeron4444


Number of posts : 473
Age : 29
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 456461341561
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:41 pm

I liked to CPIP server sided beta hat trainer Razz
Back to top Go down
http://www.bergeron4444.com
Mike 92
Read Da Rules
Mike 92


Number of posts : 53
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 129
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:53 pm

Bergeron4444 wrote:
I liked to CPIP server sided beta hat trainer Razz

Yeah, that was fun. I made one when CPIP came out. It used these variables:

Code:
ShockwaveFlash1.SetVariable "_level1.mcPlayerCard.boxList.list.1.ItemId", 413
ShockwaveFlash1.SetVariable "_level1.mcPlayerCard.boxList.list.1.Type", "Head"
Back to top Go down
http://mike92.wordpress.com
Bergeron4444
Moderator
Bergeron4444


Number of posts : 473
Age : 29
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 456461341561
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:56 pm

Yeah, didn't Rile5 make that trainer for cpip?
Back to top Go down
http://www.bergeron4444.com
Mike 92
Read Da Rules
Mike 92


Number of posts : 53
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 129
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 8:58 pm

Bergeron4444 wrote:
Yeah, didn't Rile5 make that trainer for cpip?

He made one too and he released it on CPHQ so word got around about it, I just made my own like 10 minutes before he made his but only gave it to people who asked me on AIM.
Back to top Go down
http://mike92.wordpress.com
Bergeron4444
Moderator
Bergeron4444


Number of posts : 473
Age : 29
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 456461341561
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 9:01 pm

Oh, i just added you on aim like, 2 weeks ago so i never knew haha.
Back to top Go down
http://www.bergeron4444.com
-Sanity-
Read Da Rules



Number of posts : 13
Location : Erm HEY LOOK A DISTRACTION! -runs-
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 100
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 9:21 pm

I used to make trainers as alot of you know Razz
Back to top Go down
Bergeron4444
Moderator
Bergeron4444


Number of posts : 473
Age : 29
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 456461341561
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 9:29 pm

I know sanity
Back to top Go down
http://www.bergeron4444.com
bobrjb
Trainee Moderator
bobrjb


Number of posts : 275
Age : 29
Location : earth
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 375
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 9:31 pm

wow dude your like the best hacker ever. i cant do anything like that. im terrible at hacking
Back to top Go down
http://bobrjb.wordpress.com
Mike 92
Read Da Rules
Mike 92


Number of posts : 53
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 129
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 10:04 pm

bobrjb wrote:
wow dude your like the best hacker ever. i cant do anything like that. im terrible at hacking

The best cheaters were RancidKraut and Cheater.
Back to top Go down
http://mike92.wordpress.com
bobrjb
Trainee Moderator
bobrjb


Number of posts : 275
Age : 29
Location : earth
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 375
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeFri Jul 04, 2008 10:08 pm

mike...your the best hacker i ever met. I dont know how u do it. That is something im not good at and will never try. Very Happy
Back to top Go down
http://bobrjb.wordpress.com
Bergeron4444
Moderator
Bergeron4444


Number of posts : 473
Age : 29
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 456461341561
Awards : 1
Registration date : 2008-07-04

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeSat Jul 05, 2008 12:34 am

Mikes the best one I KNOW, and have taked to, i have never talked to Cheater nor RancidKraut
Back to top Go down
http://www.bergeron4444.com
Tommer651
Read Da Rules



Number of posts : 6
Infractions :
How to make a CP Trainer (VB6) Left_bar_bleue0 / 1000 / 100How to make a CP Trainer (VB6) Right_bar_bleue

Penguin Coinz : 100
Registration date : 2008-07-05

How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitimeSat Jul 05, 2008 12:37 am

Nice Tut! I already saw it on Penguin lodge, but It's improved!
Back to top Go down
Sponsored content





How to make a CP Trainer (VB6) Empty
PostSubject: Re: How to make a CP Trainer (VB6)   How to make a CP Trainer (VB6) Icon_minitime

Back to top Go down
 
How to make a CP Trainer (VB6)
Back to top 
Page 1 of 3Go to page : 1, 2, 3  Next
 Similar topics
-
» Club Penguin Trainer
» Make the ground throw snowballs at you
» How Do You Make Your Signature?
» How to make a sad Puffle
» make a wwwwwwwwwwwww out of the chat bar

Permissions in this forum:You cannot reply to topics in this forum
Penguin Archive--For now-- :: Old Stuff :: Basket-
Jump to: