aibon |
11-19-2002 11:45 PM |
Quote:
Originally posted by v0id
How can I make a user with no requierments go to a new template with the text saying Y"ou need 2 posts to play in the arcade"? [/B]
|
for ease just use the vbulletin errordisplay (function standarderror):
PHP Code:
if (($bbuserinfo[usergroupid] != 2) and
($bbuserinfo[usergroupid] != 5) and
($bbuserinfo[usergroupid] != 6) and
($bbuserinfo[usergroupid] != 7)) {
show_nopermission();
}
elseif ($bbuserinfo[posts] < 2) {
eval("standarderror(\"".gettemplate('error_need2posts')."\");");
exit;
}
you'll have to create a template 'error_need2posts'.
the template should be put in the templatecache for performance reasons. unfortunately the templatecache isnt yet used in this
hack. should be implemented, but to avoid overhead of caching unused templates a bit of the code has to be rearanged. i dont know whats up with the hack as futureal seems to be pretty busy @moment. i'm offering my help, if its wanted as i really like this hack and will be modifying my verion definitly. unfortunatly futureal didnt contact me yet about that and the state of development.
|