If your using the default button set
use this button

rename it to quote.gif
http://www.vbulletin.com/forum/attac...tid=9274&stc=1
and find
HTML Code:
<if condition="$post['replylink']">
<a href="$post[replylink]"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>
replace it with
HTML Code:
<if condition="$post['replylink']">
<a href="<if condition="$post['forwardlink']">$post[replylink]<else />newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID</if>"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>