When i use that hook location it is called on the start of an new thread, how can it now that i hit the post button?
Most of the php scripts in vb perform more than one function. newpost.php is called to display the form for a new thread, and also to post the thread (and a few other functions). The "do" parameter is used to tell the script which function is being performed. You might want to take a look at newpost.php to see what's going on. You can see there are different sections, for instance, around line 100 is this code:
Code:
// ############################### start post thread ###############################
if ($_POST['do'] == 'postthread')
{
which is the start of the code that posts a new thread. And a little farther down is this:
Code:
// ############################### start new thread ###############################
if ($_REQUEST['do'] == 'newthread')
{
which starts the section that displays the form for a new thread.
I hope this answers you question - I'm not completely sure I understood.