Quote:
Originally Posted by amykhar
Look at the top of just about every vbulletin script. You'll see something like this:
Code:
// get special data templates from the datastore
$specialtemplates = array(
'userstats',
'birthdaycache',
'maxloggedin',
'iconcache',
'eventcache',
'mailqueue'
);
That pulls the datastore items into the code you are going to use. All you have to do after that is refer to them.
|
Thanks for the lesson, it worked like a charm

I even managed to code a workaround for having to prefix my custom datastore items with 'rpg_' (for ease of uninstall, identification etc) to stop my custom class calls to have to have this prefix as well