Log in

View Full Version : How to go about starting a hack?


TeaTree
05-13-2006, 07:25 PM
Hey,

I've never made a hack in my life, and now being quite experienced with VB Would like to make one-

How do I go about creating one? Is there a knack to it?

Many Thanks,

-Sam

funinthesun
05-13-2006, 07:36 PM
You need to have knowledge of html and php. If you don't already then I would advise you learn them first.

TeaTree
05-13-2006, 08:09 PM
You need to have knowledge of html and php. If you don't already then I would advise you learn them first.

I have good knowledge of these

Paul M
05-13-2006, 08:17 PM
You have to have a clear idea of what you want your hack to do.

TeaTree
05-13-2006, 08:21 PM
You have to have a clear idea of what you want your hack to do.

I have a clear idea of what it needs to do

Stangsta
05-13-2006, 08:54 PM
The best place to start would be the VB user manual. You can learn ALOT from it.

Alan @ CIT
05-13-2006, 09:09 PM
The best way to start any programming project, is with the planning. Lay down on paper / computer exactly what your program will do from start to finish.

eg:


1. User clicks link to load the hack
2. Check user has permissions to run the hack
3. Fetch hack options
4. load the welcome page
...
80. User clicks save and exits


Once that's all done, and you've got a clear idea of how the flow of your program will go, start converting each of the above steps into code. Believe me, for any project of a reasonable size (ie, more than a 20 line hack), proper planning will prevent many many many logic bugs, security holes and head-scratching later on down the line :)

For PHP-specific help, www.php.net docs are handy for looking up function references, etc. For vB-PHP specific help, check the 3.5 Tutorial forums - plenty of good tutorials in there covering most things. Also, the 3.5 Hack Questions forum has plenty of good advice.

And finally, if in doubt, ask. Most people on vborg are happy to help new coders with advice or technical problems :)

Good luck with your project! :)

Thanks,
Alan.

TeaTree
05-13-2006, 09:21 PM
The best way to start any programming project, is with the planning. Lay down on paper / computer exactly what your program will do from start to finish.

eg:


1. User clicks link to load the hack
2. Check user has permissions to run the hack
3. Fetch hack options
4. load the welcome page
...
80. User clicks save and exits


Once that's all done, and you've got a clear idea of how the flow of your program will go, start converting each of the above steps into code. Believe me, for any project of a reasonable size (ie, more than a 20 line hack), proper planning will prevent many many many logic bugs, security holes and head-scratching later on down the line :)

For PHP-specific help, www.php.net docs are handy for looking up function references, etc. For vB-PHP specific help, check the 3.5 Tutorial forums - plenty of good tutorials in there covering most things. Also, the 3.5 Hack Questions forum has plenty of good advice.

And finally, if in doubt, ask. Most people on vborg are happy to help new coders with advice or technical problems :)

Good luck with your project! :)

Thanks,
Alan.

Many thanks you've helped a lot:)