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/Code)
 Points MOD Beta
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 8

hawkdrean
New Member

73 Posts

Posted - 17 March 2005 :  19:50:44  Show Profile  Visit hawkdrean's Homepage  Reply with Quote
Has anyone got a version that works on Multi-Language Skin3D Portal<

Edited by - hawkdrean on 17 March 2005 19:52:40
Go to Top of Page

andretti
New Member

70 Posts

Posted - 27 March 2005 :  21:10:41  Show Profile  Visit andretti's Homepage  Send andretti an AOL message  Send andretti a Yahoo! Message  Reply with Quote
This is a nice looking mod but I would like to be able to reward members with actual items like for instance 2500 points = 1 free dvd or something along those lines..

Has anyone been able to make this mod or something similiar be able to do that?<
Go to Top of Page

andretti
New Member

70 Posts

Posted - 02 April 2005 :  21:56:57  Show Profile  Visit andretti's Homepage  Send andretti an AOL message  Send andretti a Yahoo! Message  Reply with Quote
Ok I went ahead and installed thsi and I will adapt it to fit my needs. It installed without a problem with 15 minutes and so far it seems to be working good..

Now my question is this to anyone that knows this code.....

How would I go about adding this mod so that when members post
1) A new Classified Ad they will recieve points
2) Post a new Link they will also recieve points
3) Upload a picture into the photo album they recieve points

If anyone can point me in the right direction of what I need to do I would be extremely grateful!<
Go to Top of Page

CJones
Starting Member

35 Posts

Posted - 06 April 2005 :  03:56:04  Show Profile  Reply with Quote
Does anyone have a link for the working MOD?<
Go to Top of Page

ebelthite
Starting Member

21 Posts

Posted - 23 August 2005 :  09:49:24  Show Profile  Reply with Quote
Here is two mods that I got working :


1 - get points for adding a web link to the web links manager

add 'WEB' to pstore

Links.asp

after the lines:

      Else
        Response.Write  "Link Submitted."
      End If



add:

		PointValue = GetPoints("WEB")
	
   '## Forum_SQL - Update Points for user
   strSql = "UPDATE " & strTablePrefix & "MEMBERS "
   strSql = strSql & " SET M_POINTS = M_POINTS + " & PointValue
   strSql = strSql & " WHERE MEMBER_ID = " & MemberID

   my_Conn.Execute (strSql),,adCmdText + adExecuteNoRecords


2 - get points for voting in poll

add 'POL' to pstore

topic.asp

after the lines:

			else
				nNumber = cLng(Request.Form("R1"))
			end if
			
			if nNumber <> -1 then


add:

		PointValue = GetPoints("POL")
	
   '## Forum_SQL - Update Points for user
   strSql = "UPDATE " & strTablePrefix & "MEMBERS "
   strSql = strSql & " SET M_POINTS = M_POINTS + " & PointValue
   strSql = strSql & " WHERE MEMBER_ID = " & MemberID

   my_Conn.Execute (strSql),,adCmdText + adExecuteNoRecords




http://forums.feis.herts.ac.uk<

Edited by - ebelthite on 23 August 2005 09:51:05
Go to Top of Page

sachin
Starting Member

14 Posts

Posted - 15 September 2006 :  07:49:33  Show Profile  Reply with Quote
I have implemented the mod successfully, but I need an addition... Can I get a list of all my members with their points? Currently there is no such option... I need to rank them based on points earned...

<
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 15 September 2006 :  07:55:21  Show Profile  Reply with Quote
Do you want to show the points on members.asp or do you want a completely seperate page?

<

Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”

Edited by - Shaggy on 15 September 2006 07:55:39
Go to Top of Page

sachin
Starting Member

14 Posts

Posted - 15 September 2006 :  10:05:29  Show Profile  Reply with Quote
quote:
Originally posted by Shaggy

Do you want to show the points on members.asp or do you want a completely seperate page?





anything will do... but they must be sorted based on their points... also, is it possible to have some feature using which the admin can change the points of members randomly... for eg, supposedly a member makes an objectionable post, then i must be able to deduct his points rather than awarding him 5 points as in the current system...
<
Go to Top of Page

JBaldwin
Junior Member

USA
137 Posts

Posted - 15 September 2006 :  20:26:38  Show Profile  Reply with Quote
quote:
Originally posted by sachin
... also, is it possible to have some feature using which the admin can change the points of members randomly... for eg, supposedly a member makes an objectionable post, then i must be able to deduct his points rather than awarding him 5 points as in the current system...



This part you can accomplish by going into that members profile. The points are near the Signature Box. You can adjust the points to anything you want to assign them.<

AbsolutelyFreerolls.com - Poker Freeroll Listings, Poker Forum and Poker News


Go to Top of Page

sachin
Starting Member

14 Posts

Posted - 15 September 2006 :  21:35:15  Show Profile  Reply with Quote
quote:
Originally posted by JBaldwin


This part you can accomplish by going into that members profile. The points are near the Signature Box. You can adjust the points to anything you want to assign them.



nopes... when i try editing a memebr, their points are not shown, so the points cannot be edited... when i try editing my own profile, the points are shown and can be edited - i hope the memebrs are not getting this option, else they can adjust their points to whatever they want<
Go to Top of Page

JBaldwin
Junior Member

USA
137 Posts

Posted - 16 September 2006 :  10:33:29  Show Profile  Reply with Quote
Thats odd. I have full control over all members points as the admin. Wonder why the difference? Anyone else?<

AbsolutelyFreerolls.com - Poker Freeroll Listings, Poker Forum and Poker News


Go to Top of Page

sachin
Starting Member

14 Posts

Posted - 16 September 2006 :  12:35:47  Show Profile  Reply with Quote
cud u share ur code for inc_profile.asp and pop_profile.asp? :(<
Go to Top of Page

sachin
Starting Member

14 Posts

Posted - 16 September 2006 :  14:50:39  Show Profile  Reply with Quote
i was able to work thru it... thnx<
Go to Top of Page

CalloftheHauntedMaster
Junior Member

289 Posts

Posted - 01 December 2006 :  14:43:30  Show Profile  Reply with Quote
This mod is a lot of work to install so I'd like to ascertain a few things before I install it:

I'm very interested in having my members be required to have a certain number of points before they can have a signature or avatar at all. So, let's say I want them to need 50 points. Is this inclunded in the base code?

I basically need to know the exact options my members can get with this feature from the base install of this mod.

Also, do mods and admins need to use these points as well to purchase sigs and avys?

Lastly, what if post increases in a certain forum are disabled? Does the member still get a point for posting in such forums?<

This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums!

Edited by - CalloftheHauntedMaster on 02 December 2006 15:49:54
Go to Top of Page

Max0005
Junior Member

Italy
294 Posts

Posted - 06 December 2006 :  14:27:29  Show Profile  Visit Max0005's Homepage  Send Max0005 a Yahoo! Message  Reply with Quote
I installed the mod on my forum, I wanted to know if there's a way to give/take away points to all the members, because doing it individually to every member is VERY boring. Also, is there a way to take for example a glowing username away from a member without having to edit their username?<
Go to Top of Page
Page: of 8 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.12 seconds. Powered By: Snitz Forums 2000 Version 3.4.07