Version: 2.1.1, by sabret00the
Developer Last Online: Apr 2010
Category: Administrative and Maintenance Tools -
Version: 3.6.8
Rating:
Released: 10-06-2007
Last Update: 10-06-2007
Installs: 231
DB Changes Uses Plugins Template Edits
Additional Files
No support by the author.
FAQ: What Does It Do? it enables your members to apply to be a mod, cuts down on all the asking and stuff
That It? basically
What about the cool back end? ooh yeah, so anyway it will email on the 14th day to either let em know they've been shortlisted or to try again at a later date
How will it know? mod ratings innit, if their under 7 their outta there
Anything else? nah i guess it starts a thread in your mod forum to tell your mods to rate em
How does it know what forum and who's the threadster? you tell em via the admincp options (where the rest of the vboptions are) theirs a handy little group for the MAF and i don't mean 2+2
Ok so that's gotta be it now? nope
What else does it do? it logs it all in the admincp schedules tasks and sends you a copy of the email
Damn who taught you all that? various folks, special thanks to Dean, Marco, OBK and Zero Tolerance who helped me on this specific hack though.
Ok so what's the install like? swift the long thing is the upload
Ok rumour is it needs to run a cron, what's a cron? :squint: it's the automated do-dad in the admincp
How do i set it up? it's so straight forward you could close your eyes and do it, the file you're cronning is called "mas-cron.php" and i recommend running it at 12.30 (that means leave the rest as stars)
Ok so if their an installer? there is indeed, a quick dirty one. no not like that
Well now that's sorted can i install it? please do!
How can i help you become cooler? click install and let's see if i can become hack of the month innit
Bye now? yes go :ermm:
Wait! ain't this the same as the last one? yes but this one runs on 3.5.x :ninja:
[hr]xxx[/hr]
To Upgrade just run install the new product.xml please see the upgrade.txt for more details
To Uninstall just remove the product
What's new? you can now add your own questions and stuff
For real? for real.
One more thing? sure.
What's the difference between 2.0 and 2.1? Not a whole lot, just phrased the front end and fixed a long standing db table prefix bug.
I followed the instructions, at least i thought i did, i can't find it anywhere. I logged in as a regular member and can't find it anywhere.
check your quick links menu. a link is automatically added there via the template hooks. if you still can't find it there, then make sure that your skin is 3.6.8 compliant.
check your quick links menu. a link is automatically added there via the template hooks. if you still can't find it there, then make sure that your skin is 3.6.8 compliant.
how can I make it so the moderators can see each others comments and votes? I assumed that the mods could see the votes and comments like the admins do.
in mas_rateapp.php I changed
Code:
if ($vbulletin->userinfo['usergroupid'] == 6)
to
Code:
if ($vbulletin->userinfo['usergroupid'] !== 8)
but there has to be a better way to do that How do I add more than one usergroup in that field? what is the array? it is escaping me at the moment...
how can I make it so the moderators can see each others comments and votes? I assumed that the mods could see the votes and comments like the admins do.
in mas_rateapp.php I changed
Code:
if ($vbulletin->userinfo['usergroupid'] == 6)
to
Code:
if ($vbulletin->userinfo['usergroupid'] !== 8)
but there has to be a better way to do that How do I add more than one usergroup in that field? what is the array? it is escaping me at the moment...
i was wondering that also, i would like the mods to be able to see the comments also, love this hack though!
This is a great Mod! Installed and working properly...
Two questions...
Is there a way to edit the Moderator Policy?
The link posted, once the application is complete partially reads: "...Please go to the moderator control panel and rate it. If need be then return here to discuss said application further. Thank you in advance." To be grammatically correct, shouldn't it read: "...Please go to the moderator control panel and rate it. If need be, return here to discuss this application further. Thank you in advance." Is there a way to change this?
The link posted, once the application is complete partially reads: "...Please go to the moderator control panel and rate it. If need be then return here to discuss said application further. Thank you in advance." To be grammatically correct, shouldn't it read: "...Please go to the moderator control panel and rate it. If need be, return here to discuss this application further. Thank you in advance." Is there a way to change this?
in your ACP edit the phrase mas_there_is_a_new_mod_application
how can I make it so the moderators can see each others comments and votes? I assumed that the mods could see the votes and comments like the admins do.
in mas_rateapp.php I changed
Code:
if ($vbulletin->userinfo['usergroupid'] == 6)
to
Code:
if ($vbulletin->userinfo['usergroupid'] !== 8)
but there has to be a better way to do that How do I add more than one usergroup in that field? what is the array? it is escaping me at the moment...
that method works so i'd go with it.
alternatively
PHP Code:
if (in_array($vbulletin->userinfo['usergroupid'], array(6, XX, XX))
i'd really suggest going with your current method though.