Jump to content

x[ مساعدة ]x في فانكشن طرد و اضافة


Recommended Posts

ألسلام عليكم
كيف الحال؟

هذا كود حماية رتب صاحب سيرفر اذا احد يعطي رتب صاحب سيرفر تنسحب تلقائيـا ! فقط صاحب هذا الحساب يقدر!! اريد اسوي إضافة
اذا شخص اخر !! رتبة تنسحب تلقائيـا && يأخذ بـاند



local allowed = {
["user.Mr"] = true,

}

setTimer(
function()
 for _,account in ipairs(aclGroupListObjects(aclGetGroup("Console"))) do
  if string.find(account,"user.") then
   if not allowed[account] then
   local ALL = false
    for k,v in pairs(allowed) do
     if account == k then
     ALL = true
     break
     end
    end
    if ALL == false then
    aclGroupRemoveObject (aclGetGroup("Console"), account)
    else
    aclGroupAddObject (aclGetGroup("Console"), account)
    end
   end
  end
 end
end,50,0)

 

Link to comment
1 minute ago, #_iMr.[E]coo said:

وضح اكثر

الآن
انت اسم حسابك
iMr.[E]coo
اذا تروح للأسـل و تعطي شخص رتبـ’ كونـسـل ! رتبـة راح تـنـسـحب !! ليش؟
لان هذا مود فقط حسـاب
Mr
يعطي رتـبـة كونسل لأي شخص
** مود حماية

___
المود أي شخص يعطي رتبة كونسل! = يتـم سـحـب رتبـة تلقائـي !!
انا اريد اسوي إضافة يصكة باند

Link to comment
2 minutes ago, #_iMr.[E]coo said:

ما تقدر , لازم تعدل من لوحة الادمن

مممممممممممممممممممممم
أؤكـ
___
سوؤال
اريد اضيف رتـبـة اخري !
هو المود الان علي رتـبـة الكـونـسـول ,, اريد اضيف رتـبـة اخـري
يعني 2 رتـبـة مو رتبـة1 فقطط
كيف؟

Link to comment
local aGroup = { "Console" , "Admin" } 

local allowed = {
["user.Mr"] = true,

}

setTimer(
function()
    for _,group in ipairs(aGroup) do
 for _,account in ipairs(aclGroupListObjects(aclGetGroup(group))) do
  if string.find(account,"user.") then
   if not allowed[account] then
   local ALL = false
    for k,v in pairs(allowed) do
     if account == k then
     ALL = true
     break
     end
    end
    if ALL == false then
    aclGroupRemoveObject (aclGetGroup("Console"), account)
    else
    aclGroupAddObject (aclGetGroup("Console"), account)
    end
   end
  end
  end
 end
end,50,0)

 

Link to comment
41 minutes ago, #_iMr.[E]coo said:

local aGroup = { "Console" , "Admin" } 

local allowed = {
["user.Mr"] = true,

}

setTimer(
function()
    for _,group in ipairs(aGroup) do
 for _,account in ipairs(aclGroupListObjects(aclGetGroup(group))) do
  if string.find(account,"user.") then
   if not allowed[account] then
   local ALL = false
    for k,v in pairs(allowed) do
     if account == k then
     ALL = true
     break
     end
    end
    if ALL == false then
    aclGroupRemoveObject (aclGetGroup("Console"), account)
    else
    aclGroupAddObject (aclGetGroup("Console"), account)
    end
   end
  end
  end
 end
end,50,0)

 

خـطـاء!!
فقط رتبة الكونسل انسـحـبـت ! و رتـبـة الادمن لم تنسحب

Link to comment
 
local aGroup = { "Console" , "Admin" } 

local allowed = {
["user.Mr"] = true,

}

setTimer(
function()
    for _,group in ipairs(aGroup) do
 for _,account in ipairs(aclGroupListObjects(aclGetGroup(group))) do
  if string.find(account,"user.") then
   if not allowed[account] then
   local ALL = false
    for k,v in pairs(allowed) do
     if account == k then
     ALL = true
     break
     end
    end
    if ALL == false then
    aclGroupRemoveObject (aclGetGroup(group), account)
    else
    aclGroupAddObject (aclGetGroup(group), account)
    end
   end
  end
  end
 end
end,50,0)

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...