Page Index Toggle Pages: 1 ... 9 10 [11] 12  Send TopicPrint
Very Hot Topic (More than 25 Replies) Board Whisper (Read 63332 times)
Christer Alexander
God Member
*****
Offline


Make my day...

Posts: 3443
Location: Lethbridge
Joined: Feb 10th, 2002
Gender: Male
Re: Board Whisper
Reply #150 - Jul 13th, 2003 at 10:57pm
Print Post  
And just what do you mean by that!?
  

Code
Select All
unless(0) { stab("LoonyPandora"); next; } 

Back to top
IP Logged
 
Javvy
Full Member
***
Offline


YaBB ROCKS!!

Posts: 207
Location: Jacksonville
Joined: Oct 7th, 2002
Gender: Male
Re: Board Whisper
Reply #151 - Jul 13th, 2003 at 11:15pm
Print Post  
Quote:
Most definitly a bug. And you, dear sir, are NOT using the latest version, in which that bug was fixed long time ago. Wink


@Christer - I'm using version 6 and it is fully installed.  What else could cause my problem?

  
Back to top
WWW  
IP Logged
 
Jazhawk
God Member
*****
Offline


I'm not always right but
I'm never wrong

Posts: 799
Location: Las Vegas
Joined: Mar 11th, 2002
Gender: Male
Re: Board Whisper
Reply #152 - Jul 13th, 2003 at 11:59pm
Print Post  
Quote:
And just what do you mean by that!?


Because generally when a support questions appear, someone will generally respond.  Unless the mod is pre-beta then you have to wait.  So I'm still waiting.

-Jazhawk
  
Back to top
IP Logged
 
Christer Alexander
God Member
*****
Offline


Make my day...

Posts: 3443
Location: Lethbridge
Joined: Feb 10th, 2002
Gender: Male
Re: Board Whisper
Reply #153 - Jul 14th, 2003 at 7:59am
Print Post  
Jazhawk: Sorry. It so happens that I have a full-time job in addition to this, and I'm not yet used to juggling two full-time activities. Which version of YaBB are you using?

Javvy wrote on Jul 13th, 2003 at 11:15pm:
@Christer - I'm using version 6 and it is fully installed.  What else could cause my problem?



Check that the Post.pl part of the mod was installed correctly, it removes all whispers.
  

Code
Select All
unless(0) { stab("LoonyPandora"); next; } 

Back to top
IP Logged
 
trader311
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 44
Location: Marlboro
Joined: Dec 30th, 2002
Gender: Male
Re: Board Whisper
Reply #154 - Jul 17th, 2003 at 3:18am
Print Post  
With all due respect, can someone please give me a hint where to start?

trader311 wrote on Jul 12th, 2003 at 4:25pm:
Not quite sure what the problem is, but I can't get this mod to work- unless it will not work with 1.1.

I downloaded version 6 (5 steps to modify 4 files- yabbc, printpage, english and post) I've added all the code.. I've checked it twelve times.

You can use the [whisper] tags, but no one can see the whisper.. not the users in general.. not the people they are intended for.  It's just as if the whispered text was never entered.    

Any ideas where to start?
Thanks Smiley

  
Back to top
WWWAIM  
IP Logged
 
Jazhawk
God Member
*****
Offline


I'm not always right but
I'm never wrong

Posts: 799
Location: Las Vegas
Joined: Mar 11th, 2002
Gender: Male
Re: Board Whisper
Reply #155 - Jul 17th, 2003 at 5:24am
Print Post  
Quote:
Jazhawk: Sorry. It so happens that I have a full-time job in addition to this, and I'm not yet used to juggling two full-time activities. Which version of YaBB are you using?


Check that the Post.pl part of the mod was installed correctly, it removes all whispers.


Yabb 1.3.1 is the board I want to install this for.

-Jazhawk
  
Back to top
IP Logged
 
Jax
Junior Member
**
Offline


Got the cover sheet for
your TPS reports?

Posts: 77
Location: Anaheim
Joined: Oct 4th, 2001
Gender: Male
Re: Board Whisper
Reply #156 - Jul 17th, 2003 at 6:58am
Print Post  
SoddOff wrote on Jun 18th, 2003 at 9:16am:
I am using the latest ver of the whisper mod (4)

Here is the code from the Load.pl for the EXP Hack I am using:
Code
Select All
### Exp Hack ###
      $oldposts = $userprofile{$user}->[6];
      if($oldposts eq $txt{'683'}) {
          $posts = 1;
          $nextlevel = 1;
      }
# Uncomment this to count negative posts as something other than negative.
# elsif ($oldposts < 0) {
#          $posts = 0;
#          $nextlevel = 1;
#      }
      else {
            $diffa = "1000000";
            $diffb = "1000000";
            $nexthighest = "0";
            $nextlowest = "0";
            $msstatcount = "0";
            while($MemStat[$msstatcount]) {
                  if($MemPostNum[$msstatcount] ne "x") {
                        $tmpa = $MemPostNum[$msstatcount] - $oldposts;
                        $tmpb = $oldposts - $MemPostNum[$msstatcount];
                        if($tmpa >= 0 && $tmpa < $diffa) {$diffa = $tmpa; $nexthighest = $MemPostNum[$msstatcount];}
                        if($tmpb >= 0 && $tmpb < $diffb) {$diffb = $tmpb; $nextlowest = $MemPostNum[$msstatcount];}
                  }  
                  ++$msstatcount;
            }
            if ($nexthighest > $nextlowest) {$nextlevel = $nexthighest - $nextlowest; $posts = $oldposts - $nextlowest;} else {$nextlevel = $oldposts; $posts = $oldposts;}
      }

      # Comment this out to use a working bar for Admins.
      if($userprofile{$user}->[7] eq 'Administrator') {$nextlevel = $posts;}

      $exp{$user} = sprintf("%.1f", $posts / $nextlevel * 100);

      if($exp{$user} == 100) { $exp{$user} = qq~<img src="$imagesdir/full_bar.gif" width="104" height="6"><br>\nGot this level beat. ;)~; } else {

          $fill_bar = int($exp{$user});
          if($fill_bar){$fill_bar = qq~<img src="$imagesdir/fill_bar.gif" width="$fill_bar" height="6">~;} else {$fill_bar = "";}

          $empty_bar = 100 - $exp{$user};
          if($empty_bar){$empty_bar = qq~<img src="$imagesdir/empty_bar.gif" width="$empty_bar" height="6">~;} else {$empty_bar = ""; }

          $exp{$user} = qq~<img src="$imagesdir/l_bar.gif" width="2" height="6">$fill_bar$empty_bar<img src="$imagesdir/r_bar.gif" width="3" height="6"><br>\nTo level: $exp{$user}% ($posts/$nextlevel)~;
      }
      $exp{$user} .= '<!-- Experience Bar Hack by Michael (mrtorrent@yahoo.com) -->';
###/Exp Hack ### 


Where do you insert this into the Load.pl file?
  

We're putting cover sheets on our TPS reports.
Back to top
WWWICQ  
IP Logged
 
Christer Alexander
God Member
*****
Offline


Make my day...

Posts: 3443
Location: Lethbridge
Joined: Feb 10th, 2002
Gender: Male
Re: Board Whisper
Reply #157 - Jul 17th, 2003 at 7:53pm
Print Post  
This is installed by another mod, the Exp Bar mod by Michael
  

Code
Select All
unless(0) { stab("LoonyPandora"); next; } 

Back to top
IP Logged
 
Jax
Junior Member
**
Offline


Got the cover sheet for
your TPS reports?

Posts: 77
Location: Anaheim
Joined: Oct 4th, 2001
Gender: Male
Re: Board Whisper
Reply #158 - Jul 19th, 2003 at 7:11am
Print Post  
Is it in the "Mods" section? I can't seem to find this hack.
  

We're putting cover sheets on our TPS reports.
Back to top
WWWICQ  
IP Logged
 
Jax
Junior Member
**
Offline


Got the cover sheet for
your TPS reports?

Posts: 77
Location: Anaheim
Joined: Oct 4th, 2001
Gender: Male
Re: Board Whisper
Reply #159 - Jul 22nd, 2003 at 8:43pm
Print Post  
I got the karma bar hack. There are a couple of files that I can't find some lines in it to replace, was ther a version before this?
  

We're putting cover sheets on our TPS reports.
Back to top
WWWICQ  
IP Logged
 
DocRST
God Member
*****
Offline


Dont get use to it!

Posts: 1846
Location: Oklahoma City
Joined: Aug 24th, 2002
Gender: Male
Re: Board Whisper
Reply #160 - Jul 28th, 2003 at 8:57pm
Print Post  
I never could get it running on my board inside YaBB.

I give.
  

Doc Cowles
Web Master
YourWebSpace.com  -  Free YaBB hosting
docrst@yahoo.com
Back to top
IP Logged
 
kender
Full Member
***
Offline


Welcome to my world

Posts: 171
Location: Great Lakes Region,
Joined: Jul 23rd, 2003
Gender: Male
Re: Board Whisper
Reply #161 - Aug 5th, 2003 at 7:57am
Print Post  
so we dont get that whisper icon?  Tongue
  
Back to top
 
IP Logged
 
kender
Full Member
***
Offline


Welcome to my world

Posts: 171
Location: Great Lakes Region,
Joined: Jul 23rd, 2003
Gender: Male
Re: Board Whisper
Reply #162 - Aug 5th, 2003 at 9:12am
Print Post  
i added whisper to my board, using ver 6.. and when i [whisper!(name)]text[/whisper] guests can still read
  
Back to top
 
IP Logged
 
milldogg
New Member
*
Offline


United we stand United
we fall

Posts: 33
Joined: Aug 10th, 2002
Re: Board Whisper
Reply #163 - Sep 6th, 2004 at 1:43pm
Print Post  
cant wait to try it out. can u use it with member guestbooks?
  
Back to top
WWW  
IP Logged
 
Valtiel
God Member
*****
Offline


Copy & paste coder

Posts: 873
Joined: Sep 5th, 2003
Gender: Male
Re: Board Whisper
Reply #164 - Sep 6th, 2004 at 9:40pm
Print Post  
Is version 6 meant as single mod or as an addition to version 5?

Coz as single mod there are several bugs in Version 6...

- People can't see their own whispers, they see a blank post
- Users to whom a whisper is NOT dedicated see NOTHING, even not a text telling them that there is a whisper but not for them
- The text variables inserted in the language file aren't even used in rest of the mod! So I guess that's why you cannot see your own whispers? The variable "$YaBBCtxt{'whsp6'}" is the only one used by the mod.
  

Proud copy & paste coder Grin
Admin @ Silent Hill Forum
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 ... 9 10 [11] 12 
Send TopicPrint