can someone make so that this scripts allows non-regged/normal users to download from other non-regged/normal users, but still get blocked if they try to download from REG, VIPs and OPs-- disableStuff by Pur, 27-2-2005
-- 1 = ON 0 = OFF
-- modded by blackwings
dlregonly = 1;
disabledDownloadMsg = "unregistered users may not download"
function ConnectToMeArrival(curUser, Data)
if curUser.bRegistered==nil and dlregonly==1 then
curUser:SendData(""..disabledDownloadMsg)
return 1;
end
end
function MultiConnectToMeArrival(curUser, Data)
if curUser.bRegistered==nil and dlregonly==1 then
curUser:SendData(""..disabledDownloadMsg)
return 1;
end
end
function RevConnectToMeArrival(curUser, Data)
if curUser.bRegistered==nil and dlregonly==1 then
curUser:SendData(""..disabledDownloadMsg)
return 1;
end
end