- Joined
- Apr 8, 2008
- Messages
- 2,465
- Reaction score
- 11,167
This module works only with:
MuWeb 0.9 & Savoy's WebShop
Features:
*Voting for different links
*Each link is customizable (credit reward, frequency of vote, etc.)
*IP checking + account checking (a user can't vote multiple times with same IP but different account)
*Logging of credit rewards
*Rankings of top voters, with character selection to avoid disclosure of account name
Screens:
Install instructions:
1- Run the following query in sql query analyzer:
2- Copy the files in your website folder.
3- You can find the vote reward pages here :
Vote Reward page: http://yourserver/ServerName-VoteReward.html
Admin page: http://yourserver/ServerName-Admin-VoteReward.html
Top list: http://yourserver/ServerName-TopVoter.html
Credits: sachav
MuWeb 0.9 & Savoy's WebShop
Features:
*Voting for different links
*Each link is customizable (credit reward, frequency of vote, etc.)
*IP checking + account checking (a user can't vote multiple times with same IP but different account)
*Logging of credit rewards
*Rankings of top voters, with character selection to avoid disclosure of account name
Screens:
Install instructions:
1- Run the following query in sql query analyzer:
Code:
USE [MuOnline]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MEMB_VOTES](
[memb___id] [varchar](50) NOT NULL,
[votes] [bigint] NULL,
[id] [int] NULL,
[last_voted] [bigint] NULL,
[ip] [varchar](50) NULL,
[toplist_char] [varchar](255) NULL
) ON [PRIMARY]
CREATE TABLE [dbo].[MEMB_VOTE_LINKS](
[id] [int] NOT NULL,
[name] [text] NOT NULL,
[image] [text] NOT NULL,
[url] [text] NOT NULL,
[frequency] [int] NOT NULL,
[credits] [int] NOT NULL
) ON [PRIMARY]
CREATE TABLE [dbo].[MEMB_VOTE_LOGS](
[log_date] [bigint] NULL,
[log_text] [text] NULL,
[log_account] [varchar](50) NULL,
[log_ip] [varchar](50) NULL
) ON [PRIMARY]
3- You can find the vote reward pages here :
Vote Reward page: http://yourserver/ServerName-VoteReward.html
Admin page: http://yourserver/ServerName-Admin-VoteReward.html
Top list: http://yourserver/ServerName-TopVoter.html
Credits: sachav