Reload
Top Stats
Latest Blog Entries
1 I married my pr2 bo... lalafox 22
2 Game Design Ramblin... Sunlight1232 3
3 I JUST CAN’T 💀 Different 5
4 Lots of Life Change... Resarekt 3
5 If you are active o... TheBreeze 3
6 (Maybe) Final Updat... Chma 1
7 MY ACTIONS Ransom5hunna 7
8 A Board Game Sunlight123 7
9 Boo! gemj 0
10 DEATHBYGABE1 Different 0
Top Referrers
1 Stxtics 24
2 Ashley766 22
3 Stunt 21
4 a7x3 13
5 TRUC 7
6 ZXD 7
7 Camer the Dragon 5
8 Daft Fool 5
9 tadtad 5
10 XeNo 5
Latest Posts
Topic Date/Time  Last Sender Forum
Let's get this thread to a mill... Fri, 18:01 David Village Games
Survivor: Jiggmin’s Revival Fri, 14:31 Sushie Survivor
PANDORA’S BOX 2: CIVIL WAR. Fri, 14:08 Sushie Survivor
2026 FIFA World Cup Thu, 23:48 Camer the Dragon Game Day
Recommend good movies Thu, 18:17 Mia Discussion Hall
What are you listening to right... Thu, 14:39 Sunlight1232 Multimedia Masterpieces
What situation has got you feel... Thu, 10:41 Sunlight1232 Discussion Hall
[Forum]  Thread has a "stuck pos... Thu, 9:43 Mia Bugs and Suggestions
METAL MEGATHREAD Wed, 0:27 JEEJAYEM Multimedia Masterpieces
Last post wins! Tue, 16:41 LCPD Village Games
[Game]  Musical Evenizer Highsco... Mon, 20:46 bls1999 Bugs and Suggestions
Rapid-fire Twist: CHANGES Mon, 10:45 Sushie Survivor
Challenge 8: Day at the Races Sun, 0:21 Sushie Survivor
PR2 Email Bug Sat, 20:37 bls1999 Announcements
Word of the Post Wed, 8:23 Sunlight1232 Village Games
Challenge 7: Doors Sat, 8:40 Sushie Survivor
Lets get everyone to 100m ! Sat, 2:11 Addy Folding at Home
Would you rather... Fri, 2:56 Sunlight1232 Village Games
Level of the Week! (PR2) Thu, 22:43 Dangevin Platform Racing 2
WELCOME TO THE MERGE! Wed, 19:26 Sushie Survivor
Get Back Challenge: Post-a-thon Tue, 23:00 Sushie Survivor

Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,251
» Latest member: w88zorocom
» Forum threads: 4,473
» Forum posts: 109,872

Full Statistics

Online Users
There are currently 535 online users.
» 5 Member(s) | 526 Guest(s)
Applebot, Bing, Google, Yandex, Mia

Latest Threads
Let's get this thread to ...
Forum: Village Games
Last Post: David
53 minutes ago
» Replies: 34,089
» Views: 11,947,157
Survivor: Jiggmin’s Reviv...
Forum: Survivor
Last Post: Sushie
4 hours ago
» Replies: 1,314
» Views: 104,270
PANDORA’S BOX 2: CIVIL WA...
Forum: Survivor
Last Post: Sushie
4 hours ago
» Replies: 16
» Views: 492
2026 FIFA World Cup
Forum: Game Day
Last Post: Camer the Dragon
Yesterday, 11:48 PM
» Replies: 6
» Views: 99
Recommend good movies
Forum: Discussion Hall
Last Post: Mia
Yesterday, 6:17 PM
» Replies: 22
» Views: 24,231
What are you listening to...
Forum: Multimedia Masterpieces
Last Post: Sunlight1232
Yesterday, 2:39 PM
» Replies: 377
» Views: 464,720
What situation has got yo...
Forum: Discussion Hall
Last Post: Sunlight1232
Yesterday, 10:41 AM
» Replies: 13
» Views: 7,043
Thread has a "stuck post"
Forum: Bugs and Suggestions
Last Post: Mia
Yesterday, 9:43 AM
» Replies: 12
» Views: 143
METAL MEGATHREAD
Forum: Multimedia Masterpieces
Last Post: JEEJAYEM
10th June 2026, 12:27 AM
» Replies: 61
» Views: 45,234
Last post wins!
Forum: Village Games
Last Post: LCPD
9th June 2026, 4:41 PM
» Replies: 2,612
» Views: 2,418,063

 
  Put PR2 on games page
Posted by: Stxtics - 20th December 2017, 7:21 PM - Forum: Bugs and Suggestions - Replies (6)

Title

Print this item

  Hi
Posted by: lp - 19th December 2017, 7:45 AM - Forum: Welcoming Gates - Replies (8)

hi am lp and am sorry for my outburst on the site. am over it now lets move on and be happ k?

also can i has lp name back pl0x


thnx bye

Print this item

  Funny PR2 Chat Messages
Posted by: bls1999 - 18th December 2017, 9:57 PM - Forum: Platform Racing 2 - Replies (26)

Ever seen a message in the chatroom that made you chuckle? Post it here!

Print this item

  Good old configurable PR2 simming page
Posted by: aaaaaa123456789 - 17th December 2017, 10:55 PM - Forum: Coding and Development - No Replies

For a long time, there was a page on acidch.at/multipr2.php that allowed loading an arbitrary number of instances of PR2 in a configurable layout. Originated as a prank (trying to make someone load 25,000 instances of PR2, which would crash most setups), the page actually survived and was useful to quite a few people.

That page has been down for a while, for a few reasons. I happened to find the code for it, so I figured I'd share it; someone might be able to do something nice with it.

Here:

PHP Code:
<?php

function pr2code ($width$height) {
 
 $width = (int) $width;
 
 if ($width <= 0) return false;
 
 $height = (int) $height;
 
 if ($height <= 0) return false;
 
 return '<embed width="' . (string) $width '" height="' . (string) $height 
 
        '" base="http://external.kongregate-games.com/gamez/0001/0110/live/" ' .
 
        'src="http://external.kongregate-games.com/gamez/0001/0110/live/embeddable_10110.swf"' .
 
        'type="application/x-shockwave-flash"></embed>';
}

function 
repeat ($rows$cols$content) {
 
 $rows = (int) $rows;
 
 $cols = (int) $cols;
 
 if (($rows 0) or ($cols 0)) return false;
 
 $content = (string) $content;
 
 $line str_repeat($content$cols);
 
 if ($rows 1)
 
   $result str_repeat($line '<br />'$rows 1);
 
 else
    $result 
"";
 
 if ($rows$result .= $line;
 
 return $result;
}

function 
homepage () {
 
 $uri $_SERVER['PHP_SELF'];
 
 return <<<code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <title>Multiple PR2s</title>
  </head>
  <body>
    <center>
      <h2>Multiple PR2s</h2>
      <br />
      Enter the configuration you want:<br />
      <br />
      <form action="
$uri" method="get">
        <table>
          <tr>
            <td align="right">Rows:</td>
            <td align="left"><input type="text" name="rows" value="1" /></td>
          </tr>
          <tr>
            <td align="right">Columns:</td>
            <td align="left"><input type="text" name="cols" value="1" /></td>
          </tr>
          <tr>
            <td align="right">Width (px):</td>
            <td align="left"><input type="text" name="width" value="550" /></td>
          </tr>
          <tr>
            <td align="right">Height (px):</td>
            <td align="left"><input type="text" name="height" value="400" /></td>
          </tr>
        </table>
        <br />
        <input type="submit" value="Load" />
        <input type="reset" value="Reset" />
      </form>
    </center>
  </body>
</html>
code;
}

$pagehead = <<<'code'
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <title>Multiple PR2s</title>
  </head>
  <body>
code;

$pagefoot = <<<'code'
  </body>
</html>
code;

$r = @$_REQUEST['rows'];
$c = @$_REQUEST['cols'];
$w = @$_REQUEST['width'];
$h = @$_REQUEST['height'];

if ((
$r === null) or ($c === null)) {
 
 echo homepage();
 
 return 0;
}

if ((
$w === null) and ($h === null)) {
 
 $w 550;
 
 $h 400;
}
if (
$w === null$w $h 11 8;
if (
$h === null$h $w 11;

$line pr2code($w$h);
if (
$line === false) {
 
 echo homepage();
 
 return 0;
}
$repeat repeat($r$c$line);
if (
$repeat === false) {
 
 echo homepage();
 
 return 0;
}

echo 
$pagehead;
echo 
$repeat;
echo 
$pagefoot

Print this item

Music Producer Planet
Posted by: Jyintel - 16th December 2017, 12:25 PM - Forum: Multimedia Masterpieces - Replies (10)

*A take on a thread from old JV*

♪ ♫ Producer Planet ♪ ♫

This is a place to connect with fellow producers of the community and receive feedback regarding your crafts (constructive criticism allowed only). If you produce music of any sort, you can leave a link to your music portfolio or something to that extent (soundcloud, youtube, spotify, etc etc.) and I will create a list of JV2's very own music producers!!

JV2 Music Producers:


While you're here, I ask that you check out everyone's pages and support them, as I will be doing the same.
Enjoy the music fest!!

Print this item

  I need a background for a game
Posted by: Bluelightning - 15th December 2017, 9:48 PM - Forum: Multimedia Masterpieces - No Replies

Alright I need some artists here. Here's what I need:
A 4000 or more x 768 background, preferably with an 8 bit style.
-Outdoors
-Needs a sky
This will be included in the intro of a videogame that will be available on itch.io.

Print this item

  Broken Home Button, Disappearing Lines
Posted by: Rank - 14th December 2017, 6:40 PM - Forum: Bugs and Suggestions - Replies (1)

This button is broken.
[Image: DdquH60wSQqE4hVPNIKWPg.png]

It brings you here:
[Image: 428GrCaPQUq8NcMenVG3wA.png]



Edit:
This line also disappears in light mode
Dark
[Image: _PdTiBdAQwCESF5RSqDJSA.png]

Light
[Image: KjXCoCxmSJGi46f026YT_g.png]



EDIT AGAIN: 
These lines in the user control panel also (sortof) disappear in dark mode.

Light
[Image: 6gxbXwHoQ6uynrrP-aD6Ug.png]

Dark
[Image: 4aATtvvVSQCCr-pW_WohHA.png]

Print this item

  "Maximize" Button Bug
Posted by: Rank - 14th December 2017, 6:31 PM - Forum: Bugs and Suggestions - Replies (1)

When you click the maximize button-
[Image: Ezkbd3RbRP6gCLYMv2clQA.png]

It does maximize the box, but it puts the JV logo right in the middle of the screen.
[Image: zJ8MQswISX63hzrz8k5xXg.png]

Print this item

  Improved individual PMs
Posted by: Bluelightning - 14th December 2017, 6:20 PM - Forum: Bugs and Suggestions - Replies (1)

Can we make the PMs better so they're more like chatting ( Like texting or discord ) And less like e-mailing.

Print this item

  Rebirth of pr2
Posted by: Stunt - 14th December 2017, 1:48 AM - Forum: Platform Racing 2 - Replies (25)

Dear fellow pr2 users;

As you most definitely know, pr2 is dieing, It needs help. Proof isn't needed, but players are. http://prntscr.com/hn9zcw. There hasn't been a server with more than 30 people on it in forever. We need to get everyone to refer their friends and stimulate players in pr2. I understand his is not an easy task but we can't give up all of a sudden.


Here is a poem I wrote about pr2, hope you enjoy.

Disintegration
A long time ago, Pr2 was born
Players came, as Jiggmin started pr2 by honking his horn
more than 200 players, all having fun.
Deathmatches, Traps, Races were on the run.
Updates weekly, and new interesting content.
Minutes, Hours, Days, Years of people lives, all being spent.

Soon came scammers, hackers, and people just out to troll.
Pr2 was left with an enormous hole.
Time started passing, as players scurried.
Soon all the updates and the fun flurried.

Some players came back, hoping for more fun.
Unfortunately, pr2 had ended and their life had just begun.
The memories will last forever, but the players will not.
Pr2 will always be a memory in life plot.


The nostalgia is real.

I hope you are all crying now. #Deep

Print this item