Can you have multiple ascii values ? so if i had this
12.34.56.78:7777
could I have the dot (.) and colon (:) as seperators? because i want a script which will try and look for server advertisements within input.

So say... someone said this in the channel...
'Hey, everybody! join server 12.34.56.78:7777' I want it to tokenize the thing. I already have a bit of the script, where it removes the token if it isn't a number, but I don't know how to get the 7777 and stuff. Also, its oddly cutting off the first token (12.)

Quote:
on *:TEXT:*.*.*.*:#test: {
set %advert /tokenize 46 $1-
echo 2 %advert
var %counter 1
while ($gettok(%advert,%counter,46) != $null) {
if ($gettok(%advert,%counter,46) !isnum) {
set %advert $deltok(%advert,%counter,46)
echo 2 #test %advert
}
inc %counter 1
}
if ($gettok(%advert,1,46) == 93) {
echo 3 #test all clear %advert
}
else {
echo 4 #test Advert! %advert
}
}