PtokaX forum

Archive => Archived 4.0 boards => Finished Lua 4 scripts => Topic started by: Woody on 10 January, 2004, 12:20:07

Title: Live Timer Problems
Post by: Woody on 10 January, 2004, 12:20:07
Can some1 please edited this script for me


--Live Timer by kepp
--Idea yepyepyep4711
--modded me.

HubName = frmHub:GetHubName()

topic = "type !topic "

function Main()
      SetTimer(1*1000)
      StartTimer()
end

function OnTimer()
      SendToAll("$HubName "..HubName.." - "..topic.." - Local Time : "..date("%H:%M:%S"))
end

function DataArrival(curUser,data)
   if curUser.bOperator and strsub(data,1,1) == "<" then
      local _,_,cmd,curtopic = strfind( data, "%b<>%s(%S+)%s+(.*)%|$" )
      if cmd and cmd == "!topic" then
         topic = curtopic
         curUser:SendData("Topic has been set to "..topic..".")
         SendToAll("$HubName "..HubName.." - "..topic.." - Local Time : "..date("%H:%M:%S"))
         return 1
      end
   end
end


Every time i restart the scripts, whatever the topic was previoulsy set to, then becomes the hub name???

Any Help on how to stop this will be appreciated
Title:
Post by: c h i l l a on 10 January, 2004, 14:18:58
maybe this will work

--Live Timer by kepp
--thanks to yepyepyep4711
--modded chill

HubName = frmHub:GetHubName()

topic = "type !topic "

function Main()
dofile("topic.txt")
SetTimer(1*1000)
StartTimer()
end

function OnTimer()
SendToAll("$HubName "..HubName.." - "..topic.." - Local Time : "..date("%H:%M:%S"))
end

function DataArrival(curUser,data)
if curUser.bOperator and strsub(data,1,1) == "<" then
local _,_,cmd,curtopic = strfind( data, "%b<>%s(%S+)%s+(.*)%|$" )
if cmd and cmd == "!topic" then
topic = curtopic
curUser:SendData("Topic has been set to "..topic..".")
SendToAll("$HubName "..HubName.." - "..topic.." - Local Time : "..date("%H:%M:%S"))
local handle = openfile("topic.txt","w")
write(handle,"topic = "..format('%q',topic))
closefile(handle)
return 1
end
end
end
Title:
Post by: Woody on 10 January, 2004, 16:08:07
Thanx Chilla :)