If you have a command that uses !d something and triggers off of that then you can either switch the on text event to be !diceX where X is the number you'd like to roll.
Before:
Code:
on *:text:!d20:#:msg $chan $nick rolled a ( $r(1,20) ).

The above code will roll a d20 when !d20 is typed in the channel. If you want it to be !dice20 then change !d20 to be what you would like. Example:
Code:
on *:text:!dice20:#:msg $chan $nick rolled a ( $r(1,20) ).

It will now instead roll a d20 only when !dice20 is said.