Mar 30, 2008, 01:01 AM
Well this is a fun one for April 1st.
It randomizes the text into 8 possible crazy displays.
1. Reverse
2. Left to Right & Reverse
3. Letters Spread out
4. Small text
5. Big text
6. Total randomized letters
7. Line Through all text
8. All Uppercase
This uses CSS or PHP functions so it should be browser compatible across the board.
To install just upload and activate (wait till April 1 though).
If you want the foolish posts to appear more or less often you can edit the rand string on line 46.
Edit the 15...do not make it lower than 8 though. If you want the messages to be messed up very often I suggest 10 and if you want it very few times ....maybe 20 or 25. You can play with settings to your desire.
Also if you want this to be ONLY in certain forums this is what you add BEFORE the $rand line above:
// replace XX with your forum id...that line will make the messages crazy ONLY in the forum you specify. Maybe your off-topic?
If you are knowledgable with arrays you can certainly do more with this. The plugin concept is very simple.
You can DEMO this on Mybb Central Test Forums.
http://www.mybbcentral.com/showthread.php?tid=568 (refresh for different effects)
It randomizes the text into 8 possible crazy displays.
1. Reverse
2. Left to Right & Reverse
3. Letters Spread out
4. Small text
5. Big text
6. Total randomized letters
7. Line Through all text
8. All Uppercase
This uses CSS or PHP functions so it should be browser compatible across the board.
To install just upload and activate (wait till April 1 though).
If you want the foolish posts to appear more or less often you can edit the rand string on line 46.
Code:
$rand = mt_rand(1,15); // EDIT HEREEdit the 15...do not make it lower than 8 though. If you want the messages to be messed up very often I suggest 10 and if you want it very few times ....maybe 20 or 25. You can play with settings to your desire.
Also if you want this to be ONLY in certain forums this is what you add BEFORE the $rand line above:
Code:
if( $forum['fid'] != XX) { return $message; }If you are knowledgable with arrays you can certainly do more with this. The plugin concept is very simple.
You can DEMO this on Mybb Central Test Forums.
http://www.mybbcentral.com/showthread.php?tid=568 (refresh for different effects)

