When I first started to code vb it was to code flash game hacks so I'm going to make a simple tut on the first game i hacked
1. OK first you will open Microsoft vb 2008 and create new project
2. go to tools>choose tool box items>click the .com tab>find axshockwave and choose it
3. after that you will need to get the swf for this tut ill just give you it to make it simple heres the swf.... h t tp://w w w.miniclip.com/games/sniper/en/sniper.swf make sure to unspace http and www
4. ok copy the swf and go back to vb 2008 go to tool box click you shockwave and place it were you want on the form dont for get to size it good
5. go to axshockwave properties and find movie once you found that put the swf in the movie space then push enter youll c the game load in the axshockwave
6. at this point click debug it should load and say enter click enter then click start you should see score life and medic
7. ok you will usually have a variable scanner but i want to keep it simple so the variables are sometimes simple like on this game it says score life and medic witch are the variables
8. get 2 buttons on your form and a timer
9. name button 1 (high health) button 2 (god mode)
10.go into button 1 code and put this code AxShockwaveFlash1.SetVariable("life", 999)
life is the variable and 999 is the value debug and test that one out
11. ok now for heath that you cant loose witch is god mode click your timer and put AxShockwaveFlash1.SetVariable("life", 100)
and button 2 code is timer.enabled = true
and your done now design it and make more features heres my finished one