LOGO
General Discussion Undecided where to post - do it here.

Prev Previous Post   Next Post Next
Old 07-22-2011, 11:26 PM   #1
AdSuiteAdobe

Join Date
Oct 2005
Posts
351
Senior Member
Default A look into Crad's flawed plugin!
Spent about an hour rigging this up for Whatah. As it turns out, we can't even use it because we need the random numbers to remain constant for all users. Planning on revising it with a much trickier method

Figured someone might be interested in this.

Critique away!

[dice=5]20[/dice]

Output:
[dice=5]20[/dice]


Hook Location: bbcode_parse_start

Code:
Code
if (!function_exists('handle_dicetag')) {      srand((double) microtime() * 1000000);       function handle_dicetag(&$parser, $param, $option = '')      {          $numSides = 6;          $numDice = 1;           $htmlOut = ' rolls a ';           $paramVal = intVal($param, 10);          $optionVal = intval($option, 10);           if ($paramVal > 0 and $paramVal  0 and $optionVal  1)              $htmlOut .= ' on ' . $numDice . ' d' . $numSides . 's';          else              $htmlOut .= ' on a d' . $numSides;           $htmlOut .= '
';           return $htmlOut;      }  }  $this->tag_list['no_option']['dice'] = array(          'callback' => 'handle_external',          'strip_empty' => false,          'stop_parse' => false,          'disable_smilies' => true,          'disable_wordwrap' => true,          'strip_space_after' => 1,          'external_callback' => 'handle_dicetag'  );   $this->tag_list['option']['dice'] = array(          'callback' => 'handle_external',          'strip_empty' => false,          'stop_parse' => false,          'disable_smilies' => false,          'disable_wordwrap' => true,          'strip_space_after' => 1,          'external_callback' => 'handle_dicetag'  );

AdSuiteAdobe is offline




« Previous Thread | Next Thread »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

All times are GMT +1. The time now is 12:45 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.6.0 PL2
Design & Developed by Amodity.com
Copyright© Amodity