Hi
I am using the RoboCopv8b. and PtokaX DC Hub 0.3.2.6 TestDrive 4. When ever I start running my hub..and log on using DC++ client V0.401 the HubBot and OpChat shows the following in the
Connection speed: Light Speed,
E-mail:Security@bot.
I want to change the above settings Can any one plese let me know how to do this.
Thanks.
Masula
heya m8 ..
robocop is a compiled script so there nothing you can do appart from request a change in the relevent robo cop thread.
??????Hawk??????
Hi Buddy,
Thanks for the message.. But I can see some hubs.. in which there is no connection speed listed there.??? But they are using Robocopv6.0.
Can we change those settings in v6.0??
Thanks
Masula
hi m8 ..
you could build this in to a timer script to over ride robo's setting .
BotName = "Robocop"
desc = "My Description"
speed = "Fast"
email = "myplace@anywhere.com"
share = 0
SendToAll( "$MyINFO $ALL "..BotName.." "..desc.."$ $"..speed.."$"..email.."$"..share.."$")
Have Fun :-)
Hi
Thankyou very much for the script.
Have a nice day
Masula
try this
BotName = "Robocop"
desc = "My Description"
speed = "Fast"
email = "myplace@anywhere.com"
share = 0
function Main()
SetTimer(60000)
StartTimer()
end
function OnTimer()
SendToAll( "$MyINFO $ALL "..BotName.." "..desc.."$ $"..speed.."$"..email.."$"..share.."$")
end