That's simple, Kyodai. In "post_info.asp", change the Gatekeeper routine to say this (change the number in
' ## Gatekeeper Mod
strSql="SELECT M_POSTS FROM " & strMemberTablePrefix & "MEMBERS WHERE MEMBER_ID=" & MemberID
set rsPosts=my_Conn.Execute(strSql)
if not rsPosts.EOF then
intPosts=rsPosts("M_POSTS")
rsPosts.Close
end if
set rsPosts = Nothing
if strLinkSpamGatekeeper = "1" and intPosts < 10 and mLev < 2 then
select case len(Request.Form("GateKeeperAnswer"))
case "0"
Go_Result "You have not entered an answer for the Antispam question. Please use your back button and try again.", 0
case else
if lcase(Request.Form("GateKeeperAnswer")) <> lcase(Request.Form("GKA")) then
Go_Result "You have entered a wrong answer for the Antispam question. Please use your back button and try again.", 0
end if
end select
end if
' ## Gatekeeper Mod