I'm trying to add to this hack, but I'm not having any success. I want to have the option to choose a tribe, and then they can get the rank scheme for that tribe. (If they choose tribe "Alpha", they get the Alpha ranks. If they choose "Beta" tribe, they get the Beta ranks....
In the vars_misc.cgi I turned this:
------------------------------------------------
JrMemberStarURL => q~lt.jpg~,
MemberStarURL => q~lt.jpg~,
Member1StarURL => q~lt.jpg~,
------------------------------------------------
into:
------------------------------------------------
JrMemberStarURL => q~$vars_config{VariablesPath}/jrmember_rank.cgi~,
MemberStarURL => q~$vars_config{VariablesPath}/member_rank.cgi~,
Member1StarURL => q~$vars_config{VariablesPath}/member1_rank.cgi~,
------------------------------------------------
and it goes on and on
The jrmember_rank.cgi looks like this:
if ($user_profile[9] eq "alpha") {
$redirect = $vars_alpha_rank{Member1StarURL};
else ($user_profile[9] eq "beta") {
$redirect = $vars_beta_rank{Member1StarURL};
My vars_alpha_rank.cgi and vars_beta_rank.cgi look just like vars_misc.cgi
I also added the all the above files to be required in the ultimatebb.cgi
Here is the exact error I am getting:
I'm still new at Perl and CGI, and there is a 99.9% chance that my code is wrong.

I just need some assistance, or even if this is possible.
If needed, we can discuss this over AIM or MSN Messenger. Just ask for my screen name.

[ 10-08-2001: Message edited by: trek9999 ]