Is the hack you are trying to install (or did recently) a hack by g-force2k2? Just curious.
I noticed this a bit above:
PHP Code:
$templatesused = "getinfo_sendpm,aol,icq,yahoo,getinfo_birthday,getinfo_customfields,getinfo";
// +++++++ User Most Active Forum Hack [ g-force2k2 ] +++++++
$templatesused = ",getinfo_forumactive";
// +++++++ User Most Active Forum Hack [ g-force2k2 ] +++++++
// +++++++ Warning Hack 2.0 [ g-force2k2 ] +++++++
$templatesused = ",warn_getinfo_warning,warn_userinfo";
// +++++++ Warning Hack 2.0 [ g-force2k2 ] +++++++
For some reason there is no added . notation before the equal sign to keep adding onto the $templateused variable.
So replace the above with:
PHP Code:
$templatesused = "getinfo_sendpm,aol,icq,yahoo,getinfo_birthday,getinfo_customfields,getinfo";
// +++++++ User Most Active Forum Hack [ g-force2k2 ] +++++++
$templatesused .= ",getinfo_forumactive";
// +++++++ User Most Active Forum Hack [ g-force2k2 ] +++++++
// +++++++ Warning Hack 2.0 [ g-force2k2 ] +++++++
$templatesused .= ",warn_getinfo_warning,warn_userinfo";
// +++++++ Warning Hack 2.0 [ g-force2k2 ] +++++++
And see if that does anything.