- Location
- /dev/null
Welcome to the plate auction!
This is a unique chance to get a customized plate on an ingame vehicle of your choice! The base price for each plate is £10 million pounds, although during the bidding process you can outbid someone for their plate by raising this value by at least £2m per raise.
Bidding for a given plate starts immediately after the first person suggests it, ending 24 hours afterwards. The person with the highest bid at this time will receive the plate. Please only make bids you are willing to follow through on - the Auction House will claim your assets otherwise.
Bidding will begin on the 1st November at midday BST
I have a plate idea!
Great! First check if someone has already suggested this plate by searching this forum thread. If the suggestion is over 24 hours ago, then sorry, this plate has already been sold! If the suggestion is still in bidding, consider raising. If your idea hasn't been brought up yet, fill out the following template and reply to this thread:
Code:
Suggested Plate: <5-6 character plate (with/without space) or 7 character plate (without space)>
Apply to: <The current plate of the vehicle you want this plate applied to>
Bid Amount: <Leave as 10 million, unless you really want the plate and wish to raise immediately>
Code:
I raise <tag user>
Suggested Plate: <5-6 character plate (with/without space) or 7 character plate (without space)>
Apply to: <The current plate of the vehicle you want this plate applied to>
Bid Amount: <The raised amount (at least 2m more than the previous)>
Processing
The auction house will aim to process your plate as soon as possible after the 24 hour period. Please rest assured that the post timestamp will be used to check the bidding period closing, someone will not be able to slip in slightly after the period.
Terms
Plates are non-transferrable unless you are willing to pay a hefty sum, so make sure you pick the correct vehicle!
If your vehicle is stolen and chopshopped, or you sell your vehicle, your plate will NOT be refunded and your money will be forfit.
Restrictions
Common sense applies, no racist / offensive terms. Humourous names are fine!
Happy bidding!
Plate Validator
To make life easier for checking if your plate is valid, enter it below.
// old es ew
var elPlate = document.getElementById("plate");
var elValidity = document.getElementById("plateValidity");
function fail(msg) {
elValidity.innerText = msg;
elValidity.style.color = '#FF0000';
}
function validate(value) {
value = value.toUpperCase();
if (value.length < 5) {
return fail("Must be at least 5 characters");
}
if (value.length > 7) {
return fail("Must be 7 characters or less");
}
if (/[^A-Z0-9 ]/.test(value)) {
return fail("Invalid character. Only alphanumerics please.");
}
if (value.split("").filter(x => x == " ").length > 1) {
return fail("You may have at most one space.");
}
if (/^[A-Z]{2}\d{2} [A-Z]{3}$/.test(value)) {
return fail("Sorry, this plate conflicts with the generator. Please try removing the space!");
}
elValidity.innerText = "Great! Your plate is valid.";
elValidity.style.color = '#00FF00';
}
elPlate.addEventListener("input", function(e) {
validate(e.target.value);
});
Last edited by a moderator: