Fix Try
I think i might have fixed the problem why we arent getting money. I know AGON has showed a much simpler way which I am using but I am still fixing jamboys code. Here it goes ((NOTE: I am not a good coder just know the basics and this is not tested))
in docrime.php find
$ir['money']+=$r['crimeSUCCESSMUNY'];
Replace it with:
$ir['money']+=$randmuny;
Then Replace:
if(rand(1,100) <= $sucrate)
{
print str_replace("{money}",$r['crimeSUCCESSMUNY'],$r['crimeSTEXT']);
with:
if(rand(1,100) <= $sucrate)
{
$randmuny = rand($crimeMINMONEY,$crimeMAXMONEY);
print str_replace("{money}",($crime_income),$r['crimeSTEXT']);
Thats it if u find errors plz post caz i am not sure it works