vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Community Lounge (https://vborg.vbsupport.ru/forumdisplay.php?f=13)
-   -   April fools! (https://vborg.vbsupport.ru/showthread.php?t=172525)

PoetJA-1975 04-01-2008 04:23 PM

Quote:

Originally Posted by Boofo (Post 1479748)
That is great but you should have the link go to a page that says "Gotcha!" in big letters or something. Otherwise, you might freak out some people a little more than you meant to. ;)

LOL - I do - There's a link that says Click here to read further details... -- The the 1st post has:

https://vborg.vbsupport.ru/external/2008/04/26.gif

Muuuuuuuuuuaaaaaaaaaahahaaa!

It's got some pretty fierce reactions LOL

Jacquii.

linesider 04-01-2008 04:41 PM

Quote:

Originally Posted by blazin (Post 1479744)
I made my own April Fools hack this year.

How it works:

Theres a 10% chance the user's page will load from right to left. You can still read the text, but it lays the tables out opposite and will confuse people.

As an added bonus, there's a 12.5% chance of being redirected to another website. I chose www.barbie.com. You can put whatever you want.

............
You can edit www.barbie.com with anything you want.

Make sure this plugin is set to active when you save.

Then, go into the Style Manager and edit your templates. In the header template, add this to the very beginning

Big hit - sent them to Barbie.com, Real Men Eat Quiche, GI Joe, and the pi?ce de r?sistance - WomenInWaders.com - truly every angler's dream (besides the fishin' )

Oh, and changed the postcount of the guy that posts the most to 1

Boofo 04-01-2008 04:43 PM

Quote:

Originally Posted by PoetJA-1975 (Post 1480150)
LOL - I do - There's a link that says Click here to read further details... -- The the 1st post has:

https://vborg.vbsupport.ru/external/2008/04/26.gif

Muuuuuuuuuuaaaaaaaaaahahaaa!

It's got some pretty fierce reactions LOL

Jacquii.

When I clicked that link last night it just refreshed the page for me.

Kestryll 04-01-2008 05:57 PM

Quote:

Originally Posted by blazin (Post 1479744)
I made my own April Fools hack this year.

How it works:

Theres a 10% chance the user's page will load from right to left. You can still read the text, but it lays the tables out opposite and will confuse people.

As an added bonus, there's a 12.5% chance of being redirected to another website. I chose www.barbie.com. You can put whatever you want.

Im not a real good vb modder, but this works for my vb 3.6.8:

1. Create a new plugin, call it "April Fools" or whatever name you'd like.

2. Set the hook location to style_fetch which is located under Vbulletin: General in the drop down list.

3. Add the following code:

Code:

$aprilfools = rand (1, 10 );
if ($aprilfools == '8') {
$apr1css = "
<style type=\"text/css\">
table {direction:rtl;}
table table table {direction:ltr;}
</style>
";
}

if ($aprilfools == '2') {
$apr1css = "
<script type=\"text/javascript\">
<!--
window.location = \"http://www.barbie.com\"
//-->
</script>
";
}

You can edit www.barbie.com with anything you want.

Make sure this plugin is set to active when you save.

Then, go into the Style Manager and edit your templates. In the header template, add this to the very beginning

Code:

$apr1css


Is there a way to use this to just randomly redirect users to a page without the right to left shift in the tables?

Thanks!

Rapscallion 04-01-2008 06:31 PM

Well, the card exchange thing got slightly muddled, so we effectively asked people to register their names and addresses for the christmas card exchange eight months early. Not really as good as it could be, so one of the admins set up a link in my Site News section and asked people to donate, something I've publicly said many times I would not accept.

The link redirects to a Youtube video of Rick Astley.

Rapscallion

Roxie 04-01-2008 06:34 PM

Well, I used the April Fool's hack to screw with the text on the board. Then I created a thread and used the YOU replacement to blame everyone. That went over well. lol
Then I invited everyone to use the ban hack. A few people (even my admin who I warned) ended up banning themselves. Lastly, I swapped everyone's avatars (well, the frequent/daily users). Good times.

PoetJA-1975 04-01-2008 07:25 PM

Quote:

Originally Posted by Boofo (Post 1480173)
When I clicked that link last night it just refreshed the page for me.

weird - the link is actually to a forum page in our General Chat section... I just tested it as a Guest - works fine...

Jacquii.

Boofo 04-01-2008 07:45 PM

It just didn't like me then. I'm used to that.

--------------- Added [DATE]1207082851[/DATE] at [TIME]1207082851[/TIME] ---------------

Quote:

Originally Posted by Roxie (Post 1480253)
Well, I used the April Fool's hack to screw with the text on the board. Then I created a thread and used the YOU replacement to blame everyone. That went over well. lol
Then I invited everyone to use the ban hack. A few people (even my admin who I warned) ended up banning themselves. Lastly, I swapped everyone's avatars (well, the frequent/daily users). Good times.

I did one of the random gripe generators and used the "you" hack for it and it caused quite a stir. I was almost banned from my own board until I promised to behave.

cheat-master30 04-01-2008 08:04 PM

Quote:

Originally Posted by blazin (Post 1479744)
I made my own April Fools hack this year.

How it works:

Theres a 10% chance the user's page will load from right to left. You can still read the text, but it lays the tables out opposite and will confuse people.

As an added bonus, there's a 12.5% chance of being redirected to another website. I chose www.barbie.com. You can put whatever you want.

Im not a real good vb modder, but this works for my vb 3.6.8:

1. Create a new plugin, call it "April Fools" or whatever name you'd like.

2. Set the hook location to style_fetch which is located under Vbulletin: General in the drop down list.

3. Add the following code:

Code:

$aprilfools = rand (1, 10 );
if ($aprilfools == '8') {
$apr1css = "
<style type=\"text/css\">
table {direction:rtl;}
table table table {direction:ltr;}
</style>
";
}

if ($aprilfools == '2') {
$apr1css = "
<script type=\"text/javascript\">
<!--
window.location = \"http://www.barbie.com\"
//-->
</script>
";
}

You can edit www.barbie.com with anything you want.

Make sure this plugin is set to active when you save.

Then, go into the Style Manager and edit your templates. In the header template, add this to the very beginning

Code:

$apr1css

I did this, but did it every 1 in five times...

Brad 04-01-2008 09:07 PM

Quote:

Originally Posted by Shazz (Post 1461213)
Release a hack that is "unbeliveable" and people try it then it looks like it just crashed there site with errors yet it really didn't lol

Been there, done that, got the t-shirt.

I don't recommend it.


All times are GMT. The time now is 05:06 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01598 seconds
  • Memory Usage 1,755KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete