Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
kBank 2.1 - Money System Details »»
kBank 2.1 - Money System
Version: 2.1, by mrpaint mrpaint is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.7.0 Rating:
Released: 07-13-2008 Last Update: 09-25-2008 Installs: 100
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

kBank v2.1 for vBulletin 3.6.x (tested with vBulletin 3.6.8 Patch Level 2) and vBulletin 3.7.x (tested with vBulletin 3.7.0)

[WHAT IS IT?]
kBank is a money system for your vBulletin Board with a lot of feature (listed below). With kBank, your members will try to post as much as possible (even spam) to earn points to get cool items or to be the richest man in the world You will love it!

[MAIN FEATURE]
1. Admin function:
1.1 Edit Settings (a lot of settings)
1.2 Donate members: by usergroup or username
1.3 Detail statistic updated daily, full action log (admin log & member log)
1.4 Tool to manage everything (itemtypes, item, transactions log)
1.5 Salary Center (AdminCP > kBank > kBank Salary Center): Provide tool to calculate mod activities
2. Member function:
2.1 Donate money
2.2 View history of transactions
2.3 Buy/Sell/Produce/Use/Gift items
2.4 Monthly Tax
2.5 Intergrated Who Visited In 24h (with Paul M's permission)
2.6 There are many top list based on different factors: Top Posts (all time), Top Posts In 1 Day, Top Posts Each Day, Top Richest, Top Richest (with Items), Top Thanked (times), Top Thanked (amount), Top Sent Thank (times),Top Sent Thank (amount), Top Thanked Post (times), Top Thanked Post (amount), Top Awarded (times), Top Awarded (amount), Top Amount of Tax. List for kBank Admin Only: Top Thanked by Area, Top Awarded by Area, Top Give Award (times), Top Give Award (amount)
2.7 Grant Permission (allow trusted-person to access your points)
3. Other:
3.1 Included 5 itemtypes: Announcement, Custom User Info, Profile Images (big avatar/signature picture), None (item with your information), Pack (many-in-1 item)
3.2 Included kBank Award/Thank system. Allow forum staff to award high quality post or take points from spam. Member can easily donate others via good post
3.3 Included kBank Hide with 1 hidden-type: Require thank
3.4 Included Help files (need to install FULL version)
[CHANGE LOG]
Version 2.1 (Release Date: 18-08-2008)
1. Item: Add Never Expires option, group similar items in kShop
2. Itemtype: Add edit time limitation (member can edit username/usertitle once or twice,etc... Confirmation required) for Customized Userinfo itemtype. Add new itemtype with "open" information
3. Admin Tool: Admin can select exactly which element is shown in post and profile. Add 1-time register points. Add option to count thanks as posts (still work well when update posts count). Add Salary Center
4. Add product uninstall codes
5. Create addon to work with vbookie
Version 2.0.1 (Release Date: 27-07-2008)
1. Fix mysql queries (cause database error)
2. Fix thank issue (delay update of thank times/amount)
3. Improve kBank Hide (working with extremely long hide content)

Cause of file size limitation, you can download FULL version (with help) here: http://www.mediafire.com/?sharekey=2...77ec469acb75af

[KNOWN ISSUES]
  1. After installing if you can not see kBank Salary Center under kBank menu, please download file "cpnav_kbank.xml" (attached) and upload overwrite into ./includes/xml
  2. Please download customize_userinfo.kbank.php (attached below) and upload overwrite into ./kbank/itemtypes to fix HTML username/usertitle issue
  3. Fatal error when Update award/thank: https://vborg.vbsupport.ru/showpost.php?p=1637542

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #82  
Old 07-31-2008, 06:55 AM
parseforum parseforum is offline
 
Join Date: Jun 2008
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Please uninstall and re-install to re-create kbank tables
I can not go to the forum
Reply With Quote
  #83  
Old 07-31-2008, 07:19 AM
mrpaint's Avatar
mrpaint mrpaint is offline
 
Join Date: Sep 2004
Location: Hanoi Capital
Posts: 630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by parseforum View Post
I can not go to the forum
Please run these queries manually:

Quote:
CREATE TABLE `" . TABLE_PREFIX . "kbank_donations` (
`id` int(11) NOT NULL auto_increment,
`from` int(11) NOT NULL default 0,
`to` int(11) NOT NULL default 0,
`amount` int(11) NOT NULL default 0,
`tax` int(11) NOT NULL default 0,
`time` int(11) NOT NULL,
`comment` TEXT NOT NULL,
`postid` int(11) NOT NULL default 0,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "kbank_ban (
`id` int(11) NOT NULL auto_increment,
`userid` int(10) unsigned NOT NULL,
`time` int(11) NOT NULL,
`days` int (11) NOT NULL,
`reason` text NOT NULL,
`adminid` int (10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM;

CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "kbank_banklogs (
`id` int(11) NOT NULL auto_increment,
`itemname` varchar(255) NOT NULL,
`itemtype` varchar(100) NOT NULL,
`amount` int(11) NOT NULL,
`time` int(11) NOT NULL,
`userid` int (10) unsigned NOT NULL,
`status` int(11) NOT NULL default 0,
PRIMARY KEY (`id`)
) TYPE=MyISAM;

INSERT INTO `" . TABLE_PREFIX . "kbank_banklogs`
(id,itemname,itemtype,amount,time,userid)
VALUES
(1,'post','money',0," . TIMENOW . ",0),
(2,'register','money',0," . TIMENOW . ",0),
(3,'referer','money',0," . TIMENOW . ",0),
(4,'admindonate','money',0," . TIMENOW . ",0),
(5,'items','money',0," . TIMENOW . ",0),
(6,'other','money',0," . TIMENOW . ",0)
(7,'tax','money',0," . TIMENOW . ",0);

CREATE TABLE IF NOT EXISTS `" . TABLE_PREFIX . "kbank_items` (
`itemid` int(11) NOT NULL auto_increment,
`type` varchar(100) default NULL,
`name` varchar(200) default NULL,
`description` varchar(200) default NULL,
`price` int(11) default 0,
`userid` int(10) default 0,
`creator` int(10) default 0,
`create_time` int(11) default 0,
`expire_time` int(11) default 0,
`options` text,
`status` int(11) NOT NULL default '0',
PRIMARY KEY (`itemid`)
) TYPE=MyISAM;

CREATE TABLE IF NOT EXISTS `" . TABLE_PREFIX . "kbank_itemtypes` (
`itemtypeid` int(11) NOT NULL auto_increment,
`name` varchar(100) default NULL,
`filename` varchar(100) default NULL,
`userid` text,
`description` text,
`price` int(11) default 0,
`options` text,
PRIMARY KEY (`itemtypeid`)
) TYPE=MyISAM;

CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "kbank_logs (
`id` int(11) NOT NULL auto_increment,
`type` int(4) default '1',
`userid` int(11) default NULL,
`timeline` int(11) default NULL,
`text1` text,
`int1` int(11) default NULL,
`detail` text,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
Gud luck
Reply With Quote
  #84  
Old 07-31-2008, 03:27 PM
PGAmerica PGAmerica is offline
 
Join Date: Mar 2008
Posts: 405
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mrpaint View Post
With Item System, member can gift to other member (with short message and anonymous option)
OK, what about converting points from vbcredits to kbank?
Reply With Quote
  #85  
Old 07-31-2008, 03:45 PM
mrpaint's Avatar
mrpaint mrpaint is offline
 
Join Date: Sep 2004
Location: Hanoi Capital
Posts: 630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by PGAmerica View Post
OK, what about converting points from vbcredits to kbank?
You can change table field of kBank into "credits" to use dirrectly points from vbcredits. If you want to uninstall vbcredits, you must run a query manually (after installing kbank)

Quote:
UPDATE `[TABLE_PREFIX]user`
SET money = credits
Replace [TABLE_PREFIX] with your table prefix!

So now, you can uninstall vbcredits (but you should disable instead of uninstall vbcredits, after a few days if everything is okie then you can uninstall it safely). I will create an automatic convert tool in the next version of kBank
Reply With Quote
  #86  
Old 07-31-2008, 04:01 PM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I seem to have a lot of problems importing this plugin. It is using massive cpu usage on our forums and it is being stuck at:

Quote:
Installing....
Rename donation, ban & bank log table (need to run because productid changed)
Any advice?
Reply With Quote
  #87  
Old 07-31-2008, 04:33 PM
mrpaint's Avatar
mrpaint mrpaint is offline
 
Join Date: Sep 2004
Location: Hanoi Capital
Posts: 630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by FF|Skyrider View Post
I seem to have a lot of problems importing this plugin. It is using massive cpu usage on our forums and it is being stuck at:



Any advice?
Live support via Y!M now
Reply With Quote
  #88  
Old 07-31-2008, 07:01 PM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for helping out mrpaint, you've been really helpful! I do have some features that I think that should be added though:

1), Able to hide thanks/awards within the small profiles in posts.
2), Able to hide the credits you have and of others also in the small profiles of posts.
3), Create a new item so you can buy a forum style for you to choose! (new forum theme)
4), When you select that you can buy 5 of an item, I saw a whole list of names of that item. Possible it can be 1 item, but can be sold 5x? For example:

Quote:
Test Item! 1: Costs - Credits: 50.0000
Test Item! 2: Costs - Credits: 50.0000
Test Item! 3: Costs - Credits: 50.0000
Test Item! 4: Costs - Credits: 50.0000
Test Item! 5: Costs - Credits: 50.0000
Test power! 1: Costs - Credits: 240.000
Test power! 2: Costs - Credits: 240.000
Test power! 3: Costs - Credits: 240.000
I think it should be:
Quote:
Test Item! 5: Costs - Credits: 50.0000 (Quantity: 5x)
Test power! 3: Costs - Credits: 240.000 (Quantity: 3x)
This way, it won't spam up the whole shop list .

5), When you change your nickname, you should see an example how it will look AND once changed, you should not be able to change again! I noticed I could keep changing my nickname all the time, which should not happen! .

6), Able to select ID's of forum sections which are not supposed to gain credits when posting replies or new threads. Off-topic for example.

7), You should be able to select ID's where you can gain bonus credits, or create new usergroups or forums where you can add / edit your own what should be bonused. Example:

Usergroup: Administrator - gets 4 credits per thread and 8 credits per reply.
Usergroup: Super Moderator - Gets 19 credits per thread and 30 credits per reply.

Do remember that the "Credits" I added is the money value with this plugin.
Reply With Quote
  #89  
Old 07-31-2008, 11:09 PM
Fraxter Fraxter is offline
 
Join Date: Jul 2007
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How is the direct link to the kbank shop? Can´t find it.

regards and thanks for this great Addon!

Pander23
Reply With Quote
  #90  
Old 08-01-2008, 12:11 AM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="http://feelxthexlife.com/products/kbank/Download" target="_blank">http://feelxthexlife.com/products/kbank/Download</a>
Reply With Quote
  #91  
Old 08-01-2008, 12:16 AM
Fraxter Fraxter is offline
 
Join Date: Jul 2007
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don?t mean the download link (i don?t said that!) i mean the link to the shop in vbulletin.

Like www.example.com/kshop.php (false link) i need the correct link to integrate a link in my navbar.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:54 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05463 seconds
  • Memory Usage 2,333KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (10)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete