Page 2 of 2

Re: Some beginner mudlet help.

PostPosted: Fri Dec 26, 2014 10:27 pm
by abraxsis
Tsuman wrote:if matches[2] == "ant" then
send("wraithtouch "..matches[3])
else
send("deathgrip "..matches[3])
send("release")
end

what about
if matches[2] == "ant" then
send ("wraithtouch ant")
else send ("deathgrip"..matches[2])
end

I noticed you have matches [2] at the beginning and matches [3] later on, if im thinking right they should be matches [2]

---- sorry, looks like parsec beat me to the punch -----

Re: Some beginner mudlet help.

PostPosted: Sat Dec 27, 2014 1:30 am
by *juggleblood*
Tsuman wrote:
if matches[2] == "ant" then
send("wraithtouch "..matches[3])
else
send("deathgrip "..matches[3])
send("release")
end


typo...You changed matches[2] to matches[3]