What does this mean (speeding)

Caporegime
Joined
24 Dec 2005
Posts
40,150
Location
Autonomy
My mate just showed me a letter from Merseyside Police saying:

A recorded speed 65, time into red light 0, for the alleged offence of Exceed 50mph speed restriction on motorway-automatic camera device.

What does time into red light 0 mean?
 
He either did or did not have sexy time with a lady of the night or I assume it's to do with the timing on the speed camera?
 
Probably a generic letter used for both automated speeding and red light offences.

If (easyRidersMateSpeeding == true)
{
easyRidersMatesLicence = easyRidersMatesLicence + 3;
easyRisersMatesAccount.debit(60);
letter.print("naughty boy for speeding, red light 0. You now have " + (12-easyRidersMatesLicence) + " points left on your licence");
}
If (easyRidersMateRedLight == true)
{
easyRidersMatesLicence = easyRidersMatesLicence + 3;
easyRidersMatesAccount.debit(60);
letter.print("good boy for not speeding, naughty boy for going through a red light. You now have " + (12 - easyRidersMatesLicence) + " points left on your licence");"
}
 
Last edited:
OK

Thanks he was getting a bit worried as he is going on a course next week to avoid the points this has become a shock though
 
If (easyRidersMateSpeeding == true)
{
easyRidersMatesLicence = easyRidersMatesLicence + 3;
easyRisersMatesAccount.debit(60);
letter.print("naughty boy for speeding, red light 0. You now have " + (12-easyRidersMatesLicence) + " points left on your licence");
}
If (easyRidersMateRedLight == true)
{
easyRidersMatesLicence = easyRidersMatesLicence + 3;
easyRidersMatesAccount.debit(60);
letter.print("good boy for not speeding, naughty boy for going through a red light. You now have " + (12 - easyRidersMatesLicence) + " points left on your licence");"
}

I hate putting the opening brackets on new lines.

It should be

If (easyRidersMateSpeeding == true) {

blah blah blah blah

}
 
It's wrong anyway. It doesn't have any variables in it. It needs speed and red light time.

OP if your mate had gone into a red light that had been on for 2 seconds it would probably say something like:
A recorded speed 0, time into red light 2 seconds, for the alleged offence of getting from A-B quicker.
 
I hate putting the opening brackets on new lines.

It should be

If (easyRidersMateSpeeding == true) {

blah blah blah blah

}

Have to agree with you - just doesn't sit right with me if the { isn't on the same line.

EDIT: Oh and it should be possible to change "easyRidersMatesLicence = easyRidersMatesLicence + 3;" to "easyRidersMatesLicence += 3;" which is easier to read and reduces the chances of an error by mixing up one of the variable names.
 
Last edited:
Back
Top Bottom