if ($msg =~ /^invite (.*)/i) {<br />$self->invite($1);<br />$self->sendmsg("Inviting $1, Remember this will only work if he/she is online");<br /> goto end;<br />}
This is my invite command lol hope *lazy* like it
btw: thanks keenie for teaching me that
Quote:
single quotes meen literally '$1' and not the value of $1
because *lazy* i had it as $self->invite('$1'); instead of $self->invite($1); thanks keenie