Jump to content
  • 0

Vote For Points issue


ChampzRo

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  1
  • Reputation:   0
  • Joined:  04/30/16
  • Last Seen:  

hi guys...

i'm trying to install Vote For points from Jaypee...
everithings work fine, untill i log into the game, and click on NPC, there's no vote points to reclaim...

i did everything i can imagine...

seems like old version work's fine where have 3 sql tables on the folder schemas\logindb, and now just have 2, 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

Hie
this  table working fine for me!

CREATE TABLE `cp_v4p_sites` (
  `site_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `address` text NOT NULL,
  `points` int(10) unsigned NOT NULL DEFAULT '0',
  `blocking_time` int(10) unsigned NOT NULL DEFAULT '0',
  `banner` blob,
  `banner_url` text,
  `site_name` varchar(50) NOT NULL,
  `banner_file_type` varchar(30) NOT NULL,
  PRIMARY KEY (`site_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

CREATE TABLE `cp_v4p_votelogs` (
  `rtid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `f_site_id` int(10) unsigned NOT NULL,
  `unblock_time` datetime NOT NULL,
  `account_id` int(10) unsigned NOT NULL,
  `ip_address` varchar(100) DEFAULT '0',
  PRIMARY KEY (`rtid`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;

CREATE TABLE `cp_v4p_voters` (
  `account_id` int(10) unsigned NOT NULL,
  `points` int(10) unsigned NOT NULL,
  PRIMARY KEY (`account_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

 

Edited by Cyro
Link to comment
Share on other sites

×
×
  • Create New...