Hello,
i want ask if there exist any bot, that show new connected user in mainchat this:
Nick: ??????
IP: ??????
Clas: ?????
How is he called? I cant find him.
JaPaja
Here's one but ultra simple :D search for log in info or something like that...I'll be away from the forum due holidays so someone will help you...
sBot = frmHub:GetHubBotName()
NewUserConnected = function(user)
local profile = GetProfileName(user.iProfile) or "Unregistered"
user:SendData(sBot,"Hi "..user.sName.." your ip is "..user.sIP.." as"..profile)
end
NewUserConnected = function(User)
SendToAll(frmHub:GetHubBotName(), frmHub:GetHubName().." gives a welcome to:\r\n"Nickname:\t"..User.sName.."\r\nIP:\t"..User.sIP.."\r\nProfile:\t"..GetProfileName(User.iProfile))
end
OpConnected = NewUserConnected
Not that I recommend throwing IPs in mainchat :-\
Thnx Mutor for the finishing touches ;D