-I need to creat a tcl that save the last 2 words to create a system of login like this:
/ms my-eggdrop-name auth raul testing
-And now i need to save "raul" on $username" and "testing" on $password.
How can i make that?
-When i receive the mensage auth, how can i check if the first word is auth?
Example:
if (%code-to-see-the-first-word=="auth");
-After i save the $username, how can i create variables using the value of username?
Like this: the $username ir raul
set raul_test
I just want to create a variable with the value of $username and with _test after it.
Thanks