hello all :)
i need a script to protect my ViP's in my hub i use Thr nErBoS "Brain-Master" and in there you dont have ViP protect... so if anyone of you can make it it will be GREAT!
10x :D
what exactly do you want to protect about the vips?
hehehehe high me ! :P
like OP's cant kick or kill ViP's :)
Hi,
Go to the Brain-Master code, and for this function...
function CheckProfile(user, whoto, data)
local time
if (whoto.iProfile == 0) then
time = 0
elseif (whoto.iProfile == 4) then
if(user.iProfile == 0) then
time = 1
else
time = 0
end
elseif (whoto.iProfile == 1) then
if(user.iProfile == 0 or user.iProfile == 4) then
time = 1
else
time = 0
end
else
time = 1
end
return time
end
put this one instead....
function CheckProfile(user, whoto, data)
local time = 0
if (whoto.iProfile == 0) then
time = 0
elseif (whoto.iProfile == 4) then
if(user.iProfile == 0) then
time = 1
end
elseif (whoto.iProfile == 1 or whoto.iProfile == 2) then
if(user.iProfile == 0 or user.iProfile == 4) then
time = 1
end
else
time = 1
end
return time
end
Best regards, nErBoS
hehe GREATR nErBoS your script is the best one !!! :)