Hi
was just wondering if someone made a miserable user can see themselve's that they are one,
if they can
Can it be made that they cannot
what bought this to mind, i made a member miserable user and he can see it in his post everytime he makes one
is this normal
if it is can this be changed so they cannot see that they have been mark miserable user
sorry for asking same question twice in this post
but i wanted to make sure i get across what i was asking and make sure i explained myself properly
thanks
bloke :)
Icy 27c Miserable User
Subject: Re: Icy 27c Miserable User
Yes. Users marked as "Miserable User" can see they have been marked as a miserable user in their posts. Furthermore, other users can view a miserable user's posts by quoting their posts or by using the search function.
I'm not completely sure which line to change, but have a look here:
OPEN: ip_root/language/lang_english/lang_main_cback_ctracker.php
FIND:
Play around the with these lines and see if you can figure out the rest. I'm sure it won't take long to figure it out. :)
I'm not completely sure which line to change, but have a look here:
OPEN: ip_root/language/lang_english/lang_main_cback_ctracker.php
FIND:
'ctracker_mu_success' => 'The user has been marked as a "Miserable User".',
'ctracker_mu_success_bbc' => '[cell class="text_orange"]The user has been marked as a "Miserable User".[/cell]',
'ctracker_mu_success_html' => '<span class="text_orange">The user has been marked as a "Miserable User".</span>',
'ctracker_mu_success_bbc' => '[cell class="text_orange"]The user has been marked as a "Miserable User".[/cell]',
'ctracker_mu_success_html' => '<span class="text_orange">The user has been marked as a "Miserable User".</span>',
Play around the with these lines and see if you can figure out the rest. I'm sure it won't take long to figure it out. :)
Subject: Re: Icy 27c Miserable User
I can confirm this... Looks stupit to me. Isn't it better the miserable user would see there own posts like they are?
Chaotic wrote: [View Post]
I can confirm this... Looks stupit to me. Isn't it better the miserable user would see there own posts like they are?
Subject: Re: Icy 27c Miserable User
I´m with you Steffen.
Would be better if Misserable User did´nt know that they´re Misserable Users.
So just Show others who´s an M-user.
Would be better if Misserable User did´nt know that they´re Misserable Users.
So just Show others who´s an M-user.
Subject: Re: Icy 27c Miserable User
the creator of the ctrackertracker, cback, support and develop any opensource mods since he had his own software company
this mod is to complex for a outsider i think we can never solve this :cry:
this mod is to complex for a outsider i think we can never solve this :cry:
Subject: Re: Icy 27c Miserable User
It is not so complex after all... it depends on your PHP knowledge.
I have never used Miserable User, I will check and think about it to see if it is a good idea to not making him know that he is a miserable user.
New Player wrote: [View Post]
It is not so complex after all... it depends on your PHP knowledge.
I have never used Miserable User, I will check and think about it to see if it is a good idea to not making him know that he is a miserable user.
Subject: Re: Icy 27c Miserable User
I just had a quick look...
Try this:
OPEN viewtopic.php
FIND
REPLACE WITH
Try this:
OPEN viewtopic.php
FIND
if (($postrow[$i]['ct_miserable_user'] == 1) && ($postrow[$i]['user_id'] != $userdata['user_id']) && ($userdata['user_level'] == USER))
{
//$message = $lang['ctracker_message_dialog_title'] . '<br /><br />' . $lang['ctracker_ipb_deleted'];
$message = $lang['ctracker_message_dialog_title'] . "\n\n" . $lang['ctracker_ipb_deleted'];
$is_miserable = true;
}
else
{
$message = $postrow[$i]['post_text'];
//if (($postrow[$i]['ct_miserable_user'] == 1) && ($userdata['user_level'] == ADMIN))
if ($postrow[$i]['ct_miserable_user'] == 1)
{
//$message .= '<br /><br />' . $lang['ctracker_mu_success_bbc'];
$message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
$is_miserable = true;
}
}
{
//$message = $lang['ctracker_message_dialog_title'] . '<br /><br />' . $lang['ctracker_ipb_deleted'];
$message = $lang['ctracker_message_dialog_title'] . "\n\n" . $lang['ctracker_ipb_deleted'];
$is_miserable = true;
}
else
{
$message = $postrow[$i]['post_text'];
//if (($postrow[$i]['ct_miserable_user'] == 1) && ($userdata['user_level'] == ADMIN))
if ($postrow[$i]['ct_miserable_user'] == 1)
{
//$message .= '<br /><br />' . $lang['ctracker_mu_success_bbc'];
$message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
$is_miserable = true;
}
}
REPLACE WITH
if (($postrow[$i]['ct_miserable_user'] == 1) && ($postrow[$i]['user_id'] == $userdata['user_id']))
{
// The user is watching its own post... do nothing here!
$message = $postrow[$i]['post_text'];
}
elseif (($postrow[$i]['ct_miserable_user'] == 1) && ($userdata['user_level'] != ADMIN) && ($userdata['user_level'] != MOD))
{
// Normal users and guests...
$message = '';
// If you want to hide the post text, just comment this line!
$message = $postrow[$i]['post_text'];
$message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
$is_miserable = true;
}
else
{
// We are in ADMIN and MODS case!
$message = $postrow[$i]['post_text'];
if ($postrow[$i]['ct_miserable_user'] == 1)
{
//$message .= '<br /><br />' . $lang['ctracker_mu_success_bbc'];
$message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
$is_miserable = true;
}
}
{
// The user is watching its own post... do nothing here!
$message = $postrow[$i]['post_text'];
}
elseif (($postrow[$i]['ct_miserable_user'] == 1) && ($userdata['user_level'] != ADMIN) && ($userdata['user_level'] != MOD))
{
// Normal users and guests...
$message = '';
// If you want to hide the post text, just comment this line!
$message = $postrow[$i]['post_text'];
$message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
$is_miserable = true;
}
else
{
// We are in ADMIN and MODS case!
$message = $postrow[$i]['post_text'];
if ($postrow[$i]['ct_miserable_user'] == 1)
{
//$message .= '<br /><br />' . $lang['ctracker_mu_success_bbc'];
$message .= "\n\n" . $lang['ctracker_mu_success_bbc'];
$is_miserable = true;
}
}
Subject: Re: Icy 27c Miserable User
I have a question: this hack also works on this kind of forum (link)?
if yes, where can I get the script (or whatever that code is)?
if yes, where can I get the script (or whatever that code is)?
Subject: Re: Icy 27c Miserable User
the link you posted is to an invision powered board so no the hack (mod) will not work as it is it will need to be altered to fit the invision code...
maybe on invision they have something similar or you can ask someone to develop it to work for you board
maybe on invision they have something similar or you can ask someone to develop it to work for you board
Subject: Re: Icy 27c Miserable User
aw, too bad .__. well, maybe someone can make it work for my board...so again, where do I get the whole code?
anyway, thanks DWho :mricy:
DWho wrote: [View Post]
aw, too bad .__. well, maybe someone can make it work for my board...so again, where do I get the whole code?
anyway, thanks DWho :mricy:
Subject: Re: Icy 27c Miserable User
hopefully can anyone understand german :mrgreen:
the phpbb2 mod
http://www.cback.de/cback_software/...rofessional.zip
standalone version (but not up to date)
http://www.cback.de/cback_software/files/ctrack_stand_alone.zip
Chaotic wrote: [View Post]
hopefully can anyone understand german :mrgreen:
the phpbb2 mod
http://www.cback.de/cback_software/...rofessional.zip
standalone version (but not up to date)
http://www.cback.de/cback_software/files/ctrack_stand_alone.zip
Subject: Re: Icy 27c Miserable User
Exactly, LOL. I think the first time I visited that site, I closed the browser window in under five seconds. :LOL:
Subject: Re: Icy 27c Miserable User
cback page appears to be a corportive page for selling something, not for free mods for phpbb2. :? :shock:
Subject: Re: Icy 27c Miserable User
Yeah, it does appear that way.
You can find some of their phpBB2 MODS here: http://www.cback.de/downloads.php?cat=2
You can find some of their phpBB2 MODS here: http://www.cback.de/downloads.php?cat=2
Page 1 of 2
You cannot post new topicsYou cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events
This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by Icy Phoenix based on phpBB
Generation Time: 0.1227s (PHP: 16% SQL: 84%)
SQL queries: 10 - Debug Off - GZIP Enabled