Riftwalker
Sunday 10-21-2007, 11:12 PM
The Wandering Bard's PBP game is (hopefully) going to be starting in the near future. As a first time PBPer it's not clear to me how various PNP things are going to be done using an asynchronous forum. Or, I may be worrying about things that I don't need to worry about. /shrug
Just brainstorming the idea a bit, there are a couple things that could be helpful:
1) I don't recall where I've seen it before, but I know that I've seen BBCodes for rolling dice. The nice thing about this is that the poster types something like [roll 3d6] and the forum then produces:
Rolled "3d6": 2 + 6 + 3 = 11
as output. So the boards are simulating the rolling of dice, which is a lot less eyebrow raising than me rolling the dice here in real life and typing in the result, and a lot more interactive than having the DM roll everything. If this is interesting I can probably track down where I've seen this before.
2) The WotC forums have the ability to add Show/Hide buttons for things during posts. This seems like it would greatly reduce clutter in a PBP game. It could also be used more generally to hide spoilers or other such things.
Here's the HTML that would do it (I hijacked it from the WotC forums):
<div style="margin:5px 20px 20px 20px">
<div class="smallfont" style="margin-bottom:2px"><b>Some hidden stuff! Click the button to show -> </b> <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onclick="if (this.parentNode.parentNode.getElementsByTagName(' div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('d iv')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('d iv')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }"></div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
Stuff that was hidden before but is now shown!
</div>
</div>
</div>
For an example of this, go here: http://forums.gleemax.com/showthread.php?t=941245
3) BBCode for tables. I love tables. I'd like to be able to do to keep track of my spell usage / memorized spells or all kinds of things during a PBP game.
Spell Slots LeftSpell NameSR?
2Magic MissileYes
I think vBulletin has the ability to add customized BBCodes, so I know that #2 and #3 wouldn't be too difficult. I'm not sure about #1, though.
(By the way the current BBCodes that can be used on the forums are here: http://www.penandpapergames.com/forums/misc.php?do=bbcode )
Just brainstorming the idea a bit, there are a couple things that could be helpful:
1) I don't recall where I've seen it before, but I know that I've seen BBCodes for rolling dice. The nice thing about this is that the poster types something like [roll 3d6] and the forum then produces:
Rolled "3d6": 2 + 6 + 3 = 11
as output. So the boards are simulating the rolling of dice, which is a lot less eyebrow raising than me rolling the dice here in real life and typing in the result, and a lot more interactive than having the DM roll everything. If this is interesting I can probably track down where I've seen this before.
2) The WotC forums have the ability to add Show/Hide buttons for things during posts. This seems like it would greatly reduce clutter in a PBP game. It could also be used more generally to hide spoilers or other such things.
Here's the HTML that would do it (I hijacked it from the WotC forums):
<div style="margin:5px 20px 20px 20px">
<div class="smallfont" style="margin-bottom:2px"><b>Some hidden stuff! Click the button to show -> </b> <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onclick="if (this.parentNode.parentNode.getElementsByTagName(' div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('d iv')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('d iv')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }"></div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
Stuff that was hidden before but is now shown!
</div>
</div>
</div>
For an example of this, go here: http://forums.gleemax.com/showthread.php?t=941245
3) BBCode for tables. I love tables. I'd like to be able to do to keep track of my spell usage / memorized spells or all kinds of things during a PBP game.
Spell Slots LeftSpell NameSR?
2Magic MissileYes
I think vBulletin has the ability to add customized BBCodes, so I know that #2 and #3 wouldn't be too difficult. I'm not sure about #1, though.
(By the way the current BBCodes that can be used on the forums are here: http://www.penandpapergames.com/forums/misc.php?do=bbcode )