I know how to add custom online locations, but how do you make more complex ones?
PHP Code:
case 'newlocation':
$userinfo['action'] = "New Location";
break;
PHP Code:
case 'new_location.php':
$userinfo['activity'] = 'newlocation';
break;
I figured out that you can use their requests using $userinfo['values']['request']. So say if they are viewing a game (ex ?g=1) and this is queried as say, $game, with a few basic fields (name, id), how do you get it to recognize them? (Similar to how showthread or forum does, it recognizes $forumid, $threadid, etc, and the name of thread/forum).
Thanks