Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/O Code)
 Mod request . Moderator title
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Gandalf il Bianco
Starting Member

Italy
18 Posts

Posted - 26 May 2001 :  21:07:25  Show Profile  Visit Gandalf il Bianco's Homepage  Send Gandalf il Bianco an ICQ Message
Someone could realize a mod for showing moderator title only in the forums to which the moderator belong?

I need it cause in my forum I have a clans section, and peoples ask a clan forum only to have the title of moderator.

I know that it's a stupid thing but i really need it.

Cheers

davemaxwell
Access 2000 Support Moderator

USA
3020 Posts

Posted - 26 May 2001 :  23:51:31  Show Profile  Visit davemaxwell's Homepage  Send davemaxwell an AOL message  Send davemaxwell an ICQ Message  Send davemaxwell a Yahoo! Message
quote:

Someone could realize a mod for showing moderator title only in the forums to which the moderator belong?



You can give anyone a specific title you want. Just go onto the members page as the admin, click on the pencil next to who you want to change, then look for the title. That's how I have my title...

Dave Maxwell
--------------
Proud to be a "World Class" Knucklehead
Go to Top of Page

aston
New Member

Andorra
51 Posts

Posted - 27 May 2001 :  02:08:27  Show Profile
quote:

quote:

Someone could realize a mod for showing moderator title only in the forums to which the moderator belong?



You can give anyone a specific title you want. Just go onto the members page as the admin, click on the pencil next to who you want to change, then look for the title. That's how I have my title...

Dave Maxwell
--------------
Proud to be a "World Class" Knucklehead



i don`t like that!!

______________________

Fly me to the Moon
Go to Top of Page

Gandalf il Bianco
Starting Member

Italy
18 Posts

Posted - 27 May 2001 :  07:11:06  Show Profile  Visit Gandalf il Bianco's Homepage  Send Gandalf il Bianco an ICQ Message
Yes I know but i want to show the moderator title only in the right forums and not in the other.

Go to Top of Page

James
Average Member

USA
539 Posts

Posted - 31 May 2001 :  22:13:17  Show Profile  Visit James's Homepage
quote:

Yes I know but i want to show the moderator title only in the right forums and not in the other.



You could give your moderator two accounts. One for there moderating and one for posting to other forums. I know it's not exactly what you want, but it'll help out until someone does come up with a mod.

-

*Interested in Radio Control*
*The RC Web Board - http://www.rcwebboard.com/*
Go to Top of Page

Naveed
New Member

Norway
85 Posts

Posted - 29 June 2001 :  19:12:19  Show Profile  Visit Naveed's Homepage
well I have a question too, how can moderators on this forum get two titles? like davemaxwell has Moderator and some access 2000 stuff displayed under his username...

Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 29 June 2001 :  22:01:09  Show Profile
Dave's is all one Title, it's just wrapped to another line.

His title is: "Access 2000 Support Moderator"
Go to Top of Page

Space_Cowboy
Starting Member

34 Posts

Posted - 29 June 2001 :  23:21:12  Show Profile  Visit Space_Cowboy's Homepage  Send Space_Cowboy an ICQ Message
quote:

Someone could realize a mod for showing moderator title only in the forums to which the moderator belong?

I need it cause in my forum I have a clans section, and peoples ask a clan forum only to have the title of moderator.

I know that it's a stupid thing but i really need it.

Cheers





You know, you could just put something like this for his title: Moderator (*insert name of forum here*)

Go to Top of Page

dayve
Forum Moderator

USA
5820 Posts

Posted - 04 July 2001 :  02:09:47  Show Profile  Visit dayve's Homepage
quote:

quote:

Someone could realize a mod for showing moderator title only in the forums to which the moderator belong?

I need it cause in my forum I have a clans section, and peoples ask a clan forum only to have the title of moderator.

I know that it's a stupid thing but i really need it.

Cheers





You know, you could just put something like this for his title: Moderator (*insert name of forum here*)





that could prove to be a really long title...

Dayve
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 04 July 2001 :  03:59:49  Show Profile
ok, try this:

inc inc_functions.asp find the function getMember_Level(fM_TITLE, fM_LEVEL, fM_POSTS)

replace the entire function with this: (or you can just add the parts in red, your choice, replacing would be easier)

function getMember_Level(fM_TITLE, fM_LEVEL, fM_POSTS, fFORUM_ID, fM_NAME)
dim Member_Level

Member_Level = ""
if Trim(fM_TITLE) <> "" then
Member_Level = fM_TITLE
else
select case fM_LEVEL
case "1"
if (fM_POSTS < intRankLevel1) then Member_Level = Member_Level & strRankLevel0
if (fM_POSTS >= intRankLevel1) and (fM_POSTS < intRankLevel2) then Member_Level = Member_Level & strRankLevel1
if (fM_POSTS >= intRankLevel2) and (fM_POSTS < intRankLevel3) then Member_Level = Member_Level & strRankLevel2
if (fM_POSTS >= intRankLevel3) and (fM_POSTS < intRankLevel4) then Member_Level = Member_Level & strRankLevel3
if (fM_POSTS >= intRankLevel4) and (fM_POSTS < intRankLevel5) then Member_Level = Member_Level & strRankLevel4
if (fM_POSTS >= intRankLevel5) then Member_Level = Member_Level & strRankLevel5
case "2"
if (chkForumModerator(fFORUM_ID, fM_NAME) = 1) or (Instr(Request.ServerVariables("Path_Info"), "members.asp") <> 0) then
Member_Level = Member_Level & strRankMod
else
if (fM_POSTS < intRankLevel1) then Member_Level = Member_Level & strRankLevel0
if (fM_POSTS >= intRankLevel1) and (fM_POSTS < intRankLevel2) then Member_Level = Member_Level & strRankLevel1
if (fM_POSTS >= intRankLevel2) and (fM_POSTS < intRankLevel3) then Member_Level = Member_Level & strRankLevel2
if (fM_POSTS >= intRankLevel3) and (fM_POSTS < intRankLevel4) then Member_Level = Member_Level & strRankLevel3
if (fM_POSTS >= intRankLevel4) and (fM_POSTS < intRankLevel5) then Member_Level = Member_Level & strRankLevel4
if (fM_POSTS >= intRankLevel5) then Member_Level = Member_Level & strRankLevel5
end if

case "3"
Member_Level = Member_Level & strRankAdmin
case else
Member_Level = Member_Level & "Error"
end select
end if

getMember_Level = Member_Level
end function



then in topic.asp search for: (there is 2 instances of it, be sure to replace both instances)

<% = ChkString(getMember_Level(rs("M_TITLE"), rs("M_LEVEL"), rs("M_POSTS")),"display") %>


replace it with:

<% = ChkString(getMember_Level(rs("M_TITLE"), rs("M_LEVEL"), rs("M_POSTS"), Request.QueryString("FORUM_ID"), rs("M_NAME")),"display") %>



in members.asp

search for:

<% =ChkString(getMember_Level(rs("M_TITLE"), rs("M_LEVEL"), rs("M_POSTS")),"display") %>


change it to:

<% =ChkString(getMember_Level(rs("M_TITLE"), rs("M_LEVEL"), rs("M_POSTS"), 0, rs("M_NAME")),"display") %>
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.22 seconds. Powered By: Snitz Forums 2000 Version 3.4.07