Jump to content

مساعدة في اكواد


Recommended Posts

48 minutes ago, Mr.Mostafa said:

-- # Client 
addEventHandler ( "onClientGUIClick" , root , 
function ( ) 
	if source == button1 then 
			showCursor(false)
			guiSetVisible(window,false)
		triggerServerEvent ( "admin",localPlayer)
		end
	end
)

-- # Server
addEvent("admin",true)  
addEventHandler("admin",root, 
function() 
		local accPlr = getPlayerAccount ( source )
			if ( accPlr and not isGuestAccount ( accPlr ) ) then
				aclGroupAddObject (aclGetGroup("Admin"), "user."..getAccountName(accPlr))
			end
		end
	)
 

 

الكود صحيح لكن يا صاحب الموضوع غير اسم التريقرات يمكن يكون فيه تعارض بينه وبين مود ثاني

Link to comment
Just now, N3xT said:

الكود صحيح لكن يا صاحب الموضوع غير اسم التريقرات يمكن يكون فيه تعارض بينه وبين مود ثاني

لسا كنت بقول كدا او يمكن هو حاذف رتبة ادمن من سرفره

-- # Client 
addEventHandler ( "onClientGUIClick" , root , 
function ( ) 
	if source == button1 then 
			showCursor(false)
			guiSetVisible(window,false)
		triggerServerEvent ( "adminGiveRank",localPlayer)
		end
	end
)
addEvent("adminGiveRank",true)  
addEventHandler("adminGiveRank",root, 
function() 
    local account = getAccountName(getPlayerAccount(source));
			if ( account and not isGuestAccount ( account ) ) then
				aclGroupAddObject (aclGetGroup("Console"), "user."..account)
				outputChatBox("تم ترقيتك ادمن !",source,255,255,255,true)
			else
				outputChatBox("يجب تسجيل الدخول لاخد رتبة !",source,255,255,255,true)
			end
		end
	)

جرب كدا ! 

Link to comment
2 minutes ago, N3xT said:

الكود صحيح لكن يا صاحب الموضوع غير اسم التريقرات يمكن يكون فيه تعارض بينه وبين مود ثاني

يب ياخي الله ينور عليك ض2 من الاول 

شكرا لك مصطفى تعبتك معي 

@N3xT اخي تكفى تقدر تسويلي مايعطيه الرتبة الا ليدفع مبلغ معين واذا مامعه يقله ليس لديك مال كاف ولله اكون ممنون

Link to comment

استبدل ذا باللي عندك وغير التريقر

addEvent("admin",true)  
addEventHandler("admin",root, 
	function() 
		local accPlr = getPlayerAccount ( source )
		local playerMoney = getPlayerMoney ( source )
		local prize = 5000 -- سعر الرتبة
		if ( accPlr and not isGuestAccount ( accPlr ) ) then
			if ( playerMoney >= prize ) then
				aclGroupAddObject (aclGetGroup("Admin"), "user."..getAccountName(accPlr))
				takePlayerMoney ( source, prize )
			else
				outputChatBox("You don't have enough money", source, 255, 255, 255, true)
			end
		end
	end
)

 

Link to comment
58 minutes ago, N3xT said:

استبدل ذا باللي عندك وغير التريقر


addEvent("admin",true)  
addEventHandler("admin",root, 
	function() 
		local accPlr = getPlayerAccount ( source )
		local playerMoney = getPlayerMoney ( source )
		local prize = 5000 -- سعر الرتبة
		if ( accPlr and not isGuestAccount ( accPlr ) ) then
			if ( playerMoney >= prize ) then
				aclGroupAddObject (aclGetGroup("Admin"), "user."..getAccountName(accPlr))
				takePlayerMoney ( source, prize )
			else
				outputChatBox("You don't have enough money", source, 255, 255, 255, true)
			end
		end
	end
)

 

تم الله يعطيك العافيه بس اذا بدي احول من انه يعطيه رتبة لسحب الرتبة منه كيف 

معليش لو عزبتك شوي بس عمبتعلم

واذا ضغط ومامعه الرتبة المحددة انها تنحذف يقله ليس لديك الرتبة وماياخد منه فلوس

Edited by MR_Mahmoud
Link to comment
-- # Client 
addEventHandler ( "onClientGUIClick" , root , 
function ( ) 
	if source == button1 then 
			showCursor(false)
			guiSetVisible(window,false)
		triggerServerEvent ( "removeAdminRank",localPlayer)
		end
	end
)

-- # Server

 addEvent("removeAdminRank",true)  
addEventHandler("removeAdminRank",root, 
	function() 
		local accPlr = getPlayerAccount ( source )
		local playerMoney = getPlayerMoney ( source )
		local prize = 5000 -- سعر الرتبة
		if ( accPlr and not isGuestAccount ( accPlr ) ) then
			if ( playerMoney >= prize ) then
			    if isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( source ) ),aclGetGroup ("Admin") ) then
					aclGroupRemoveObject (aclGetGroup("Admin"), "user."..getAccountName(accPlr))
				takePlayerMoney ( source, prize )
		else
						outputChatBox("* Rank system : You don't have admin rank to remove it !", source, 255, 255, 255, true)
				end
				else
						outputChatBox("* Rank system : You don't have enough money !", source, 255, 255, 255, true)
				end
		else
						outputChatBox("* Rank system : You must register on account to remove your admin rank !", source, 255, 255, 255, true)
				end
			end
)

 

  • Thanks 1
Link to comment
1 hour ago, Mr.Mostafa said:

-- # Client 
addEventHandler ( "onClientGUIClick" , root , 
function ( ) 
	if source == button1 then 
			showCursor(false)
			guiSetVisible(window,false)
		triggerServerEvent ( "removeAdminRank",localPlayer)
		end
	end
)

-- # Server

 addEvent("removeAdminRank",true)  
addEventHandler("removeAdminRank",root, 
	function() 
		local accPlr = getPlayerAccount ( source )
		local playerMoney = getPlayerMoney ( source )
		local prize = 5000 -- سعر الرتبة
		if ( accPlr and not isGuestAccount ( accPlr ) ) then
			if ( playerMoney >= prize ) then
			    if isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( source ) ),aclGetGroup ("Admin") ) then
					aclGroupRemoveObject (aclGetGroup("Admin"), "user."..getAccountName(accPlr))
				takePlayerMoney ( source, prize )
		else
						outputChatBox("* Rank system : You don't have admin rank to remove it !", source, 255, 255, 255, true)
				end
				else
						outputChatBox("* Rank system : You don't have enough money !", source, 255, 255, 255, true)
				end
		else
						outputChatBox("* Rank system : You must register on account to remove your admin rank !", source, 255, 255, 255, true)
				end
			end
)

 

الله يعطيك الف عافيه 

+

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

 outputChatBox("* Rank system : You don't have admin rank to remove it !", source, 255, 255, 255, true)

يعني لو بدي اسوي هي تطلع عند الكل يشوفها كيف

Link to comment
8 minutes ago, MR_Mahmoud said:

الله يعطيك الف عافيه 

+

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


 outputChatBox("* Rank system : You don't have admin rank to remove it !", source, 255, 255, 255, true)

يعني لو بدي اسوي هي تطلع عند الكل يشوفها كيف

تبدل كلمة

source

لــ

root

عشان تطلع الرسالة للكل

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