There is a nice tool for greasemonkey (only firefox supported) for Monopoly City Streets. Thanks to the developers! You can download it here: http://userscripts.org/scripts/show/57923
You just have to install greasemonkey and that tool!
Its functions are:
- Street autobuilder full or custom number building
- Sell buildins one click
- Sorting own streets
- Compare Buildings
- Streets Panel: filter, sort
15. Oktober 2009
14. Oktober 2009
PHP Script to find streets with value above 10 mio!
This PHP script will help you to find streets which value is above 10 mio!!!
It will automatically save the streets in a text file!
You just have to save this in a text document and execute it as a php file!
And it works for sure!
//
// This script saves all free streets which have a value above 10 mio in a text file.
//
// To use this script, you will need to execute this file as a php data.
// (see [url]http://www.php.net[/url] or windows.php.net/download )
//
// You have to know the coordinates from the area you want to search!
// Its easy if you use google!
//
// Put the upper left corner coordinates in "$from"
//
// and put the lower right corner coordinates in "$to"
//
// now execute this file using php! You don't have to do anything else!
//
// WARNING: To use the links from the text file you have to remove the dots from the coordinates!
//
$from = array( 42.94 , -124.14 ); // Coordinates from the upper left corner
$to = array( 31.35 , -121.23 ); // Coordinates from the lower right corner
// ****************************************************************
// Don't change anything here!
$from[0]=round($from[0]*100);
$from[1]=round($from[1]*100);
$to[0]=round($to[0]*100);
$to[1]=round($to[1]*100);
$lt1 = min($from[0],$to[0]);
$lt2 = max($from[0],$to[0]);
$lg1 = min($from[1],$to[1]);
$lg2 = max($from[1],$to[1]);
function get_content($host,$uri,$postdata="") {
$da = fsockopen('www.monopolycitystreets.com', 80, $errno, $errstr);
if (!$da) {
die("$errstr ($errno)");
} else {
$salida ="GET $uri HTTP/1.1\r\n";
$salida .="Host: $host\r\n";
$salida .="User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 10.00\r\n";
$salida .="Connection: close\r\n\r\n";
fwrite($da, $salida);
while (!feof($da))
$response.=fgets($da, 128);
return $response;
}
}
set_time_limit(0);
echo "Erstelle monopoly_usa1_".$lt1."_".$lg1.".txt".'
';
$lh = fopen("monopoly_usa1_".$lt1."_".$lg1.".txt", 'w');
for ($long=$lg1;$long < $lg2;$long++) {
$s = 100;
for ($lat=$lt1;$lat < $lt2; $lat++) {
if ($s++ > 99) { $s=1; echo sprintf('%1.2f',($lat/100)).','.sprintf('%1.2f',($long/100)).'
'; sleep(10); }
$url = "/buy/getstreetstobuy?lat=".$lat."00000&lng=".$long."00000";
$data = get_content("www.monopolycitystreets.com",$url);
$roads = split("}",$data);
foreach ($roads AS $road) {
$name = "";
$status = "";
$owner = "";
$price = "";;
list($head,$content) = split("\r\n\r\n",$road);
if (!$content) { $content=$head; }
$data = split("{",$content);
if ($data[2]) {
list($lg,$lt) = split("/",$data[1]);
$lines = split(",",$data[2]);
} else {
list($lg,$lt) = split("/",$data[0]);
$lines = split(",",$data[1]);
}
$lg = str_replace(",","", $lg);
$lg = substr($lg,1,strlen($lg)-2);
$lt = str_replace(":","", $lt);
foreach($lines AS $line) {
list($id,$var) = split(":",$line);
if ($id == '"n"') { $name = $var; }
elseif ($id == '"s"') { $status = $var; }
elseif ($id == '"o"') { $owner = $var; }
elseif ($id == '"p"') { $price = $var; }
}
if (($status) AND ($status == '"free"')) {
$preis = intval(str_replace('"', "", $price));
if ($preis > 10000) {
$csv = str_replace("\" "," ", "www.monopolycitystreets.com/game.html#".(str_replace(".","",$lg)/10000000)."z".(str_replace(".","",$lt)/10000000)." \r\n
\t$name \r\n
\t$status \r\n
\t$owner \r\n
\t".$preis."000 \r\n\r\n");
fwrite($lh, $csv);
}
if ($preis > 1000) {
echo "These streets are available:
";
echo "Coordinates: ".($lg/10000000).",".($lt/10000000)."
";
echo "Name: \t$name
";
echo "Status: \t$status
";
echo "Owner: \t$owner
";
echo "Price: \t".$preis."000
";
}
}
}
}
}
fclose($lh);
?>
It will automatically save the streets in a text file!
You just have to save this in a text document and execute it as a php file!
And it works for sure!
//
// This script saves all free streets which have a value above 10 mio in a text file.
//
// To use this script, you will need to execute this file as a php data.
// (see [url]http://www.php.net[/url] or windows.php.net/download )
//
// You have to know the coordinates from the area you want to search!
// Its easy if you use google!
//
// Put the upper left corner coordinates in "$from"
//
// and put the lower right corner coordinates in "$to"
//
// now execute this file using php! You don't have to do anything else!
//
// WARNING: To use the links from the text file you have to remove the dots from the coordinates!
//
$from = array( 42.94 , -124.14 ); // Coordinates from the upper left corner
$to = array( 31.35 , -121.23 ); // Coordinates from the lower right corner
// ****************************************************************
// Don't change anything here!
$from[0]=round($from[0]*100);
$from[1]=round($from[1]*100);
$to[0]=round($to[0]*100);
$to[1]=round($to[1]*100);
$lt1 = min($from[0],$to[0]);
$lt2 = max($from[0],$to[0]);
$lg1 = min($from[1],$to[1]);
$lg2 = max($from[1],$to[1]);
function get_content($host,$uri,$postdata="") {
$da = fsockopen('www.monopolycitystreets.com', 80, $errno, $errstr);
if (!$da) {
die("$errstr ($errno)");
} else {
$salida ="GET $uri HTTP/1.1\r\n";
$salida .="Host: $host\r\n";
$salida .="User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 10.00\r\n";
$salida .="Connection: close\r\n\r\n";
fwrite($da, $salida);
while (!feof($da))
$response.=fgets($da, 128);
return $response;
}
}
set_time_limit(0);
echo "Erstelle monopoly_usa1_".$lt1."_".$lg1.".txt".'
';
$lh = fopen("monopoly_usa1_".$lt1."_".$lg1.".txt", 'w');
for ($long=$lg1;$long < $lg2;$long++) {
$s = 100;
for ($lat=$lt1;$lat < $lt2; $lat++) {
if ($s++ > 99) { $s=1; echo sprintf('%1.2f',($lat/100)).','.sprintf('%1.2f',($long/100)).'
'; sleep(10); }
$url = "/buy/getstreetstobuy?lat=".$lat."00000&lng=".$long."00000";
$data = get_content("www.monopolycitystreets.com",$url);
$roads = split("}",$data);
foreach ($roads AS $road) {
$name = "";
$status = "";
$owner = "";
$price = "";;
list($head,$content) = split("\r\n\r\n",$road);
if (!$content) { $content=$head; }
$data = split("{",$content);
if ($data[2]) {
list($lg,$lt) = split("/",$data[1]);
$lines = split(",",$data[2]);
} else {
list($lg,$lt) = split("/",$data[0]);
$lines = split(",",$data[1]);
}
$lg = str_replace(",","", $lg);
$lg = substr($lg,1,strlen($lg)-2);
$lt = str_replace(":","", $lt);
foreach($lines AS $line) {
list($id,$var) = split(":",$line);
if ($id == '"n"') { $name = $var; }
elseif ($id == '"s"') { $status = $var; }
elseif ($id == '"o"') { $owner = $var; }
elseif ($id == '"p"') { $price = $var; }
}
if (($status) AND ($status == '"free"')) {
$preis = intval(str_replace('"', "", $price));
if ($preis > 10000) {
$csv = str_replace("\" "," ", "www.monopolycitystreets.com/game.html#".(str_replace(".","",$lg)/10000000)."z".(str_replace(".","",$lt)/10000000)." \r\n
\t$name \r\n
\t$status \r\n
\t$owner \r\n
\t".$preis."000 \r\n\r\n");
fwrite($lh, $csv);
}
if ($preis > 1000) {
echo "These streets are available:
";
echo "Coordinates: ".($lg/10000000).",".($lt/10000000)."
";
echo "Name: \t$name
";
echo "Status: \t$status
";
echo "Owner: \t$owner
";
echo "Price: \t".$preis."000
";
}
}
}
}
}
fclose($lh);
?>
5. Oktober 2009
Ever got that message?
Last time when I was playing the game, I got an interesting message. I thought at first it was meant serious, but I could make more buildings on that street after displaying the message. A nice joke (or maybe a bug). Make yourself an idea. Anyway here is the pic!
Very Sorry...
Now when you read the latest Posts in Monopoly City Streets, you can see that there are sites where you can cheat. Some people try to explain that this game doesn't make fun anymore without cheats and others say its the only way to get expensive streets. We just want to say that these people have a big serious problem, as they can't understand that this games purpose is to make advertisement for the real board game from monopoly. Sure its buggy but they try their best and don't forget its free. So don't cheat as they will catch you, maybe not today but very soon. So don't listen to dumb people telling you to cheat, because there will be always honest players!
3. Oktober 2009
Some basic things and note to the statistics!
Use this Link to convert the language
http://translate.google.de/translate?hl=en&sl=de&u=http%3A%2F%2Fmonopolycitystreetstrade.blogspot.com%2F
We see there is international interest in this blog, so we try to make you understand this blog even if you can't speak english that good!
Now the statistics have been released quite a while and you should know that we will send this to Mr.Monopoly, promise!
And these statistics actually show, how much the players like to play Monopoly City Streets even if it is a little bit buggy... Now we hope they will increase the server speed as they have reduced the number of the cheaters a lot!
To Monopoly City Streets keep up the good things!
http://translate.google.de/translate?hl=en&sl=de&u=http%3A%2F%2Fmonopolycitystreetstrade.blogspot.com%2F
We see there is international interest in this blog, so we try to make you understand this blog even if you can't speak english that good!
Now the statistics have been released quite a while and you should know that we will send this to Mr.Monopoly, promise!
And these statistics actually show, how much the players like to play Monopoly City Streets even if it is a little bit buggy... Now we hope they will increase the server speed as they have reduced the number of the cheaters a lot!
To Monopoly City Streets keep up the good things!
2. Oktober 2009
Still available streets in Monopoly
1. Oktober 2009
What I like and hate in Monopoly City Streets
Now, we have some votes on the statistics, we wanted to know what you are actually thinking. What do you love in that game and what do you hate? Maybe you noticed that they will improve that game again and gave us the note:
Thank you for your continued patience as we work to improve the game.
Its now more than 3 hours since the servers went down. But still let them the time as we hope they will fix the chancecard feuture.
Maintenance
The site will be going down for maintenance at approximately 15:00 GMT today, for approximately 3 hours.Thank you for your continued patience as we work to improve the game.
Its now more than 3 hours since the servers went down. But still let them the time as we hope they will fix the chancecard feuture.
Abonnieren
Posts (Atom)



