Quote:
Originally Posted by Morrus
What edits would you need to make to increase the number of dice?
|
I am sorry, i should had make this hack more friendly. If more people use it I would upgrade it to be more friendly to customize. Right now to increase the number of dice
look for
Code:
$dice = eregi_replace(".*\[dice=([123])\]([0-9]?[0-9])\[\/dice\].*","\\1 \\2",$post['message']);
Add numbers depending on the number of dice you allow. Ej, for adding support for 4, 5 and 6 dices:
Code:
$dice = eregi_replace(".*\[dice=([123456])\]([0-9]?[0-9])\[\/dice\].*","\\1 \\2",$post['message']);
also look for
Code:
$post['message'] = preg_replace("/\[dice=[123]\][0-9]?[0-9]\[\/dice\]/i","[dice]",$post['message']);
In a similar way change it to:
Code:
$post['message'] = preg_replace("/\[dice=[123456]\][0-9]?[0-9]\[\/dice\]/i","[dice]",$post['message']);