-
Posts
161 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Events
Everything posted by Eurogangster
-
Coldblooded we added you in skype please login to discuss
-
The coding of the mccodes i had was very insecure. Sql injections was the way !!! or that the scripts doesnt have ifs that check if a person add input value negative . We leave the budget open that doesnt mean we want to give a lot of money. Also we pay after the completition and test of the game.
-
Hello I am old here . We have already a licence of the mccodes ( the full license ) but we want a company or a person to create us a game with great graphics and secure everything. In our old game was great we had a good income but hackers destroyed the game, So we closed it. We want a secure game with great graphics and we want the person / company to have a long term partnership for updates that we wish to create for us. We are waiting for your offers through email or pm Please give us also your project plan and your portofolio Thanx a lot
-
Hello everyone We are glad to announce you that we are creating a game network As you can see at the top of our page http://www.eurogangster.com we had added a drop down list with our Game Network You need to click on the link Join Our Game Network and then write us on the email whats your game and what type of game you have and also you must write us your daily unique visits. Our target is to create a good Game Network where Game Owners can get more visitors and the visitors have more options Its absolutely free. When a site is accepted he must add this bar on the header. Its a simple code and we ll give it Looking Forward
-
Yes bineye we have already inform that here in MCC
-
We decided not to sell the game Thanx a lot for your interest Please delete the Post
-
Yes you can check our validation . We wanted to be legal. Thanx a for your good words. Yes it transalte every page ( but not the images )
-
Not in a month. In a duration of 8 months. We just want to start something new and we want to sell it to a person that would try to keep it live.
-
Plus that you mention its raven with a few changes. The base was Raven but after that we have changed everything in legal way everything has licence with tons of modfications either paid either free either our own work. Some please when someone send something to consider it first and dont accuse the work of some peoples
-
We have changed the theme ingame . the 99% of the ingame icons also Its MCCodes V.2 License You can see some Raven phps but where is the problem with that ? We are valid to Mccodes licence we have purchaced it 100$. Check in the same section the old post . Everyone Validated us The donations until last month was about 2000 Euros. All this can been proved . 300$ cost us to intergrate with facebook .
-
Sale has been canceled We decided not to sell EuroGangster Thanx a lot for you interest Please delete the post
-
payment sent
-
Great Mod but you need to add a function if a players want to stop the investment to have an option Stop Invest and then receive his money back without interest
-
You were right there are 2-3 images to change Thanx a lot
-
Hello Paul What images are stolen from a a large network?
-
Yes we just thought we should post and here .
-
Hello We are interested to convert our game EuroGangster for facebook For example we would like to keep the www.eurogangster.com and we want our players to be able to play from the facebook Is this possible? if yes pm us for offers Thanx a lot
-
Hello We are interested to convert our game EuroGangster for facebook For example we would like to keep the http://www.eurogangster.com and we want our players to be able to play from the facebook Is this possible? if yes pm us for offers Thanx a lot
-
I mean the member doesnt need to refresh the page to see that someone send him an email or got an event
-
hello can you create one for the mail and events? Thanx a lot
-
What does this script do ?
-
Your Real Estate Business Mod UNTESTED
Eurogangster replied to Coly010's topic in Free Modifications
Can you guys fix this mod ? i mean the parse error -
<?php require_once(dirname(__file__) .'/globals.php'); $_POST['train'] = (isset($_POST['train']) && !empty($_POST['train'])) ? intval($_POST['train']) : false; $rand = rand(100000,200000); $rand1 = rand(1,3); $ddgain = $rand1 * 2; $totalddgain = $ddgain+$ir['drugdealers']; $energyupdate = $ir['energy']-$_POST['train']; $collectgain = $ir['drugdealers']*$rand; $totcollect = $collectgain+$ir['money']; if($_POST['train']) { if($_POST['train'] > $ir['energy']) { echo"<font color = yellow>[b]Sorry. You dont have enough energy to train that amount of dealers.[/b]</font> "; } else { if($ir['drugdealers']==$ir['maxdealers']){ echo"<font color = yellow>[b]You reached the most amount of dealers you house allows![/b]</font> "; } else { if($totalddgain > $ir['maxdealers']){ echo"<font color = black>You used {$_POST['train']} energy, and successfully trained a total of $ddgain Drug Dealers.</font><font color = yellow>[b]NOTE: You are now at the highest amount of dealers that your house allows![/b]</font>"; $db->query("UPDATE users SET drugdealers={$ir['maxdealers']}, energy=$energyupdate WHERE userid=$userid"); } else { echo"<font color = black>You used {$_POST['train']} energy, and successfully trained a total of $ddgain Drug Dealers.</font>"; $db->query("UPDATE users SET drugdealers=drugdealers+$ddgain, energy=$energyupdate WHERE userid=$userid"); } } } } if($_POST['collect']) { if ($ir['ddcollections']==0){ echo"[b]<font color = yellow>Sorry! You dont have any collections left today! Come back tommorow![/b]</font>"; } else { if ($ir['brave'] != $ir['maxbrave']){ echo"[b]<font color = yellow>Sorry! You need to have full brave before you can collect from your drug dealers![/b]</font>"; } else { $db->query("UPDATE users SET money=$totcollect, ddcollections=ddcollections-1, brave=0 WHERE userid=$userid"); echo"<font color = black>[b]You have collected a total of $$collectgain! You now have {$ir['ddcollections']} collections left today.[/b]</font> "; } } } echo"<hr /> You currently have {$ir['drugdealers']} dealers working for you. The more drug dealers you have, the more profit you make when collecting from them. With your current house you can have [b]{$query1['maxdealers']}[/b] dealers working for you. When recruiting, more energy used gives you a higher chance of getting more dealers. Warning: if you sell downgrade your house after maxing dealers you will no longer be able to collect. You have {$ir['ddcollections']} dealer collections remaining today. Donators get 5 daily collections instead of 3. <form action='drugdealers.php' method='post'><input type='hidden' class='train' maxlength='5' size='4' value='{$ir['energy']}' name='train' /><input type='submit' value='Train Dealers' STYLE='background-color: black;/></form> <form method='post'><input type='submit' STYLE='background-color: black; class='button' name='collect' value='Collect Profit'></form> "; $h->endpage(); ?>
-
I dont understand where your bug is coming from. As you can see in my code, when the user has max drug dealers and they try to collect, there is no query that gives them the collected money. I mean that either we use $_POST['train'] either $_POST['collect'] it gives us the message that we have completed the maximum drug dealers When someone use $+POST['collect'] as i see in your code he shouldnt get this message
-
I think there is a bug. When someone reached the maximum drug dealers if he click Collect he shows the the message -> Sorry you have reached the maximum ....... But he takes the collect gains. I believe something going wrong We have made one 2 modifications in the forms we did them black color i add the code below <?php require_once(dirname(__file__) .'/globals.php'); $_POST['train'] = (isset($_POST['train']) && !empty($_POST['train'])) ? intval($_POST['train']) : false; $rand = rand(100000,200000); $rand1 = rand(1,3); $ddgain = $rand1 * 2; $totalddgain = $ddgain+$ir['drugdealers']; $energyupdate = $ir['energy']-$_POST['train']; $collectgain = $ir['drugdealers']*$rand; $totcollect = $collectgain+$ir['money']; if($_POST['train']) { if($_POST['train'] > $ir['energy']) { echo"<font color = yellow>[b]Sorry. You dont have enough energy to train that amount of dealers.[/b]</font> "; } else { if($ir['drugdealers']==$ir['maxdealers']){ echo"<font color = yellow>[b]You reached the most amount of dealers you house allows![/b]</font> "; } else { if($totalddgain > $ir['maxdealers']){ echo"<font color = black>You used {$_POST['train']} energy, and successfully trained a total of $ddgain Drug Dealers.</font><font color = yellow>[b]NOTE: You are now at the highest amount of dealers that your house allows![/b]</font>"; $db->query("UPDATE users SET drugdealers={$ir['maxdealers']}, energy=$energyupdate WHERE userid=$userid"); } else { echo"<font color = black>You used {$_POST['train']} energy, and successfully trained a total of $ddgain Drug Dealers.</font>"; $db->query("UPDATE users SET drugdealers=drugdealers+$ddgain, energy=$energyupdate WHERE userid=$userid"); } } } } if($_POST['collect']) { if ($ir['ddcollections']==0){ echo"[b]<font color = yellow>Sorry! You dont have any collections left today! Come back tommorow![/b]</font>"; } else { if ($ir['brave'] != $ir['maxbrave']){ echo"[b]<font color = yellow>Sorry! You need to have full brave before you can collect from your drug dealers![/b]</font>"; } else { $db->query("UPDATE users SET money=$totcollect, ddcollections=ddcollections-1, brave=0 WHERE userid=$userid"); echo"<font color = black>[b]You have collected a total of $$collectgain! You now have {$ir['ddcollections']} collections left today.[/b]</font> "; } } } echo"<hr /> You currently have {$ir['drugdealers']} dealers working for you. The more drug dealers you have, the more profit you make when collecting from them. With your current house you can have [b]{$query1['maxdealers']}[/b] dealers working for you. When recruiting, more energy used gives you a higher chance of getting more dealers. Warning: if you sell downgrade your house after maxing dealers you will no longer be able to collect. You have {$ir['ddcollections']} dealer collections remaining today. Donators get 5 daily collections instead of 3. <form action='drugdealers.php' method='post'><input type='hidden' class='train' maxlength='5' size='4' value='{$ir['energy']}' name='train' /><input type='submit' value='Train Dealers' STYLE='background-color: black;/></form> <form method='post'><input type='submit' STYLE='background-color: black; class='button' name='collect' value='Collect Profit'></form> "; $h->endpage(); ?>