Quote:
Originally Posted by Zachery
We cannot support other hadcks or styles, I would guess that you might not have edited the styles correctly or did the hack correctly if things are breaking
|
OK, but how can I do this ....
Points system work in the following way:
The original user posts a new topic they earn 20 points (already works) -
When the original user posts back in that topic no points are deduced from
there outstanding balance because at the moment they are deduced points.
(This only applys to there own created topics) -
This is the code how it was done on phpbb
Code:
Open: includes/classes_cash.php:
Find: global $board_config, $lang, $db, $phpbb_root_path, $phpEx, $ userdata, $cash;
Add AFTER:
// Turiel added to do nothing if topic author is same as reply poster
if ( ($mode == 'reply') && ($poster_id ==
$topic_starter))
return;
-------------------------
Open: posting.php
Find: if ( $mode == 'editpost' || $mode == 'delete' || $mode == 'poll_delete')
Add BEFORE:
// Added by Turiel to pass the topic_poster data to the cash functions
if ( $mode == 'reply' )
{
$post_data['topic_poster'] = ( $mode == 'reply' ) ?
$post_info['topic_poster'] : 0;
}
and
How can I add so many points to all the users already registered and also
so many points to all that join there after.... :squareeyed:
I have done this to users already registered but when new users register
they will not change ... so how to do it for everyone ? (maybe set via usergroups)
Code:
UPDATE `user` SET `uttpoints` = '125',
`warnings` = NULL ,
`warning_bans` = NULL WHERE `usergroupid` = '2' LIMIT 5000 ;
Thanks