Icy Phoenix
Old Support Topics - Icy 27c Miserable User
bloke [ Mon 06 Apr, 2009 12:19 ]
Post subject: Icy 27c Miserable User
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

Chaotic [ Fri 17 Apr, 2009 20:18 ]
Post 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:
'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>',
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.

TheSteffen [ Sat 18 Apr, 2009 15:51 ]
Post 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.
I can confirm this... Looks stupit to me. Isn't it better the miserable user would see there own posts like they are?
spydie [ Sat 18 Apr, 2009 16:23 ]
Post 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.
New Player [ Sat 18 Apr, 2009 17:26 ]
Post 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

Mighty Gorgon [ Sat 18 Apr, 2009 18:38 ]
Post 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

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.
Mighty Gorgon [ Sat 18 Apr, 2009 18:47 ]
Post subject: Re: Icy 27c Miserable User
I just had a quick look...
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;
}
}
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;
}
}
lostpophet [ Sun 19 Apr, 2009 12:15 ]
Post 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)?
DWho [ Sun 19 Apr, 2009 12:58 ]
Post 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
lostpophet [ Sun 19 Apr, 2009 13:24 ]
Post 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
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

Chaotic [ Sun 19 Apr, 2009 22:31 ]
Post subject: Re: Icy 27c Miserable User
Chaotic [ Mon 20 Apr, 2009 14:24 ]
Post 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.

novice programmer [ Tue 21 Apr, 2009 20:50 ]
Post subject: Re: Icy 27c Miserable User
cback page appears to be a corportive page for selling something, not for free mods for phpbb2.

New Player [ Wed 22 Apr, 2009 10:32 ]
Post subject: Re: Icy 27c Miserable User
cback page appears to be a corportive page for selling something, not for free mods for phpbb2.

since yesterday, he sell his new forum for a unrealistic price

Mighty Gorgon [ Thu 30 Apr, 2009 13:46 ]
Post subject: Re: Icy 27c Miserable User
since yesterday, he sell his new forum for a unrealistic price

What do you mean?
TheSteffen [ Thu 30 Apr, 2009 14:09 ]
Post subject: Re: Icy 27c Miserable User
I think he mean, that you can buy the CBACK Forum software for 79 € per yaer.
But the Cracker Tracker for phpBB2 is still free
http://www.cback.de/downloads.php?cat=2
Mighty Gorgon [ Thu 30 Apr, 2009 14:48 ]
Post subject: Re: Icy 27c Miserable User
Ok I've just realized he created a new forum platform.
Thanks.
Informpro [ Thu 30 Apr, 2009 20:22 ]
Post subject: Re: Icy 27c Miserable User
Yes, He've created a new platform (just a day before I've decided to download Orion on phpBB2 for test mod =[)
79€/Year is T00 !!