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.
30. September 2009
Where are server problems?
List the names of the cities in the world, which suffer from server problems. This will be sent to Mr.Monopoly as the most of you only tell there are slow servers but not where. So feel free to list all the cities names where the servers are too slow.
29. September 2009
What is your idea to stop cheating?
Share your best ideas to stop cheating. Which ways of cheating is still possible in monopoly city streets? Are there some common patterns? Why there is no e-mail verification? Are you against or do you agree with it?
28. September 2009
More overall Statements
You will see that we added more statistics to our sites on the side bar. You will find them a little lower on the site. We want enough votes to show Mr.Monopoly what the most of the monopoly city streets players are thinking. So don't miss your vote!
The City of the WEEK
Now there are plenty of cities quite unknown. Like the City of the week San Antonio!!
San Antonio, Texas United States
Fortuna ST______________ 1,178,000 $
Overhill Dr ______________1,252,000 $
Castroville RD____________ 1,191,000 $
Thompson Pl ____________ 1,026,000 $
Monterey St _____________1,706,000 $
Bueno Vista St____________1,453,000 $
Buffalo St _______________1,149,000 $
Pvt RD _________________1,447,000 $
Alamo Ranch Pkwy ________1,477,000 $
Enchanted Sunset St _______1,162,000 $
Fratt RD________________1,033,000 $
So if you look for more expensive streets, look around that town!
And if you bought one of the street, please leave a comment.
San Antonio, Texas United States
Fortuna ST______________ 1,178,000 $
Overhill Dr ______________1,252,000 $
Castroville RD____________ 1,191,000 $
Thompson Pl ____________ 1,026,000 $
Monterey St _____________1,706,000 $
Bueno Vista St____________1,453,000 $
Buffalo St _______________1,149,000 $
Pvt RD _________________1,447,000 $
Alamo Ranch Pkwy ________1,477,000 $
Enchanted Sunset St _______1,162,000 $
Fratt RD________________1,033,000 $
So if you look for more expensive streets, look around that town!
And if you bought one of the street, please leave a comment.
27. September 2009
Why this Blog?
So some persons do ask why we do this. We see the potential in this game and we want to know what can be done better. Statistics and good ideas are the right steps to show them what they can do better. As the official blog is quite weird we want to have clear statements.
Follow us on Twitter!!!
Anyone having question and searching for instant answers? Want to share something with everyone, without knowing all of them?
Then check our site on twitter and follow it!
http://twitter.com/mrcitytrade
Then check our site on twitter and follow it!
http://twitter.com/mrcitytrade
Newsticker- the 1 mill $ city
Now, as some of you know this site, it would be great if you tell it other players. We have to mention that we don't hate monopoly city streets, so that any nonsense and rude comments on that game willl be deleted. This is a fansite!
We want to introduce a new thing (because the 1 mill$ week wasn't such a sucess). Each week there will be one city in the world that is shown in the thread with streets that have a value of at least 1mill $. So the 1 mill $ week becomes the 1 mill $ city. Stay tuned as the first 1 mill $ city will be released tomorrow!
We want to introduce a new thing (because the 1 mill$ week wasn't such a sucess). Each week there will be one city in the world that is shown in the thread with streets that have a value of at least 1mill $. So the 1 mill $ week becomes the 1 mill $ city. Stay tuned as the first 1 mill $ city will be released tomorrow!
Tutorial and First Steps
FAQ and the first Steps
As many persons still have some basic questions, here is a list of useful information especially for newbies.
1. Registration
To register you have to visit http://www.monopolycitystreets.com/ and search for a street in your region. Your registration name has to be unique. Afterwards in your profile, only the region where you bought your first street will be shown (you can't change it later).
2. Sign in
Click the sign in link and enter your log-in data. Never tell anyone your log-in data, because you can't change your password neither you can receive your password if you forget that. So never forget your password!
3. Gameplay
You will already know it, or maybe not... Your Goal is to buy the most expensive streets in the world with the collected rents! You have to be smart, because there is a limit due to TAX!
4. Streets
The basic elements in the game are the streets, which have a value from 100,000$ upto billions of dollar! If you buy more than 5 streets you have to pay tax (3% per street over the 5th street).
4.1. Rents
The only way (except the chance cards) to gain money is to collect rents from your streets. You just have to buy a street and put buildings on it. Every day rent is paid once. You have to log in everyday, otherwise you won't gain the rent for the day.
4.2. Streets Value
If a street is more expensive, the street will be longer! The rent varies by the value of the street, but if you buy a street that cost above 1 mill $, you will gain the most possible rent. So don't buy any streets below 1 mill $!
4.3. Buy Streets
You can only buy streets with a purple heade, because the blue ones are already sold. But you can make an offer to buy them.
4.3.1. Making an offer
If you want to make an offer for a street, you will have to pay a minimum of the streets value. The money you want to pay will be held by the bank, as long as the deal will be active. You can also add streets to your offer. If the offer hasn't been denied within 7 days by the other player, the deal will be accepted automatically.
4.4. Buildings
There are 27 types of buildings. But the best building is the grid building, why? It pays out the most rent and occupies less building space compared with others.
4.4.1 Sell Streets
If you have enough from one of your streets don't sell them too fast! At first sell the buildings on the street by clicking the x on the buildings. And then sell the street. Note you will gain more money if somebody wants to buy it (use the Threads to offer your street), because the bank only pays the half of its value!
4.5. TAX
Don't buy too many streets, as you have to pay tax for every street above the 5th street. So there is a limit of about 5+33 streets, because having more than 38 streets you will have to pay more TAX than your income will be!
4.6. Available Streets
Maybe there will not be your street available because someone already bought it, but later there will be more problems. You have to look hard for expensive streets (or look in the threads ;-). But there are always streets waiting for you buying them. Note that not every street on the world are in the game.
5. Chance Cards
These cards are given away randomly. They can give or take money or if you have luck, you will get a special building card. Place bonus buildings on your street and hazard buildings on your enemys street.
5.1. Bonus building
Placing a bonus building on one of your streets, will protect them from hazards. Try to place bonus buildings on all of your expensive streets.
5.2. Hazards and Bulldoze Cards
Place Hazard buildings on your opponents street to block their rent. With Bulldoze Cards you can remove bonus buildings from other streets, to place a hazard building. But be aware, he or she can take revenge!
5.3 Sell bonus buildings
You can't sell any hazard- or bonus building.
6. Features
There are a couple of ingame features. You can add other players as a friend, view the leaderboard, read in game-mails, search streets and view your streets.
6.1.Leaderboard
The leaderboard is divided into friends, local, national and worldwide. Just click it to view the players profile. The Scores are updated every day.
7. Basic Rules
The only rule is that you are not allowed to cheat (and the limit per accounts on one pc). You have to earn your money like everyone else! For each IP (or PC) there are only 5 accounts allowed! Cheaters will be banned.
8. The END of the game
Yes, there is an end date set. January 31, 2010, if they don't change it. Hope they will never end this!
This tutorial shall not be copied or modified by any other person, without the permission of Mr.CityTrade
As many persons still have some basic questions, here is a list of useful information especially for newbies.
1. Registration
To register you have to visit http://www.monopolycitystreets.com/ and search for a street in your region. Your registration name has to be unique. Afterwards in your profile, only the region where you bought your first street will be shown (you can't change it later).
2. Sign in
Click the sign in link and enter your log-in data. Never tell anyone your log-in data, because you can't change your password neither you can receive your password if you forget that. So never forget your password!
3. Gameplay
You will already know it, or maybe not... Your Goal is to buy the most expensive streets in the world with the collected rents! You have to be smart, because there is a limit due to TAX!
4. Streets
The basic elements in the game are the streets, which have a value from 100,000$ upto billions of dollar! If you buy more than 5 streets you have to pay tax (3% per street over the 5th street).
4.1. Rents
The only way (except the chance cards) to gain money is to collect rents from your streets. You just have to buy a street and put buildings on it. Every day rent is paid once. You have to log in everyday, otherwise you won't gain the rent for the day.
4.2. Streets Value
If a street is more expensive, the street will be longer! The rent varies by the value of the street, but if you buy a street that cost above 1 mill $, you will gain the most possible rent. So don't buy any streets below 1 mill $!
4.3. Buy Streets
You can only buy streets with a purple heade, because the blue ones are already sold. But you can make an offer to buy them.
4.3.1. Making an offer
If you want to make an offer for a street, you will have to pay a minimum of the streets value. The money you want to pay will be held by the bank, as long as the deal will be active. You can also add streets to your offer. If the offer hasn't been denied within 7 days by the other player, the deal will be accepted automatically.
4.4. Buildings
There are 27 types of buildings. But the best building is the grid building, why? It pays out the most rent and occupies less building space compared with others.
4.4.1 Sell Streets
If you have enough from one of your streets don't sell them too fast! At first sell the buildings on the street by clicking the x on the buildings. And then sell the street. Note you will gain more money if somebody wants to buy it (use the Threads to offer your street), because the bank only pays the half of its value!
4.5. TAX
Don't buy too many streets, as you have to pay tax for every street above the 5th street. So there is a limit of about 5+33 streets, because having more than 38 streets you will have to pay more TAX than your income will be!
4.6. Available Streets
Maybe there will not be your street available because someone already bought it, but later there will be more problems. You have to look hard for expensive streets (or look in the threads ;-). But there are always streets waiting for you buying them. Note that not every street on the world are in the game.
5. Chance Cards
These cards are given away randomly. They can give or take money or if you have luck, you will get a special building card. Place bonus buildings on your street and hazard buildings on your enemys street.
5.1. Bonus building
Placing a bonus building on one of your streets, will protect them from hazards. Try to place bonus buildings on all of your expensive streets.
5.2. Hazards and Bulldoze Cards
Place Hazard buildings on your opponents street to block their rent. With Bulldoze Cards you can remove bonus buildings from other streets, to place a hazard building. But be aware, he or she can take revenge!
5.3 Sell bonus buildings
You can't sell any hazard- or bonus building.
6. Features
There are a couple of ingame features. You can add other players as a friend, view the leaderboard, read in game-mails, search streets and view your streets.
6.1.Leaderboard
The leaderboard is divided into friends, local, national and worldwide. Just click it to view the players profile. The Scores are updated every day.
7. Basic Rules
The only rule is that you are not allowed to cheat (and the limit per accounts on one pc). You have to earn your money like everyone else! For each IP (or PC) there are only 5 accounts allowed! Cheaters will be banned.
8. The END of the game
Yes, there is an end date set. January 31, 2010, if they don't change it. Hope they will never end this!
This tutorial shall not be copied or modified by any other person, without the permission of Mr.CityTrade
26. September 2009
Something Big is coming to our site!!!
Well, its hard to find good and long streets, am I right??
Now, we will Post 50 streets with a value of 1,000,000$ to 1,999,999$. And the best of it, is that the streets will be available to you! Its coming soon the 1million $ week...
Now a reason more to favorite this site!
Edit: The 1 mill $ week becomes the 1 mill $ city
Now, we will Post 50 streets with a value of 1,000,000$ to 1,999,999$. And the best of it, is that the streets will be available to you! Its coming soon the 1million $ week...
Now a reason more to favorite this site!
Edit: The 1 mill $ week becomes the 1 mill $ city
Bug LIST
Seeing BUGs that gets on your nervs??? Me, too! List all the bugs here and post a link to the pic!
Too many cheaters around!!!!
Hi, still seeing cheaters around and Mr.Monopoly is nothing doing against them???
Maybe we have to mention that he can't see everything, so we have to put the names down below. Don't forget to explain why you think he or she is a cheater!
Maybe we have to mention that he can't see everything, so we have to put the names down below. Don't forget to explain why you think he or she is a cheater!
24. September 2009
Wish List or To-Do List
The List with your Ideas! Now only the best ideas will be shown and the first one who will post the idea, his or her name will be shown here! So Post your Idea in the other Thread...fast!
Make your idea voice!
Everybody hates cheaters (except cheaters), but mr.monopoly has already taken action. But now you should do it, too! How? You tried everything, but nobody is listening? This blog will do! The best ideas and statistics will be posted in a special Thread! So mr.monopoly can see your wishes in a list! So present YOUR idea and we will post the best ones in a special thread!
Grand Opening
Its been a while, but the interests in Monopoly City Streets is as big as donuts in New York!
So why wait for offers being made on one of your streets. Post it here and you will get made an offer...ofcourse if its a valuable street ;-)
So why wait for offers being made on one of your streets. Post it here and you will get made an offer...ofcourse if its a valuable street ;-)
Abonnieren
Posts (Atom)



