PtokaX forum

PtokaX => Support => Topic started by: Masula on 18 July, 2004, 10:59:47

Title: How to change Connection type and e-mail ID for HubBot & OpChat
Post by: Masula on 18 July, 2004, 10:59:47
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

 
Title:
Post by: ??????Hawk?????? on 18 July, 2004, 14:40:59
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??????
Title:
Post by: Masula on 18 July, 2004, 19:56:33
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
Title:
Post by: ??????Hawk?????? on 18 July, 2004, 22:54:14
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  :-)
Title:
Post by: Masula on 19 July, 2004, 02:29:27
Hi
Thankyou very much for the script.
Have a nice day
Masula
Title:
Post by: ??????Hawk?????? on 19 July, 2004, 02:42:14
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