Toribash
I press enter, type 95 (for hunter) then press enter again.
I get the disconnected error.
I retry with 30 (for demon) and get the same error.
Do you type:
/ec 90
Or just 90?
If yes, you need to type /ec 90.
multiple texture uploader! updated: multiple texture remover!
updated pretty colorlist!

<BobJoelZ> ok ive just rebooted my pc and ive tried to activate my reflex on yahoo internet explorer :/ no luck

<Aracoon> I do not enjoy having anal sex with multiple men
No problem, I'm here to help.
multiple texture uploader! updated: multiple texture remover!
updated pretty colorlist!

<BobJoelZ> ok ive just rebooted my pc and ive tried to activate my reflex on yahoo internet explorer :/ no luck

<Aracoon> I do not enjoy having anal sex with multiple men
Can somebody tell my why this code:
s, e = string.find("--test", "--")
echo(s.." "..e)
echoes "1 0"? Shouldn't it be "1 2"?
Signature temporarily out of order.
Originally Posted by psycore View Post
Can somebody tell my why this code:
s, e = string.find("--test", "--")
echo(s.." "..e)
echoes "1 0"? Shouldn't it be "1 2"?

Because string.find searches via pattern, and the - character is a special character in lua patterns.

To fix it you need to escape each - character using %, like so:
lua code:
s, e = string.find("--test", "%-%-")
echo(s.." "..e)
:D