Hi i there any script that will clear the main screen in lua5 format? :)
QuoteOriginally posted by Sarpanch
Hi i there any script that will clear the main screen in lua5 format? :)
Try the search Button.............
when i search i get nothing , this is what i have in lua4
--!cls will wipe the main chat clean
--the command will be added to the rightclick menu of the OPs (optional)
botname = "bot"
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 $<%[mynick]> !cls|")
end
end
dunno y u couldnt find it
but here it is
code:
--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)
CanDo = {
- = 1, -- Master
[1] = 1, -- Operator
[2] = 0, -- VIP
[3] = 0, -- Reg
[4] = 0, -- Moderator
[5] = 1, -- Netfounder
[-1] =0, -- User
}
function ChatArrival(curUser, sData)
sData=string.sub(sData,1,string.len(sData)-1)
local _,_,cmd = string.find(sData,"%b<>%s+(%S+)")
if cmd and cmd=="!cls" and CanDo[curUser.iProfile] == 1 then
SendToAll("Cleaner",string.rep("\r\n\r\n",2000))
return 1
end
end
function OpConnected(curUser)
if CanDo[curUser.iProfile] == 1 then
curUser:SendData("$UserCommand 255 7")
curUser:SendData("$UserCommand 1 3 Clear Screen$<%[mynick]> !cls|")
end
end
QuoteOriginally posted by kEwL
dunno y u couldnt find it
but here it is
Lazyness......
i did searched 4 it but nothing came up! just the thread i made
click on one of my signatures, and learn to search,