Jump to content

تصحيح كود


Recommended Posts

السلام عليكم ورحمه الله وبركاته

الحين انا مسوي انه لم يحدد اسم حساب من الجريد ليست ..

ويضغط يزر يعطيه رتبه

اكوادي ..

-C
function Active( ) 
addEvent ( "onClientGUIClick" ,
addEventHandler ( "onClientGUIClick")
if  source == addactive  then
if guiGridListGetSelectedItem ( account ) then
triggerServerEvent("active")
end
end
end
)

-S
addEvent('active')
addEventHandler('active',root,
function ( account , )
if ( getPlayerAccount ( account ) ) then 
aclGroupAddObject("Rank") ( getPlayerAccount(getPlayerAccount(account))
end
end
end
)

 

Link to comment
addEventHandler ( "onClientGUIClick", button,
	function ( )
		local account = guiGridListGetItemText ( grid, guiGridListGetSelectedItem ( grid ), 1 )
		if account == "" then return end
			triggerServerEvent ( "Active", localPlayer, account )
		end
, false )


-- Server
addEvent ( "Active", true )
addEventHandler ( "Active", root,
	function ( accName )
		if accName then
			local account = getAccount ( accName )
			if account then
				aclGroupAddObject (aclGetGroup("GroupName"), "user.".getAccountName(account))
			end
		end
	end
)

بدلـ button = بأسم الزر

grid = بأسم القريد لست حقك

GroupName = إسم القروب التبي تضيفه له

Link to comment
13 minutes ago, Deativated said:

addEventHandler ( "onClientGUIClick", button,
	function ( )
		local account = guiGridListGetItemText ( grid, guiGridListGetSelectedItem ( grid ), 1 )
		if account == "" then return end
			triggerServerEvent ( "Active", localPlayer, account )
		end
, false )


-- Server
addEvent ( "Active", true )
addEventHandler ( "Active", root,
	function ( accName )
		if accName then
			local account = getAccount ( accName )
			if account then
				aclGroupAddObject (aclGetGroup("GroupName"), "user.".getAccountName(account))
			end
		end
	end
)

بدلـ button = بأسم الزر

grid = بأسم القريد لست حقك

GroupName = إسم القروب التبي تضيفه له

خطاء في السطر ذا  - S

				aclGroupAddObject (aclGetGroup("Rank"), "user.".getAccountName(account))

+ خطا الارقمنت في كلينت 

addEventHandler ( "onClientGUIClick", add_rank,
Link to comment



addEventHandler ( "onClientGUIClick", root,
    function ( )
        local account = guiGridListGetItemText ( grid, guiGridListGetSelectedItem ( grid ), 1 )
        if ( source == button ) then
         if ( account ~= -1 ) then  
            triggerServerEvent ( "Active", localPlayer, account )
end
end
end
)


-- Server
addEvent ( "Active", true )
addEventHandler ( "Active", root,
    function ( accName )
              local account = getAccountName(getPlayerAccount(accName))
                if account then
                  aclGroupAddObject (aclGetGroup( 'اسم الرتبة'),"user."..account)
            end
        end
)



 

Link to comment
24 minutes ago, Abdul KariM said:

@Kara ما دام اسم الحساب سترنق لين ترجع تجيب اسمه من جديد

حاط سترنق وهي للاعب getPlayerAccount وعندك غلط في 

 

انا حاسس انه القريد ليست فيه لاعبين مب حسابات هوا مب موضح فقط .وانا مشيت علي احساسبي :] 

Link to comment
11 hours ago, Kara said:

انا حاسس انه القريد ليست فيه لاعبين مب حسابات هوا مب موضح فقط .وانا مشيت علي احساسبي :] 

كنت اقصد اسم الحساب + مشكور ع كل حال

12 hours ago, Kara said:



addEventHandler ( "onClientGUIClick", root,
    function ( )
        local account = guiGridListGetItemText ( grid, guiGridListGetSelectedItem ( grid ), 1 )
        if ( source == button ) then
         if ( account ~= -1 ) then  
            triggerServerEvent ( "Active", localPlayer, account )
end
end
end
)


-- Server
addEvent ( "Active", true )
addEventHandler ( "Active", root,
    function ( accName )
              local account = getAccountName(getPlayerAccount(accName))
                if account then
                  aclGroupAddObject (aclGetGroup( 'اسم الرتبة'),"user."..account)
            end
        end
)



 

+ الكود فيه خطا + مايظهر شي بل دي بق

Link to comment

خلاص سوي مثل ماقال عبد الكريم 

local account = getAccountName(accName )
12 hours ago, Abdul KariM said:

@Kara ما دام اسم الحساب سترنق لين ترجع تجيب اسمه من جديد

حاط سترنق وهي للاعب getPlayerAccount وعندك غلط في 

 

 

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