natirips wrote:This is just some pseudocode:
/---/
Yes, something like that (but much shorter and simpler in Python)... plus an if statement to append additional graphic for lengths over 40.0.
eXtr33m wrote:PS: That guy (JRN) is so awesome.. its just when that guy will want to save the world he will do it believe me.
This isn't even obliquely related to DSWP bar anymore:-P Anybody else noticed how all threads SvaRoX starts inevitably wind up as unfounded praisefests for me?
No?
Well, about time to start the tradition, then.
EDIT: SvaRoX, by all means:
- Code: Select all
def penis(self, irc, msg, args, text):
mu = 14
sigma = 10
graph = ''
cum = ''
rand = abs(round(random.gauss(mu, sigma), 1))
while len(graph) < rand / 2.5 - 1:
graph = graph + '='
if rand > 40.0: # arbitrary value, use your own definition of "huge porn star cock"
cum = ' - - -'
irc.reply(msg.nick + ', your penis is %s cm long. 8%sD%s' % (rand, graph, cum))
penis = wrap(penis, [additional('text')])
It's a Supybot function ready to use as a command. Randomizer comes from (the old) CuntBot; I had previously used rand = round(random.randint(1, 425)/10.0, 1) that placed the upper limit of the penis length at 42.5 cm.