Reload
Top Stats
Latest Blog Entries
1 I married my pr2 bo... lalafox 23
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... Wed, 4:20 Camer the Dragon Village Games
Mia’s Surprise Wed, 2:43 bls1999 Survivor
Last post wins! Wed, 1:31 Resarekt Village Games
Challenge 10: Race to the Polls Tue, 20:26 Sushie Survivor
What are you listening to right... Tue, 20:06 JEEJAYEM Multimedia Masterpieces
2026 FIFA World Cup Tue, 18:59 Master Raiden Game Day
Survivor: Jiggmin’s Revival Mon, 19:11 Resarekt Survivor
[Forum]  Thread has a "stuck pos... Sun, 19:11 Mia Bugs and Suggestions
[Finished] PR2 Live Stream – Ju... Sun, 6:41 Resarekt Announcements
Lets get everyone to 100m ! Sun, 1:19 Addy Folding at Home
Challenge 9: Pass the Coconut Fri, 16:15 Sushie Survivor
PANDORA’S BOX 2: CIVIL WAR. Thu, 12:48 Sushie Survivor
[Finished] PR2 Live Stream – Ju... Thu, 1:50 bls1999 Announcements
Recommend good movies Mon, 12:11 Resarekt Discussion Hall
3 word story Sat, 19:15 Sunlight1232 Village Games
What situation has got you feel... Thu, 10:41 Sunlight1232 Discussion Hall
METAL MEGATHREAD Wed, 0:27 JEEJAYEM Multimedia Masterpieces
[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

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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,381
» Latest member: top1gamebaicom1
» Forum threads: 4,482
» Forum posts: 115,407

Full Statistics

Online Users
There are currently 330 online users.
» 2 Member(s) | 326 Guest(s)
Bing, Google, glxs, top1gamebaicom1

Latest Threads
Let's get this thread to ...
Forum: Village Games
Last Post: Camer the Dragon
32 minutes ago
» Replies: 38,982
» Views: 12,269,249
Mia’s Surprise
Forum: Survivor
Last Post: bls1999
2 hours ago
» Replies: 5
» Views: 115
Last post wins!
Forum: Village Games
Last Post: Resarekt
3 hours ago
» Replies: 2,621
» Views: 2,448,352
Challenge 10: Race to the...
Forum: Survivor
Last Post: Sushie
8 hours ago
» Replies: 18
» Views: 663
What are you listening to...
Forum: Multimedia Masterpieces
Last Post: JEEJAYEM
8 hours ago
» Replies: 388
» Views: 470,821
2026 FIFA World Cup
Forum: Game Day
Last Post: Master Raiden
9 hours ago
» Replies: 68
» Views: 2,136
I married my pr2 boyfrien...
Forum: Blogs
Last Post: Adulock77
22nd June 2026, 7:19 PM
» Replies: 23
» Views: 2,070
Survivor: Jiggmin’s Reviv...
Forum: Survivor
Last Post: Resarekt
22nd June 2026, 7:11 PM
» Replies: 1,334
» Views: 114,166
Thread has a "stuck post"
Forum: Bugs and Suggestions
Last Post: Mia
21st June 2026, 7:11 PM
» Replies: 15
» Views: 649
[Finished] PR2 Live Strea...
Forum: Announcements
Last Post: Resarekt
21st June 2026, 6:41 AM
» Replies: 4
» Views: 260

 
  Snowy JV
Posted by: bls1999 - 9th December 2018, 8:44 PM - Forum: Announcements - Replies (4)

In honor of it being winter in most of the world (looking at you, @Nemo Nation), I've changed the normal bubbles to something a little more appropriate. Stay warm!

Print this item

  Which Youtube Rewind Was Your Favorite?
Posted by: Eat Me! - 9th December 2018, 4:22 PM - Forum: Discussion Hall - Replies (5)

Feel free to discuss and also rank them in order from Best to Worst below.

Print this item

  PHP Find/Replace Script
Posted by: bls1999 - 8th December 2018, 5:22 AM - Forum: Coding and Development - Replies (2)

When sifting through old code trying to find different names of things, I've found it extremely useful and time-saving to run a PHP script from the command line that searches through all the files in a directory on my computer for a search term. On this particular project, I have it set to sift through ActionScript files only, but you can set it to anything. Here it is, if anyone's interested:

PHP Code:
<?php

$base_path 
__DIR__ "/fla";

if (!isset(
$argv[2])) {
    
$argv[2] = false;
}

$files getDirContents($base_path);
search_files($files);
die();

function 
getDirContents($dir, &$results = array()){
    
$files scandir($dir);

    foreach(
$files as $key => $value){
        
$path realpath($dir.DIRECTORY_SEPARATOR.$value);
        if(!
is_dir($path)) {
            
$results[] = $path;
        } else if(
$value != "." && $value != "..") {
            
getDirContents($path$results);
            
$results[] = $path;
        }
    }

    return 
$results;
}

function 
search_files($files)
{
    global 
$argv;

    
$continue false;
    
$filesChanged 0;
    foreach (
$files as $file) {
        
$file_path $file;
        if (
substr($file, -33) == ".as") {
            
$find $argv[1];
            
$strict $argv[2] == 'true' true false;
            
$file file_get_contents($file_path);
            if (
$strict === false && strpos($file$find) !== false && !isset($argv[3])) {
                echo 
"$file_path\n";
            } elseif (
$strict === true && preg_match("/\b$find\b/"$file) && !isset($argv[3])) {
                echo 
"$file_path\n";
            } elseif (isset(
$argv[3])) {
                if (
$continue === false) {
                    echo 
"\nReplace \"$find\" with \"$argv[3]\"?\nWARNING: THIS CANNOT BE UNDONE.\n\nContinue? (yes/no): ";
                    
$reply trim(strtolower(fgets(fopen("php://stdin","r"))));
                    if (
$reply == 'true' || $reply == 't' || $reply == 'yes' || $reply == 'y') {
                        
$continue true;
                        echo 
"\n";
                    } else {
                        break;
                    }
                }
                if (
$strict === false && strpos($file$find) !== false) {
                    
file_put_contents($file_pathstr_replace($find$argv[3], $file));
                    echo 
"$file_path\n";
                    
$filesChanged++;
                } elseif (
$strict === true && preg_match("/\b$find\b/"$file)) {
                    
file_put_contents($file_pathpreg_replace("/\b$find\b/"$argv[3], $file));
                    echo 
"$file_path\n";
                    
$filesChanged++;
                } else {
                    continue;
                }
            }
        }
    }
    
$continue false;
    if (
$filesChanged 0) {
        echo 
"\nTotal files changed: $filesChanged\n\n";
    } else {
        if (!isset(
$argv[3])) {
            echo 
"\n";
        } else {
            echo 
"\nNo files to be changed.\n\n";
        }
    }


The arguments are:
[0] = File
[1] = Find
[2] = Strict? (yes/true uses preg_match to match exact words, no/false uses strpos for a character match)
[3] = Replace

A sample run on the command line for me would be:

Code:
php /Users/ben/Projects/SuperSecretThings/search.php "Example" true

That would give me a strict, case-sensitive result for the complete word "Example" as opposed to also getting a result for "ExampleData".

Anyway, yep. I hope y'all learned something and/or have a use for the code in your own projects.

Print this item

  PR2 Client Bug Reporting Thread
Posted by: bls1999 - 6th December 2018, 5:34 AM - Forum: Bugs and Suggestions - Replies (28)

Have you been plagued by a client bug since the dawn of time? Well, now's your chance to get it fixed!

Use this thread to post about miscellaneous PR2 client bugs. While I'm rehabilitating the code, I'll try to patch as many as I can.

I've already patched quite a few, including:
- Kong badges
- Prize popup flavor text
- Chat scrollbar/arrows being wonky
- Game music resetting if you close the menu without choosing a new song
- Art being cleared when loading a level with draw BGs off
- Sir feet outline in truly invisible/bubble feet
- "Phantom" levels appearing below the clickable area and messing with the placement of the play/cancel menu you get when entering a slot

Looking forward to squashing some years-old bugs!

Print this item

  Happy Hour Locator??
Posted by: Jeffery - 5th December 2018, 7:57 AM - Forum: Platform Racing 2 - Replies (6)

Title says it all, just wondering if anyone has a link to a working one... thanks

Print this item

Embarrassed New stuff for add, next examples...
Posted by: FranLamark - 4th December 2018, 9:57 PM - Forum: PR2 Suggestions - No Replies

-More music...
-New hats...
-More blocks...
-More bodyparts...
-More mods/admins...
-More jiggmin...


Long live to platform racing 2...

Print this item

  I'm making a game
Posted by: Bluelightning - 1st December 2018, 8:42 PM - Forum: Blogs - Replies (4)

Remember when I said I was going to make a game?

I'm not sorry. 


https://www.patreon.com/bonzane/overview

I have a team working with me on this one! If you want to contribute I will use your work and credit you!

If you want to download the latest version (alpha 0.3) here it is: https://dm-games.itch.io/gamers-vs-furries-alpha
This version is from a while back so expect alpha 0.4 soon

Print this item

Smile Pawn Game / Pawn Tactics
Posted by: ZXD - 1st December 2018, 6:00 PM - Forum: Video Games - No Replies

Not sure if you guys ever tried this game out or not, but Pawn Game was a classic 2D multiplayer flash shooter where you could play against a couple of buddies on maps and play games like Capture the Flag and deathmatch. Pawn Tactics is the successor to the game that used to be very popular and I used to play it a lot back when I was in middle school as well. Back in 2014, the site and the games were shut down due to lack of interest and the game owners just didn't have the time to keep up with it but recently a couple new admins were able to bring the site back to life again and the games are now playable as well. If you guys have played these games before, they are back again! 

You can check them out in the following links below. They host a game night every Sunday night from 6 PM to Midnight Central time so that would be an awesome time to check it out.

Sandboxd.com
Pawn Game Link
Pawn Tactics Link

[Image: images?q=tbn:ANd9GcTIFpwQUIPvtL8bkYXNVCi...YK21jvV8xA]

Print this item

  New Computer
Posted by: Fresh Cookies - 30th November 2018, 5:09 AM - Forum: Blogs - Replies (9)

Hope you're ready for some more folding Smile Time to take my place towards the top again.

Print this item

  Hi everyone
Posted by: BigBoi33 - 27th November 2018, 3:02 AM - Forum: Welcoming Gates - Replies (2)

Hi, just decided to join the forums, how's it going for everyone?

Print this item