-
Posts
94 -
Joined
-
Last visited
Everything posted by TurnUP
-
كودك كلله خطاء وما ينفهم حتى بالمنتقية قولي بس انت وش تبي تسوي ؟ الكود ما فيه اخطأ الخطأ كان في شي ثاني بس انا حليته, واسف على تسارع في وضع الموضوع
-
السلام عليكم local id = getElementModel(source)if id == 519 or id = 577 and getElementModel(thePlayer) == 61 and thePlayer == getLocalPlayer() then الرجاء تصحيح الاخطأ EDIT: تم حل المشكلة, واسف على تسارع
-
https://forum.multitheftauto.com/viewtopic.php?f=119&t=47731
-
السلام عليكم ممكن حد يصلح ذه الكود وش الخطأ setTimer( triggerClientEvent(player,"EnterV",player) 1000,0)
-
افتح ملف كلنت وضع هذا الكود تحت example GUIEditor_Window[1] = guiCreatewindow(*********) guiSetVisible(GUIEditor_Window[1], false)
-
طيب كيف نبي نحل مشكلتك ... ورنا الكود ايش دخل الكود ؟؟؟ انا جربت مثل ما قال حسان وظبتت بس انا ابيها Cylinder
-
السلام عليكم يا نااااس ما في حل للماركر ؟؟؟؟؟؟؟؟ بجد طقيت منه ومش قابله تنحل معي لما اكون ارتفاع مليووووون متر اروح الماكر طبعا بدون ما اصيبه وتخرج النافذه شو الحل
-
المشكلة ده عندي فقط ولا عند الكل ؟ http://imageshack.us/g/404/11111cq.png/ http://imageshack.us/photo/my-images/208/3333333c.png/
-
هــــــــــام جــدا :مناقشة هامة للجميع أرجو من الكل الدخول
TurnUP replied to MR.S3D's topic in Arabic / العربية
لو الويكي العربي معرب %100 بكون احسن للجميع والطلبات راح تشوفها في القسم قليل -
هــــــــــام جــدا :مناقشة هامة للجميع أرجو من الكل الدخول
TurnUP replied to MR.S3D's topic in Arabic / العربية
على فكرة القسم العربي اكثر من مواضيع اقسام اللغة الاخر -
يتلوين الليبل طبعا غيير الارقام حسب اللون الي تبيه guiLabelSetColor(GUIEditor_Label[1],255,255,0) اما الازرار ما اعرف
-
جرب شوف البنق يظهر ؟؟ كلنت GUIEditor_Window = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Label = {} GUIEditor_Window[1] = guiCreateWindow(288,150,262,437,"Spawn Panel By >>»FAHAD..<<«",false) GUIEditor_Label[1] = guiCreateLabel ( 30,30, 400, 20, "Your Name: ", false,GUIEditor_Window[1]) GUIEditor_Label[2] = guiCreateLabel (30,50, 400, 20, "Your Ping: ", false,GUIEditor_Window[1] ) GUIEditor_Button[1] = guiCreateButton(11,148,77,28,"النخيل",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(163,146,80,29,"الدائري",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(12,242,74,30,"الدخل",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(166,244,77,31,"الغروب",false,GUIEditor_Window[1]) GUIEditor_Button[5] = guiCreateButton(11,327,77,30,"ساحة القتال",false,GUIEditor_Window[1]) GUIEditor_Button[6] = guiCreateButton(165,326,80,28,"مهمة البنك",false,GUIEditor_Window[1]) function resourceStart () bindKey ("F2", "down", menuShow) end addEventHandler ("onClientResourceStart", getResourceRootElement ( getThisResource () ), resourceStart) function menuShow () visableornot = guiGetVisible (GUIEditor_Window[1]) if (visableornot == true) then guiSetVisible (GUIEditor_Window[1], false) showCursor (false) end if (visableornot == false) then guiSetVisible (GUIEditor_Window[1], true) showCursor (true) end end addEventHandler("onClientRender", getRootElement(), function () if guiGetVisible(GUIEditor_Window[1]) then guiSetText(GUIEditor_Label[1],"Your Name: "..getPlayerName(getLocalPlayer())) end end ) ----- addEventHandler("onClientRender",root, function() triggerServerEvent("getIP",localPlayer) end) addEvent("dd",true) addEventHandler("dd",root, function(theIP) guiSetText(GUIEditor_Label[2], "Your IP : " .. theIP) end) سيرفر addEvent("getIP",true) addEventHandler("getIP",root, function() local theIP=getPlayerIP(client) triggerClientEvent(client,"dd",client,theIP) end)
-
اما بالنسبه للبنق انا جربت 1000 طريقة مش ظابته GUIEditor_Window = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Label = {} GUIEditor_Window[1] = guiCreateWindow(288,150,262,437,"Spawn Panel By >>»FAHAD..<<«",false) GUIEditor_Label[1] = guiCreateLabel ( 30,30, 400, 20, "Your Name: ", false,GUIEditor_Window[1]) GUIEditor_Label[2] = guiCreateLabel (30,50, 400, 20, "Your Ping: ", false,GUIEditor_Window[1] ) GUIEditor_Button[1] = guiCreateButton(11,148,77,28,"النخيل",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(163,146,80,29,"الدائري",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(12,242,74,30,"الدخل",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(166,244,77,31,"الغروب",false,GUIEditor_Window[1]) GUIEditor_Button[5] = guiCreateButton(11,327,77,30,"ساحة القتال",false,GUIEditor_Window[1]) GUIEditor_Button[6] = guiCreateButton(165,326,80,28,"مهمة البنك",false,GUIEditor_Window[1]) function resourceStart () bindKey ("F2", "down", menuShow) end addEventHandler ("onClientResourceStart", getResourceRootElement ( getThisResource () ), resourceStart) function menuShow () visableornot = guiGetVisible (GUIEditor_Window[1]) if (visableornot == true) then guiSetVisible (GUIEditor_Window[1], false) showCursor (false) end if (visableornot == false) then guiSetVisible (GUIEditor_Window[1], true) showCursor (true) end end addEventHandler("onClientRender", getRootElement(), function () if guiGetVisible(GUIEditor_Window[1]) then guiSetText(GUIEditor_Label[1],"Your Name: "..getPlayerName(getLocalPlayer())) end end ) function ping1() local ping = getPlayerPing(getLocalPlayer()) guiSetText (GUIEditor_Label[2],"Your Ping: "..tostring(ping1).." " ) end
-
الحين جرب الاسم يظهر كامل ؟؟ GUIEditor_Window = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Label = {} GUIEditor_Window[1] = guiCreateWindow(288,150,262,437,"Spawn Panel By >>»FAHAD..<<«",false) GUIEditor_Label[1] = guiCreateLabel ( 15,400,410,30, "Your Name:", false,GUIEditor_Window[1]) GUIEditor_Label[2] = guiCreateLabel (3, 3, 5, 1, "Your Ping:", false,GUIEditor_Window[1] ) GUIEditor_Button[1] = guiCreateButton(11,148,77,28,"النخيل",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(163,146,80,29,"الدائري",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(12,242,74,30,"الدخل",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(166,244,77,31,"الغروب",false,GUIEditor_Window[1]) GUIEditor_Button[5] = guiCreateButton(11,327,77,30,"ساحة القتال",false,GUIEditor_Window[1]) GUIEditor_Button[6] = guiCreateButton(165,326,80,28,"مهمة البنك",false,GUIEditor_Window[1]) function resourceStart () bindKey ("F2", "down", menuShow) end addEventHandler ("onClientResourceStart", getResourceRootElement ( getThisResource () ), resourceStart) function menuShow () visableornot = guiGetVisible (GUIEditor_Window[1]) if (visableornot == true) then guiSetVisible (GUIEditor_Window[1], false) showCursor (false) end if (visableornot == false) then guiSetVisible (GUIEditor_Window[1], true) showCursor (true) end end addEventHandler("onClientRender", getRootElement(), function () if guiGetVisible(GUIEditor_Window[1]) then guiSetText(GUIEditor_Label[1],"Your Name: "..getPlayerName(getLocalPlayer())) end end ) function Ping() local myPing = getPlayerPing(getLocalPlayer()) guiSetText ( GUIEditor_Label[2], "Your Ping: ".. tostring(myPing) " " ) end
-
اذا عندك الاسم مو كامل يظهر جرب طوٌل طوول الليبل عشان يمكن اسمك طويل
-
الاسم عندي يظهر كامل اما بالنسبه للبنق ما اعرف, انتظر تابل او عاشق الشرق يفيدونك اكتر
-
جرب GUIEditor_Window = {} GUIEditor_Tab = {} GUIEditor_Button = {} GUIEditor_Label = {} GUIEditor_Window[1] = guiCreateWindow(288,150,262,437,"Spawn Panel By >>»FAHAD..<<«",false) GUIEditor_Label[1] = guiCreateLabel ( 15,400,136,30, "Your Name:", true,GUIEditor_Window[1]) GUIEditor_Label[2] = guiCreateLabel (15,400,136,30, "Your Ping", true,GUIEditor_Window[1] ) GUIEditor_Button[1] = guiCreateButton(11,148,77,28,"النخيل",false,GUIEditor_Window[1]) GUIEditor_Button[2] = guiCreateButton(163,146,80,29,"الدائري",false,GUIEditor_Window[1]) GUIEditor_Button[3] = guiCreateButton(12,242,74,30,"الدخل",false,GUIEditor_Window[1]) GUIEditor_Button[4] = guiCreateButton(166,244,77,31,"الغروب",false,GUIEditor_Window[1]) GUIEditor_Button[5] = guiCreateButton(11,327,77,30,"ساحة القتال",false,GUIEditor_Window[1]) GUIEditor_Button[6] = guiCreateButton(165,326,80,28,"مهمة البنك",false,GUIEditor_Window[1]) GUIEditor_Label[1] = guiCreateLabel(15,407,136,30,"By »FAHAD..??«",false,GUIEditor_Window[1]) function resourceStart () bindKey ("F2", "down", menuShow) end addEventHandler ("onClientResourceStart", getResourceRootElement ( getThisResource () ), resourceStart) function menuShow () visableornot = guiGetVisible (GUIEditor_Window[1]) if (visableornot == true) then guiSetVisible (GUIEditor_Window[1], false) showCursor (false) end if (visableornot == false) then guiSetVisible (GUIEditor_Window[1], true) showCursor (true) end end addEventHandler("onClientRender", getRootElement(), function () if guiGetVisible(GUIEditor_Window[1]) then guiSetText(GUIEditor_Label[1],"Your Name: "..getPlayerName(getLocalPlayer())) end end ) function Ping() local myPing = getPlayerPing(getLocalPlayer()) guiSetText ( GUIEditor_Label[2], "Your Ping: ".. tostring(myPing) .." " ) end
-
شوف GUIEditor_Label[1] = guiCreateLabel ( 3, 3, 3, 1, "Your Name:", true,GUIEditor_Window[1]) انت ضبط مكان الليبل
