| Welcome, Guest |
You have to register before you can post on our site.
|
| 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
|
|
|
| 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
|
|
|
| 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 * 8 / 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;
|
|
|
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!!
|
|
|
| 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.
|
|
|
| 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
|
|
|
|