PtokaX forum

Archive => Archived 5.0 boards => Help with scripts => Topic started by: gathering on 04 July, 2005, 23:49:06

Title: screencleaner
Post by: gathering on 04 July, 2005, 23:49:06
can any one make this so it works for lua 5 when i write !cls nothing happens

--ScreenCleaner.lua 1.1 by yepyepyep4711 and Hawk
--!cls will wipe the main chat clean (does that remind you of something? ;) )
--the command will be added to the rightclick menu of the OPs (optional)



botname = "?Robocop?"

rightclick = 1 -- if anything else than 1 rightclick menu won't appear

function DataArrival (curUser, sData)
command=strsub(sData,1,strlen(sData)-1)
s,e,cmd = strfind(command,"%b<>%s+(%S+)")
if curUser.bOperator then
if cmd=="!cls" then
temp = "\r\n"
for i=1,200,1 do
temp = temp.."\r\n"
end
SendToAll(botname, temp)
end
end
end



function OpConnected(curUser)
if rightclick == 1 then
curUser:SendData("$UserCommand 255 7")
curUser:SendData("$UserCommand 0 3")
curUser:SendData("$UserCommand 1 2 Clear Screen$<%[mynick]> !cls|")
end
end
Title:
Post by: blackwings on 05 July, 2005, 00:01:42
done = --ScreenCleaner.lua 1.1 by yepyepyep4711 and Hawk
--!cls will wipe the main chat clean (does that remind you of something? ;) )
--the command will be added to the rightclick menu of the OPs (optional)

botname = "?Robocop?"

rightclick = 1 -- if anything else than 1 rightclick menu won't appear

function MyINFOArrival(curUser, sData)
command=string.sub(sData,1,string.len(sData)-1)
s,e,cmd = string.find(command,"%b<>%s+(%S+)")
if curUser.bOperator then
if cmd=="!cls" then
temp = "\r\n"
SendToAll(botname, string.rep(temp,200))
end
end
end

function OpConnected(curUser)
if rightclick == 1 then
curUser:SendData("$UserCommand 255 7")
curUser:SendData("$UserCommand 0 3")
curUser:SendData("$UserCommand 1 2 Clear Screen$<%[mynick]> !cls|")
end
end
Title:
Post by: gathering on 05 July, 2005, 00:59:53
thx
Title:
Post by: Hellkeepa on 11 July, 2005, 12:49:08
HELLo!

Edit, removed: Wrong thread.

Happy codin'!