Quote:
Originally Posted by StarBuG
Thx for this nice hack.
I have a question wich is not directly regarding your hack but maybe someone can help me anyway.
I have a hack wich shows "unknown location" in user online and I tried to edit functions_online.php
The second option is clear but how is the the first "case" determant?
case 'LinkMe': (the LinkMe)
It cant be define('THIS_SCRIPT','....'); cause you have "chat" entered in the LinkMe.php (should be fixed  )
I realy can?t figure that out.
Can anyone help?
StarBuG
|
Thanks StarBug for pointing this out. But regardless of this it should work with the appropriate changes.
But ok. With the next update i will change the header in the PHP file from:
PHP Code:
define('THIS_SCRIPT','chat');
to
PHP Code:
define('THIS_SCRIPT','LinkMe');
And for your first request:
It is very easy to define unknown locations. You have to create 2 entries. One entry like this:
PHP Code:
case 'LinkMe':
$userinfo['action'] = 'LinkMe';
$userinfo['where'] = "<a href=\"LinkMe.php\">$vboptions[bbtitle] LinkMe</a>";
break;
and then a second entry like this:
PHP Code:
case 'LinkMe.php':
$userinfo['activity'] = 'LinkMe';
break;
And if you would like to know where to place these please look into my install.html from this hack. This should help.
Cheers,