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

Reply
 
Thread Tools
ICash, Simple, stand alone point system. Details »»
ICash, Simple, stand alone point system.
Version: 2.0.3, by Blaine0002 Blaine0002 is offline
Developer Last Online: Jul 2018 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.8 Rating:
Released: 06-19-2006 Last Update: 12-28-2007 Installs: 316
DB Changes Uses Plugins Auto-Templates
Re-useable Code Additional Files Translations Is in Beta Stage  
No support by the author.

Unsupported and Unmaintained. There are better point systems to use!
ICash V2.0.2

Features
-----------
+Points in postbit.
+Points in profile page.
+Donation logs.
+Admin donation logs.
+Easy admin donate.
+Points on registration.
+Points for referrers.
+Customizable point name.
+Customizable file name.
+Donation comments.
+Dynamic decimal system.
+Points per topic creation.
+Points per post.
+Points per character.
+Ability to change money row for easy integration with your favorite hacks. for example, integrating with vbookie is as easy as going into your admin cp and changing money to 'vbookie_cash'.
+Mass point giving via ACP.
+Set customizable point values per forum.
+Points may be taken away on post deletion.
+Automatic navbar, memberinfo, and postbit template edits.

To install:
------------
Simply upload all files to your forum root directory and import the product file.

To update:
--------------
Simply reupload all files, overwrite product and revert any templates you may have edited.

Show Your Support

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

Comments
  #642  
Old 05-01-2007, 06:49 PM
Black Tiger's Avatar
Black Tiger Black Tiger is offline
 
Join Date: Apr 2004
Location: Netherlands
Posts: 957
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No, sorry, it's just for version 2.3.0.
Reply With Quote
  #643  
Old 05-02-2007, 05:34 AM
webstop webstop is offline
 
Join Date: Apr 2007
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's possible to deduct points from users that download an attachment, and transfer the points to the uploader?
Reply With Quote
  #644  
Old 05-02-2007, 09:27 AM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blaine0002 View Post
ok try this, make a new plugin, hook location ibproarcade_play_game

contents somthing like this

PHP Code:
$amount '1';

if ((
$vbulletin->userinfo[$vbulletin->options['icashf']] - $amount) < 0) {
          eval(
standard_error(fetch_error('your_error')));
}
$vbulletin->db->query("update " TABLE_PREFIX "user set {$vbulletin->options['icashf']}={$vbulletin->options['icashf']}-'{$amount}' where userid='{$vbulletin->userinfo['userid']}'"); 
you will need to make a phrase called whatever you want saying somthing like 'you dont have enough to play this game'

heres what each individual thing does
$amount is set to whatever you want your games to cost, you need to set this

if (($vbulletin->userinfo[$vbulletin->options['icashf']] - $amount) < 0) {
eval(standard_error(fetch_error('your_error')));
}

this checks the money row, and sees if they have enough to play the game, if not, ERROR!
of course you will need to make a new error phrase and edit the code to whatever you named your phrase.

$vbulletin->db->query("update " . TABLE_PREFIX . "user set {$vbulletin->options['icashf']}={$vbulletin->options['icashf']}-'{$amount}' where userid='{$vbulletin->userinfo['userid']}'");

if the error passes this updates their settings and minuses the $amount from their points

have fun !
So far this is working for me except for the phrase I made. What is the exact way to make the phrase?

We made a phrase that says "You do not have enough stars to play a game." - phrase type - global, varname - no_stars and saved. Then switched your_error in the above code with no_stars and saved.

Now when someone doesn't have enough stars ( our points) this pops up - Could not find phrase 'no_stars'.

Thanks!!
Reply With Quote
  #645  
Old 05-02-2007, 08:37 PM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Finally got it working with Ibproarcade and it is great. However I noticed that it does not seem to work for the games that are played in a new window. Would this need to be another plugin?
Reply With Quote
  #646  
Old 05-02-2007, 11:08 PM
4newbies 4newbies is offline
 
Join Date: Feb 2007
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by JD45 View Post
Yep, forum manager
Please look at my post and image below to see what I am talking about:

https://vborg.vbsupport.ru/showthrea...37#post1238037

Is this the "Forum Manager" I need to be looking at? If so, I can only adjust "Points for Registering" and "Points Per Referral"

I need to adjust the following as well:

Points per reply
Points per new topic
Points per character of reply (Length of Post)
Reply With Quote
  #647  
Old 05-02-2007, 11:16 PM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by 4newbies View Post
Please look at my post and image below to see what I am talking about:

https://vborg.vbsupport.ru/showthrea...37#post1238037

Is this the "Forum Manager" I need to be looking at? If so, I can only adjust "Points for Registering" and "Points Per Referral"

I need to adjust the following as well:

Points per reply
Points per new topic
Points per character of reply (Length of Post)
To set those three items go to vbadmincp > forums and moderators > forum manager, and then click on one of your forums as you would when you edit them. Should be down towards the bottom is where you will find those 3 settings.
Reply With Quote
  #648  
Old 05-03-2007, 12:22 AM
Black Tiger's Avatar
Black Tiger Black Tiger is offline
 
Join Date: Apr 2004
Location: Netherlands
Posts: 957
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@Kylek:
Quote:
Finally got it working with Ibproarcade and it is great.
What exactly do you have working?
I have it working that playing a game costs an x amount of cash, and if a user gets the all-time-highscore of a game, he wins an x amount of cash.

Do you have the same or do you have more options working?
Reply With Quote
  #649  
Old 05-03-2007, 12:42 AM
4newbies 4newbies is offline
 
Join Date: Feb 2007
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kylek View Post
To set those three items go to vbadmincp > forums and moderators > forum manager, and then click on one of your forums as you would when you edit them. Should be down towards the bottom is where you will find those 3 settings.
Thanks for the clarification. I was able to find it now. I have over 70 boards set up on my forum. Is there any way to globally customize point rewards so that I don't have to spend hours editing each indiviual forum? Also, has anyone found a way to cap the amount of points a user can get total per post?
Reply With Quote
  #650  
Old 05-03-2007, 12:57 AM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Black Tiger View Post
@Kylek:

What exactly do you have working?
I have it working that playing a game costs an x amount of cash, and if a user gets the all-time-highscore of a game, he wins an x amount of cash.

Do you have the same or do you have more options working?
Dam, you are one up on me, don't have the high score one yet. Took awhile to figure out how to get it to charge cash when a game was opened in a new window.

@4newbies - nothing yet so have fun doing your forums. I dont know about the cap as I dont use that.
Reply With Quote
  #651  
Old 05-03-2007, 02:14 AM
incurable incurable is offline
 
Join Date: Apr 2005
Location: pink jar~*
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

works smoothly. thank you.
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 05:57 AM.


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.05656 seconds
  • Memory Usage 2,327KB
  • Queries Executed 25 (?)
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
  • (1)bbcode_php
  • (6)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
  • (4)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