Jump to content

x[ إستفسار ]x عن كود .


Guest

Recommended Posts

سلام عليكم, ورحمة الله تعالى وبركاتهه ::
عساكم بخير
آلحين انا سويت كود 

الي هو

function open ()
local pTeam = getPlayerTeam ( source )
if getTeamName ( pTeam ) == "Police" then
guiSetVisible ( Window , not   guiSetVisible ( Window ) )
else 
outputChatBox("# يجب أن تملك رتبة PoLice لـ فتح هذهـ اللوحة .^")
end
end

سويتهه ، آبي اذا ما معه بوليس تجي لوحة اذا ما معه تجيه في شات ما معك 

( .

سويته وما زبط ;| 

والسلام عليكم

Edited by Guest
Link to comment
26 minutes ago, *AnGeL said:

سلام عليكم, ورحمة الله تعالى وبركاتهه ::
عساكم بخير
آلحين انا سويت كود 

الي هو


function open ()
local pTeam = getPlayerTeam ( source )
if getTeamName ( pTeam ) == "Police" then
guiSetVisible ( Window , not   guiSetVisible ( Window ) )
else 
outputChatBox("# يجب أن تملك رتبة PoLice لـ فتح هذهـ اللوحة .^")
end
end

سويتهه ، آبي اذا ما معه بوليس تجي لوحة اذا ما معه تجيه في شات ما معك 

( .

سويته وما زبط ;| 

والسلام عليكم

انت تحققت من الفريق, وليس من القروب حق الأسل -
اذا تبي تتحقق من قروب الاسل بتحتاج تستعمل السيرفر سايد

 

  • Haha 1
Link to comment
function open ()
local pTeam = getPlayerTeam ( localPlayer )
if getTeamName ( pTeam ) == "Police" then
guiSetVisible ( Window , not guiGetVisible ( Window ) )
else 
outputChatBox("# يجب أن تملك رتبة PoLice لـ فتح هذهـ اللوحة .^")
end
end

bindKey( 'f2' , 'down' , open )

 

Link to comment
1 minute ago, Mr.Mostafa said:

bindKey( 'f2' , 'down',
	function openPanel ()
		if getPlayerTeam(localPlayer) == "Police" then
			guiSetVisible ( Window , not guiGetVisible ( Window ) )
		else 
			outputChatBox("* Error : يجب ان تكون بوليس لفتح هذة اللوحة !",255,0,0,true)
		end
	end
)

 

فرقت شئ :|

؟؟؟؟؟

Edited by KillerX
Link to comment
Just now, Rakan# said:

شف كودك زين 


bindKey( 'f2' , 'down',
	function openPanel ()

كيف الفنكشن حاط له اسم ؟

+ وتحقق من اذا كان بفريق بالفعل او لا

 

اها ما انتبهت ..

bindKey( 'f2' , 'down',
	function ()
		if getTeamName(getPlayerTeam(localPlayer)) == getTeamFromName("Police") then
			guiSetVisible ( Window , not guiGetVisible ( Window ) )
		else 
			outputChatBox("* Error : Police Only !",255,0,0,true)
		end
	end
)

 

Link to comment
2 minutes ago, Mr.Mostafa said:

اها ما انتبهت ..


bindKey( 'f2' , 'down',
	function ()
		if getTeamName(getPlayerTeam(localPlayer)) == getTeamFromName("Police") then
			guiSetVisible ( Window , not guiGetVisible ( Window ) )
		else 
			outputChatBox("* Error : Police Only !",255,0,0,true)
		end
	end
)

 

انت حالف تخرب الكود صح ؟

bindKey( 'f2' , 'down',
	function ()
	local xTeam = getPlayerTeam(localPlayer) 
		if xTeam and getTeamName(xTeam) == "Police" then 
			guiSetVisible ( Window , not guiGetVisible ( Window ) )
		else 
			outputChatBox("* Error : Police Only !",255,0,0,true)
		end
	end
)

 

  • Haha 1
Link to comment
43 minutes ago, Rakan# said:

انت حالف تخرب الكود صح ؟


bindKey( 'f2' , 'down',
	function ()
	local xTeam = getPlayerTeam(localPlayer) 
		if xTeam and getTeamName(xTeam) == "Police" then 
			guiSetVisible ( Window , not guiGetVisible ( Window ) )
		else 
			outputChatBox("* Error : Police Only !",255,0,0,true)
		end
	end
)

 

ض1

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