Hi!
I've heard about a script that can open new hub window (or connect to another hub in a new window) on command !hub
Is it possible? (lua4 wanted)
Thanx a lot.
NemeziS
Nope,... its not possible if you want you may redirect connecting users but I can't think of any way to make'em go in another hub while staying at the one they were entering ...
But can I redirect all the users (except the users with specified IPs) when the enter the hub?
Best regards,
NemeziS
QuoteOriginally posted by NemeziS
But can I redirect all the users (except the users with specified IPs) when the enter the hub?
Best regards,
NemeziS
sure ...
Here is a quicky one ..
tIps = { ["127.0.0.1"] = 1, }
Address = "another.hub.org"
Reason = "No Reason As Of Now"
function NewUserConnected (user)
if not tIps[user.sIP] then user:Redirect(Address, Reason) end
end
OpConnected = NewUserConnected
Thanx, I'll try it out soon ;)
Best regards,
NemeziS