Role Play Creator the Second

classic Classic list List threaded Threaded
Locked 1001 messages Options
1 ... 34353637383940 ... 51
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
A trade-off between how subtle the hack is and how much it changes?
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
In reply to this post by Zaleramancer
 I promise, I would be a benevolent Game Master...
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Philote
Administrator
It would be a fun RP to try, but I'm having trouble creating a way for it to run smoothly.

If we had a way to add a random number generator to a post that would be helpful, one where it posts a random for everyone to see after you post your message.
Romans 8:31 What, then, shall we say in response to this? If God is for us, who can be against us?

1 Corinthians 13:1-3 If I speak in the tongues of men or of angels, but do not have love, I am only a resounding gong or a clanging cymbal. If I have the gift of prophecy and can fathom all mysteries and all knowledge, and if I have a faith that can move mountains, but do not have love, I am nothing. If I give all I possess to the poor and give over my body to hardship that I may boast, but do not have love, I gain nothing.
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
What, after every post?
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Philote
Administrator
Only certain posts where it would be useful. Like say if I was trying to obtain something that had a 30% chance of occurring.

I would like something where I could post something like *Philote rolls* but when it is posted it shows up *Philote rolls 28*
Romans 8:31 What, then, shall we say in response to this? If God is for us, who can be against us?

1 Corinthians 13:1-3 If I speak in the tongues of men or of angels, but do not have love, I am only a resounding gong or a clanging cymbal. If I have the gift of prophecy and can fathom all mysteries and all knowledge, and if I have a faith that can move mountains, but do not have love, I am nothing. If I give all I possess to the poor and give over my body to hardship that I may boast, but do not have love, I gain nothing.
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
Well, I doubt you could get something that specific, but there WOULD be access to various random number generator sites.
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
In reply to this post by Philote
<HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Original: Michael Hensley (yelsneh@geocities.com) --> <!-- Web Site: http://geocities.com/TimesSquare/Castle/6274 --> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://www.javascriptsource.com --> <!-- Begin var die = 6; var dice = 3; function dice_roll(die, dice) { var roll = 0; for (loop=0; loop < dice; loop++) { // random number fix by George Johnston (cali_scripter@yahoo.com) roll = roll + Math.round(Math.random() * die) % die + 1; } document.form.text.value = roll; } // End --> </script> <BODY>
What dice type? How many dice to roll?

<input type=radio name=sides onclick="die = 3">3 Sided

<input type=radio name=sides onclick="die = 4">4 Sided

<input type=radio name=sides onclick="die = 5">5 Sided

<input type=radio checked name=sides onclick="die = 6">6 Sided

<input type=radio name=sides onclick="die = 8">8 Sided

<input type=radio name=sides onclick="die = 10">10 Sided

<input type=radio name=sides onclick="die = 12">12 Sided

<input type=radio name=sides onclick="die = 20">20 Sided

<input type=radio name=sides onclick="die = 30">30 Sided

<input type=radio name=sides onclick="die = 100">100 Sided

<input type=radio name=number onclick="dice = 1">1

<input type=radio name=number onclick="dice = 2">2

<input type=radio checked name=number onclick="dice = 3">3

<input type=radio name=number onclick="dice = 4">4

<input type=radio name=number onclick="dice = 5">5

<input type=radio name=number onclick="dice = 6">6

<input type=radio name=number onclick="dice = 7">7

<input type=radio name=number onclick="dice = 8">8

<input type=radio name=number onclick="dice = 9">9

<input type=radio name=number onclick="dice = 10">10

<input type=button value="Roll Dice" name=button onclick="dice_roll(die, dice)">

Free JavaScripts provided
by The JavaScript Source

“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
I don't think that's viewable to everyone though.
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
<script type = "text/javascript"> <!-- var value; document.writeln( "<table border = \"1\" width = \"50%\">" ); document.writeln( "<caption>Random Numbers</caption><tr>" ); //Generate a random number between 1 and 6 for ( var i = 1; i <= 20; i++ ) { value = Math.floor( 1 + Math.random() * 6 ); document.writeln( "<td>" + value + "</td>" ); // write end and start <tr> tags when // i is a multiple of 5 and not 20 if ( i % 5 == 0 && i != 20 ) document.writeln( "</tr><tr>" ); } document.writeln( "</tr></table>" ); // --> </script>
No, no. This one's random each time you load the page..
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
1d6=2

Ah.

You can use this.

Simply assign a name, then you can roll the dice and link to it.
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
Um...I'm not exactly an expert when it comes to D&D calculation. It's like gameplay algebra!

How the heck do you determine 1d6 and all that other jazz?
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
1d6 is One Six-Sided Die.

2d6 is Two Six-Sided Dice.

1d20 is One Twenty-Sided Die.

Etc, Etc.

“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
1d5+1  is rolling One Five-Sided Die and adding One to the result.
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
In reply to this post by Zaleramancer
 Ah!

That makes much more sense!

I'm really thinking I want to give D&D a try, just to say I did it, in the future, so that clears up a heck of a lot of potential confusion in the future.
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
U: I have never managed to play a game of D&D.

The only one I tried ended with my character being eaten by wolves within three turns.

I came to the forums to whine about it, remember?
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
In reply to this post by Zaleramancer
 Ooh...nice.

Hey, I was wondering.

Would you like to give a D&D style campaign a try, in the future? I mean after a HUGE discussion and clarification session? Either as an RP (for the RP section), or as a game (for the Games section), it doesn't matter. But basically, you try to implement D&D rules (to the best the Internet allows) in order to devise characters, gain abilities and magic, and execute a coherent campaign.

Do you think it's possible, with the new decisions that have been reached on running RP threads?
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
In reply to this post by Zaleramancer
 I remember it fondly.

Doesn't mean I can't give it a try, though.
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
In reply to this post by Celadon's Penultimate
I'd like that.

It would be fun, and a chance to get a better grasp of the rules.
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Zaleramancer
Administrator
In reply to this post by Celadon's Penultimate
You could try browsing the SRD if you like.

To get a understanding of D&D 3.5.
“She'd become a governess. It was one of the few jobs a known lady could do. And she'd taken to it well. She'd sworn that if she did indeed ever find herself dancing on rooftops with chimney sweeps she'd beat herself to death with her own umbrella.”
― Hogfather
Reply | Threaded
Open this post in threaded view
|

Re: Role Play Creator the Second

Celadon's Penultimate
Administrator
In reply to this post by Zaleramancer
Great.

So. Any here who have any kind of D&D knowledge, I would appreciate your contributions. I doubt there will be many, but whoever you are, we'll need you.

Now, should I go ahead and make the thread? And if so, which do you think it should count as? A regular game or a roleplay?
“…Judge not what a man has done, but judge what he could have done if he was a different bloke altogether. For art thou a leper? And a leper can changeth his spots…”   --Rudy Wade, Misfits (Series 4, Episode 8)
1 ... 34353637383940 ... 51