vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   [Addon]Download Credit System with uCash (https://vborg.vbsupport.ru/showthread.php?t=79000)

VBUsers 05-02-2005 04:46 AM

Quote:

Originally Posted by lowandloudinc
i fixed that issue-----
but


how can i make it so that when i get a new registered user he automatically gets 45 points in his account with out me having to give him points so he can download stuff. that would be an excellent add on for me. cause now i have to give each one points and its a hassle. thanks deaths your the man!


i really need a bump to this request. who can help me out?

Deaths 05-02-2005 02:30 PM

I must've missed this, sorry guys :).

This can easily be done using phpMyAdmin.
Go to your forums DB, edit the "user" table, and find the "uttpoints" row.
Edit it, and set the 'default' field to whatever you want (40 in your case).

If you want to do this for the Credit system, just edit the 'credits' row :)

VBUsers 05-02-2005 05:09 PM

Quote:

Originally Posted by Deaths
I must've missed this, sorry guys :).

This can easily be done using phpMyAdmin.
Go to your forums DB, edit the "user" table, and find the "uttpoints" row.
Edit it, and set the 'default' field to whatever you want (40 in your case).

If you want to do this for the Credit system, just edit the 'credits' row :)


ok i will try this right now and edit this post when it works. thanks deaths your the man!


yup it worked like a charm. i tested it and everything. thanks deaths!

Deaths 05-02-2005 06:40 PM

No problem, glad I could be of help :)

MixMakers 05-05-2005 02:24 AM

Great hack! I was wondering if it'd be possible to give the points the attatchment costs to the uploader of the file. So if 10 people download a 10pt attatchment, the uploader would receive 100 pts. I think that would be a great addition.

Also, does the credits received per attatchment option work? If so, mine does not work and I have no idea why.

Deaths 05-05-2005 06:24 AM

That has been requested before, but unfortunately I'm not the person to ask this to ;).
I simply coded this addon to make it work with uCash, if you want that addition you'll need to ask in the actuall hack's thread (https://vborg.vbsupport.ru/showthread.php?t=78953).

EDIT: Don't have a clue why that is... is anyone having this problem?

VBUsers 05-05-2005 07:03 AM

hey mix you probably skipped a step. as long as you follow the steps you should be good.

MixMakers 05-06-2005 08:00 PM

Just checked it over again and everything seems fine...Help please!

Also, not sure if it's meant to be this way or not, but when a user posts a thread or reply, he will get points from the uCash hack, and also points from the credit system hack.

Just giving you a heads up.

Lionel 05-06-2005 10:51 PM

Quote:

Originally Posted by MixMakers
Great hack! I was wondering if it'd be possible to give the points the attatchment costs to the uploader of the file. So if 10 people download a 10pt attatchment, the uploader would receive 100 pts. I think that would be a great addition.

Also, does the credits received per attatchment option work? If so, mine does not work and I have no idea why.

Dark Visor did it for me. Here is the code, with his blessings.
In attachment.php replace entire block of

Quote:

// Begin Download Credit System
...
// End Download Credit System
with:

Quote:

// Begin Download Credit System
if($vboptions['credit_mode'])
{
// quick for exceptional groups not restricted by this credit system
if(in_array($attachmentinfo['forumid'], explode(',', $vboptions['credit_sysapplied'])))
{
$usercredits = $bbuserinfo['uttpoints'];
$cost = $vboptions['credit_cost'];
if($usercredits < $vboptions['credit_cost'])
{
eval(print_standard_error('error_notenuffcredits') );
}
else
{
$DB_site->query_first("UPDATE " . TABLE_PREFIX . "user SET uttpoints=uttpoints-$cost WHERE userid = $bbuserinfo[userid]");
$DB_site->query_first("UPDATE " . TABLE_PREFIX . "user SET uttpoints=uttpoints+$cost WHERE userid = $attachmentinfo[userid]");
}
}
}
// End Download Credit System
There is also a conditional to put in postbit to let people know that they are 'paying' x points to user for downloading.

akanevsky 05-06-2005 11:11 PM

HACK MODIFICATION - "PAY" POINTS IN SPECIFIC FORUMS INSTEAD OF PLAIN SUBTRACTION

-------------------------------------------
1. Do what it says here.
-------------------------------------------

-------------------------------------------
In showthread.php, find:
-------------------------------------------

PHP Code:

$show['viewpost'] = iif(can_moderate($thread['forumid']), truefalse);
$show['managepost'] = iif(can_moderate($thread['forumid'], 'candeleteposts') OR can_moderate($thread['forumid'], 'canremoveposts'), truefalse); 

-------------------------------------------
Add after:
-------------------------------------------

PHP Code:

$show['creditrequired'] = iif(in_array($thread['forumid'], explode(",",$vboptions['credit_sysapplied'])), 1, -1); 

-------------------------------------------
In showpost.php, find:
-------------------------------------------

PHP Code:

$post['postcount'] = $postcount

-------------------------------------------
Add after:
-------------------------------------------

PHP Code:

$show['creditrequired'] = iif(in_array($threadinfo['forumid'], explode(",",$vboptions['credit_sysapplied'])), 1, -1); 

-------------------------------------------
In postbit & postbit_legacy templates, find:
-------------------------------------------

PHP Code:

<if condition="$show['thumbnailattachment'] OR $show['attachments'] OR $show['imageattachment']"

-------------------------------------------
Add after:
-------------------------------------------

PHP Code:

<if condition="$show[creditrequired]==1 AND $vboptions[credit_mode]==1">
<
div align="center" style="font-size: 8pt">
<
b><br /><br />NoteBy downloading attachments from this forumyou automatically pay $vboptions[credit_costpoints to the attachment owner.</b>
</
div>
</if> 

-------------------------------------------
Add a credit_sysapplied setting into this hack's setting group. This is a plain text field. In it, input forum IDs of the forums you want this add-on to work in.
-------------------------------------------

Done!


All times are GMT. The time now is 05:40 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01204 seconds
  • Memory Usage 1,767KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete