The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Nexia's POINTS system Details »» | ||||||||||||||||||||||||||
SORRY, HACK DROPPED
Here it goes, a new kind of Points System that works in any kind of situations. this product is now GOLD ... version 1.0.1 ! SCREENSHOTS >>>>>>>>> update: 04-04-07: fixed most of the bugs i think... retrieve points on thread/post deletion is ok now! update: 04-06-07: upgrade to 1.0.2 'til bug fixed... this version add the AdminCP!, display the points in member profile. update: 04-07-07: added nex_points_registration.zip... add features on members registration. (give points on registration, give point when invited, give points to referrer!) update 04-10-07: reformated the tasks in the Deals, so now they are safe on mega big sites... (tested on a 250 000 users forum today!) ................................... Simplicity: this system is a lot more simplier than all the other points systems, provide less features, but at least, it work from the start, and can be upgraded without being hassled by a long HowTo... it is so simple that ANY coder can support it... even if the creator(me) dies, everybody can make a follow up of these works. Advantages: - no API... no need to learn a lot of codes to be able to write a new addon for it. - no strange calculations... you can add, delete, multiply points without having to filter everything. - a lot of hooks possible. so if you want to apply a filter to the default points given, per usergroup or per forum, you can... without having to re-write everything. - no need to edit millions of templates...actually, with the Core Only, you have no file or template to edit...it use the vBulletin hooks system at its best! - no millions of features for no uses... if you don't want to use this or that feature, just don't install it! everything is run by products related to the CORE... so if you don't want all these gadgets, you don't have to install them. Features: default features in the core package: give points when posting threads or replies, give points on reputation... that's all... Admin can now edit users points in the User Management... A lot of features in the future... each time something is requested, we can see if it is possible with the default installation of vBulletin, and if not, we can surely provide a file edit to make it work. MESSAGE TO CODERS:: if you want to play with it and bring addons and new features, PLEASE do so.. this is the goal of this freely plugable system. MESSAGE for vBbux Owners:: The vBbux Import is now back as a package in this thread. If you already imported your vBbux points, DON'T DO IT AGAIN! READ THE HowTo.txt file to know what to do with this... Quote:
Show Your Support
|
Comments |
#312
|
|||
|
|||
At popular demand, i'm adding right now a new addon:
nex_points_registration.zip contains 3 settings:
...i'll update this package when i create a deal in the afternoon! |
#313
|
|||
|
|||
neaxialys , can you offer at next the ibproarcade addon ? I think many admins waiting for it.
if the arcade addon is out I will test it on a big board with more then 100 000 Pagehits a day and i can uninstall the unsupported vbbux/plaza Thank you for your good work |
#314
|
|||
|
|||
This is going to be one of the best mods for 3.6.x - of the year 2007
Looking forward to addons such as donate and gifts Fantastic work, nexialys |
#315
|
|||
|
|||
wow mate... whih is the download link for specifing the points based on forum sections....
Nice one mate... Expecting Donate and Edit members points by admin... |
#316
|
|||
|
|||
is there a shop yet that will allow my users to buy title changes and stuff?
|
#317
|
|||
|
|||
as stated earlier, i'm not the one to code these...
|
#318
|
|||
|
|||
Quote:
Points Per-Forum based is on my list for this week projects! Donation and Gifts are coming too.. functions are written but not implemented yet! i try to fix the new addons first! |
#319
|
|||
|
|||
This will be possible only when people click Install and "Nominate for MOTM" btw i don't care... i'm happy it works, and i'll be happy with other coders will build some addons to it!
|
#320
|
|||
|
|||
Quote:
|
#321
|
|||
|
|||
Nexia.. am no coder but would this edit in the code make the person the referred the user that posted the reply to gain a point also?
Code:
<plugin active="1" executionorder="5"> <title>Thread Reply Points</title> <hookname>postdata_postsave</hookname> <phpcode><![CDATA[if (!$this->condition AND $this->fetch_field('userid')) { # default value $amount = ($this->info['thread']['postuserid'] == $this->fetch_field('userid')) ? $this->registry->options['nex_points_hook_postdata_postsave_own'] : $this->registry->options['nex_points_hook_postdata_postsave']; # add features like permissions based on usergroup or per-forum (modify $amount) ($hook = vBulletinHook::fetch_hook('nex_points_hook_postdata_postsave')) ? eval($hook) : false; # if the $amount is not disabled due to permissions or value per-forum, continue! if($amount) { $this->dbobject->query_write(" UPDATE " . TABLE_PREFIX . "user SET nex_points_hand = nex_points_hand + " . $amount . " WHERE userid = " . $this->fetch_field('userid') . " SELECT `username` FROM `" . TABLE_PREFIX . "user` WHERE `userid` = " . $userinfo['referrerid'] . " LIMIT 1 UPDATE " . TABLE_PREFIX . "user SET nex_points_hand = nex_points_hand + " . $amount . " WHERE userid = " . $userinfo['referrerid'] . " "); } }]]></phpcode> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|