-
Posts
1,830 -
Joined
-
Last visited
Everything posted by Me[Z]oO
-
تمت الاضافة
-
افتتاح عرب برو www.arab-pro.com | Arab-PrO
Me[Z]oO replied to Sha[D]owPrO's topic in Arabic / العربية
السلام عليكم ض1 السيرفر طبعا فتحته بالدراسة وعملت شخصية شادو لما كان بالدراسة جاب 34 لاعب المودات للبيع الي يبيها skype : mezo.prince1 والسلام خير الختام -
الاصدار الثاني من سكربت حفظ المكان 2.0 | Place System
Me[Z]oO replied to #STZ's topic in Arabic / العربية
بالتوفيق مود حلو ولكن هنا في حشيش هههههههههههههههههههههههههههههههههه -
انا خربطت بحكاية الدقيقة ذي المهم بعدلها اسف
-
كوده اسهل بكثير اكتب باف 8 playsound mezo playsound azooz playsound اسم ملف الاغنية
-
triggerServerEvent triggerClientEvent وتحدد العناصر
-
منورين الموضوع
-
يسلمو جابر <3
-
for i,k in ipairs (getElementsByType("player")) do if k ~= localPlayer هو متحقق ان اللوب م يشمل اللوكل بلاير يب الكود صحيح
-
يسلمو احمد منور <3
-
يسلمو دابل تلميذك <3
-
guiAntiFlood فائدتها تقوم بقفل الزر بحسب الوقت الذي تريده guiAntiFlood(int element , timer) Required Arguments ---element: the GUI element you wish to enable or disable ---timer: a time to Enable the element (true) Code : function guiAntiFlood(element, timer) if getElementType ( element ) == "gui-button" then local atimer = tonumber(timer) if atimer == nil or atimer == '' or not tonumber(atimer) then error("Bad Argument the Argument 2 must number") else end guiSetEnabled(element,false) setTimer(function() guiSetEnabled(element,true) end,tonumber(atimer),1) else error("Bad Argument 1 the element must button") end end Example : addEventHandler("onClientGUIClick",button, function() setElementHealth(localPlayer,100) guiAntiFlood(button,2000) end) --للتوضيح --2000 هيك خليت البوتون يغلق لمدة ثانيتين --10000 = ثانية --10000 دقيقة -- تقدر تضرب عدد الدقايق او الثواني مثال --guiAntiFlood(button,2*10000) هيك يقفل لمدة دقيقتين طبعا الكود سهل وبسيط ولكن بعض المبرمجين المبتدئين سئلوني كيف اخلي اللاعب م يكرر الضغط مشان بياخد كل شوي دم من الزر والسلام عليكم ورحمة الله وبركاته
-
افتتاح عرب برو www.arab-pro.com | Arab-PrO
Me[Z]oO replied to Sha[D]owPrO's topic in Arabic / العربية
رح تقول اني انا شادو صح ؟ خلاص تقريبا الكل عرف =) -
؟ ليش مثلا لين يدوس زر الدخول يسجل دخوله بعدين يسوي تريقر كلنت يخفي اللوحة
-
العفو حياك الله =) ويوفقك انت كمان
-
--Client GUIEditor = { button = {}, window = {}, label = {}, edit = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(247, 202, 299, 272, "Time", false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetVisible(GUIEditor.window[1],false) GUIEditor.button[1] = guiCreateButton(9, 24, 108, 39, "Edit Time", false, GUIEditor.window[1]) GUIEditor.edit[1] = guiCreateEdit(121, 32, 85, 27, "", false, GUIEditor.window[1]) GUIEditor.edit[2] = guiCreateEdit(211, 32, 73, 25, "", false, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(11, 228, 271, 26, "Created By KilleR | v.1.5", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[1], 255, 0, 0) GUIEditor.button[2] = guiCreateButton(195, 0, 74, 22, "×", false, GUIEditor.label[1]) GUIEditor.label[2] = guiCreateLabel(27, 102, 237, 61, "طـــــــــــــــــآرهــــــــــــــــ", false, GUIEditor.window[1]) guiLabelSetColor(GUIEditor.label[2], 96, 254, 0) end ) addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.button[1] ) then local hours = guiGetText ( GUIEditor.edit[1] ) local mins = guiGetText ( GUIEditor.edit[2] ) triggerServerEvent("Time",localPlayer,hours,mins) elseif ( source == GUIEditor.button[2] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor ( false ) end end ) addEvent ( "OpenWindow", true ) addEventHandler ( "OpenWindow", root, function ( ) guiSetVisible ( GUIEditor.window[1],not guiGetVisible ( GUIEditor.window[1] ) ) showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) end ) --Server local Groups = { "Level 4", "Level 5", "Level 6", "Head.Admin", "Console", } addCommandHandler ( "TimeEdit", function ( p ) if not getPlayerAccount ( p ) or isGuestAccount(getPlayerAccount ( p )) then return end for _,v in ipairs ( Groups ) do if isObjectInACLGroup( "user."..getAccountName( getPlayerAccount ( p ) ), aclGetGroup ( v )) then triggerClientEvent ( p, "OpenWindow", p ) break end end end) addEvent("Time",true) addEventHandler("Time",root, function(hours,mins) setTime(tonumber(hours),tonumber(mins)) end)
-
اها انا بالغلط حطيت سترنق مشكور عالتنبيه