Jump to content

x[ تمت الافاده ]x


Sfa7

Recommended Posts

واللهه انا م فهمت الطلب لكن اذا كنت تقصد ان لو كنت كونسسل يدخلكـ ع ـتيم وبس .. هذا الكود

-- server side 
  
function crreateTeam () 
    console = createTeam ( "console", 0, 255, 0 ) 
end 
addEventHandler("onResourceStart", resourceRoot, crreateTeam) 
  
function setTeam() 
    if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Console")) then  
   setPlayerTeam(source, console)  
   end 
end 
addEventHandler("onPlayerLogin",getRootElement(),setTeam)  

Link to comment

شوف تقدر تسوي كود للتحقيق في التيم اذا كان في الكونسوال ولا لا

جرب ذا الكود اانا مسويه

team = createTeam("Console",255,0,0) 
  
function Chack() 
    for i,player in ipairs(getPlayersInTeam(team)) do 
        local acc = getPlayerAccount(player) 
        if not isGusetAccount(acc) then 
            if not isObjectInACLGroup("user." .. getAccountName(acc),aclGetGroup("Console")) then 
                setPlayerTeam(player,nil) 
            end 
        else 
            setPlayerTeam(player,nil) 
        end 
    end 
end 
  
setTimer(Chack,5000,0) 
  
addEventHandler("onPlayerLogin",root, 
    function (_,acc) 
        if isObjectInACLGroup("user." .. getAccountName(acc),aclGetGroup("Console")) then 
            setPlayerTeam(source,team) 
        end 
    end 
) 

كل 5 ثواني يتحقق

Link to comment

اخوي طلال كودك للاسف ماضبط

انا كونسل وخويي اداره مهو كونسل

لو خويي دخل نفسه من الادمنيه عادي يدخله ؟؟

ومايطرده انتضرت 10 دقاايق وخويي داخل معي بـ التيم ليه ماطرده ؟

انا ابي التيم يدخل فقط الكونسل

اذا مو كونسل يطرده

Link to comment
team = createTeam("Console",255,0,0) 
  
function Chack() 
    for i,player in ipairs(getPlayersInTeam(team)) do 
        local acc = getPlayerAccount(player) 
        if not isGusetAccount(acc) then 
            if isObjectInACLGroup("user." .. getAccountName(acc),aclGetGroup("Console")) then 
                setPlayerTeam(player,team) 
            end 
        else 
            setPlayerTeam(player,nil) 
        end 
    end 
end 
  
setTimer(Chack,5000,0) 
  
addEventHandler("onPlayerLogin",root, 
    function (_,acc) 
        if isObjectInACLGroup("user." .. getAccountName(acc),aclGetGroup("Console")) then 
            setPlayerTeam(source,team) 
        end 
    end 
) 

يمكن كذا :roll:

! كود طلال

Link to comment
team = createTeam("Console",255,0,0) 
  
function Chack() 
    for i,player in ipairs(getPlayersInTeam(team)) do 
        local acc = getPlayerAccount(player) 
        local playerTeam = getPlayerTeam(player) 
        if not isGuestAccount(acc) then 
            if isObjectInACLGroup("user."..getAccountName(acc), aclGetGroup("Console")) then 
                if playerTeam ~= team then 
                    setPlayerTeam(player, team) 
                end 
            else 
                if playerTeam == team then 
                    setPlayerTeam(player, nil) 
                end 
            end 
        end 
    end 
end 
setTimer(Chack,5000,0) 

Link to comment

تابل جربته وماضبط

بس بسالك التيم انا اسويه من الادمنيه ولا هو يجي من نفسه ؟

لني انا سويته من الادمنيه

واول ما اشغل الكود ماطلعلي التيم بـ التاب ورحت سويته من الادمنيه

ومايطرد خويي انا كونسل وخويي اداره مايطرده

><

Link to comment
تابل جربته وماضبط

بس بسالك التيم انا اسويه من الادمنيه ولا هو يجي من نفسه ؟

لني انا سويته من الادمنيه

واول ما اشغل الكود ماطلعلي التيم بـ التاب ورحت سويته من الادمنيه

ومايطرد خويي انا كونسل وخويي اداره مايطرده

><

بكود تابل يسوي تيم

+

الكود سيرفر

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...