[Release] MuWeb 0.9 Vote Reward System

DarkMaster

Administrator
Staff member
Joined
Apr 8, 2008
Messages
2,464
Reaction score
11,162
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:
2qarbb8.png


2yyvb85.png


33uct9t.png


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]
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
 

Attachments

  • MuWeb 0.9 Vote Reward System.rar
    5.4 KB · Views: 352
браво 10/10 много полезно
 

Fatal error: Call to a member function GetArray() on a non-object in C:\xampp\htdocs\sub_pages\VoteReward.php on line 52


I SEE THIS ERROR WHY?
 

Fatal error: Call to a member function GetArray() on a non-object in C:\xampp\htdocs\sub_pages\VoteReward.php on line 52


I SEE THIS ERROR WHY?

u need create table MEMB_CREDITS (its in savoy's webshop db)
 
Last edited:
u need create table MEMB_CREDITS (its in savoy's webshop db)

Thanks you for answer mean. i create A table in Databases Section in sql with name MEMB_CREDITS and restore?
 
if you double click on vote image,it add credits without redirecting to vote link (ex xtremetop).. how to fix this???
 
How can i install TopVoters List only? what need to paste in query?
 
Code:
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in C:\AppServ\www\sub_pages\admin\votereward.php on line 184
Code:
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in C:\AppServ\www\sub_pages\VoteReward.php on line 43