--// No need to edit other settings
MinSlots=3
MaxHubs=0
function Main()
HubAddress=GetFromIni("HubAddress")..":"..GetFromIni("HubPort")
if GetFromIni("MinSlotsChecker")=="1" then
MinSlots=GetFromIni("MinSlots")
end
if GetFromIni("HubChecker")=="1" then
MaxHubs=GetFromIni("MaxHubs")
end
end
function DataArrival(curUser,data)
if strsub(data,1,9)=="$BotINFO " then
curUser:SendData("$HubINFO "..frmHub:GetHubName().."$"..HubAddress.."$"..frmHub:GetHubDescr().."$"..frmHub:GetMaxUsers().."$"..floor(frmHub:GetMinShare()*1048576).."$"..MinSlots.."$"..MaxHubs.."$PtokaX 0.3 ".._VERSION.." script$"..OwnerEmail)
end
end
function GetFromIni(var)
local result=""
readfrom("../PtokaX.ini")
while 1 do
local line=read()
if line==nil then
break
else
if strsub(line,1,strlen(var)+1)==var.."=" then
result=strsub(line,strlen(var)+2,strlen(line))
break
end
end
end
readfrom()
return result
end
if i have a min share of 600MB, can i set this? floor(600*1048576) (i don't want to take the value set in settings)
thanks
anyone? i cant play a lot with it because the hub is not in mi Pc.
thanks