FIRST, ABSOLUTLY ALL CREDIT GOES TO AGENT MOOSE, I JUST ADDED A FEW LETTERS TO THE FIRST ORIGINAL CODEfor all three versions you'll need this in your headers:
<script src="/jquery.js"></script>
Original Code:Footers...
<script>
var text = "YOUR TEXT HERE";
//Created by Agent Moose
if(location.href.match(/action=post;board=/i)) document.forms.postmodify.message += text;
</script>
Basicly, this will show text in the textarea where you type your post right when the page loads.
Just change YOUR TEXT HERE to your own text.
Post Warning V.2This one will make the code ONE board only:
Add to footers:
<script>
var text = "YOUR TEXT HERE";
//Created by Agent Moose
if(location.href.match(/action=post;board=X/i)) document.forms.postmodify.message += text;
</script>
Change the green text to what you want to display, and the red X to the board number. To get this number, go to the board and look at the url. Search the part that looks like this: board,X.0.html. The should be a number, thats the board number.
Post Warning V.3This will make the warning come in one POST only
Add to footers:
<script>
var text = "YOUR TEXT HERE";
//Created by Agent Moose
if(location.href.match(/action=post;topic=X/i)) document.forms.postmodify.message += text;
</script>
Change the green text to what you want to display, and the red X to the topic number.