--Allow Nicks 1.0 --by Mutor The Ugly --Allows only those nick that contain the prefix --VIP's exempt from check -- bot = "BotName" prefix = "[HUN]" function DataArrival(curUser, Data) if strsub(Data, 1, 13) == "$ValidateNick" then nick = strsub(Data, 15, 19); unick = strsub(Data, 15, -1); end end OpConnected = NewUserConnected function NewUserConnected(curUser) if nick == prefix or curUser.iProfile == 2 then return 1 end -- Allow prefix or VIP's only curUser:SendData(bot, "This Hub only accepts users with "..prefix.." before their nick. For Example: "..prefix..unick) curUser:Disconnect() end