hi everyone.... I've made one plugin wich adds a prefix and sufix on the text that you send (/xt + example results in [ example ])
code:
ElseIf (StrComp(LCase(sCommand), "/xt", vbTextCompare) = 0) Then
Dim sjr1 As String
sjr1 = sCommandArg + " ]"
sResult = "[ " + sjr1 + vbLf
ParseCommand = True
End If
I wish to know how to make this simple prefix and sufix plugin automatic (auto-talker), wich the user don't need to digit "/xt"...
can anyone help me???