-
Posts
1,007 -
Joined
-
Last visited
-
Days Won
9
Everything posted by #StrOnG_,)
-
كذا يصير الكود ؟ addEventHandler ( "onClientGUIClick", root, function () if source == x8 then giveWeapon ( source, 31, 200 ) end end )
-
السلامم عليكم شباب أبي كود من اضغط على زر يعطيني سلاح يعطيني عبر الأيدي انا احدده وشكرآ , ~
-
السلام عليكم ورحمه الله وبركاته كيفكم شباب ؟ , ان شاء الله بخير اليوم اقدم لكم مود احظار أحداثيات اللأعب فيديو للمود https://www.youtube.com/watch?v=U2UlLlh8C5k
-
شكراً لك , تمت الأفادة
-
السلام عليكم , شباب ابي كود الكتابة فوق الليبل او الزر توضيح : http://cdn.top4top.net/i_dd1a8535e61.png
-
شكراً لكم ~ :] تمت الأفادة
-
السسلام عليكم ورحمه الله وبركاته كيفكم شباب ؟ أن شاء الله بخير .. أبي كود تلوين الليبل كل 20 ثانيةة وشكراً
-
تمت الأفادة من قبل مودير بالسكآيب , $
-
السلام عليكم ورحمه الله وبركاته كيفكم شباب ؟ ان شاء الله بخير . المهم ممكن كود جعل الزر Button دي اكس وشكراً
-
ممكن مثال , .. ؟
-
شكراً لك بس بقي كود عدد قتل اللآعب يضهر جنب أسمه أذا معك اتمنى ما تقصر معي
-
GUIEditor = { button = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() wnd = guiCreateGridList(219, 103, 345, 445, false) guiGridListAddColumn(wnd, "=[ Top Kill By ~|Strong|~ ]=", 0.9) guiSetAlpha(wnd, 0.84) GUIEditor.label[2] = guiCreateLabel(6, 35, 82, 16, "Player Name :", false, wnd) guiSetFont(GUIEditor.label[2], "default-bold-small") guiLabelSetColor(GUIEditor.label[2], 255, 0, 0) GUIEditor.label[3] = guiCreateLabel(226, 34, 32, 17, "Kills : ", false, wnd) guiLabelSetColor(GUIEditor.label[3], 255, 0, 0) GUIEditor.button[1] = guiCreateButton(0.46, 0.06, 0.05, 0.94, "", true, wnd) guiSetAlpha(GUIEditor.button[1], 0.52) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") end )
-
GUIEditor = { button = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() wnd = guiCreateGridList(219, 103, 345, 445, false) guiGridListAddColumn(wnd, "=[ Top Kill By ~|Strong|~ ]=", 0.9) guiSetAlpha(wnd, 0.84) GUIEditor.label[2] = guiCreateLabel(6, 35, 82, 16, "Player Name :", false, wnd) guiSetFont(GUIEditor.label[2], "default-bold-small") guiLabelSetColor(GUIEditor.label[2], 255, 0, 0) GUIEditor.label[3] = guiCreateLabel(226, 34, 32, 17, "Kills : ", false, wnd) guiLabelSetColor(GUIEditor.label[3], 255, 0, 0) GUIEditor.button[1] = guiCreateButton(0.46, 0.06, 0.05, 0.94, "", true, wnd) guiSetAlpha(GUIEditor.button[1], 0.52) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") end ) function OpenWin() if guiGetVisible ( wnd ) then guiSetVisible ( wnd, false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( wnd, true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F7", "down", OpenWin) ----------------------------------------------------------------- ---------- local List = wnd addEventHandler("onClientResourceStart", resourceRoot, function ( ) local players = getElementsByType("player") for _ , player in ipairs ( players ) do local name = string.gsub( getPlayerName( player ), "#%x%x%x%x%x%x", "" ) local row = guiGridListAddRow( List ) guiGridListSetItemText( List, row, 1, name ) end end )
-
جربت الكود , بس ما يجيب اسم اللآعب
-
شكراً لك , + بس كود عدد قتل اللاعب جنب أسمه لو سمحت
-
ألسسلام عليكم كيفكم شباب ؟ أن شاء الله بخير . المهم أنا سويت توب القتل بس احتاج كود جلب اسماء اللأعبين + كم قتل أتمنى فهمتوني وشكراً
-
ممكن مثآل ؟ + انا ابيها بـ Button
-
السسلآم عليكم ورحمه الله وبركاته كيفكم شباب ؟ ان شاء الله بخير . شباب انا سويت لوحة تغير الطقس بس احتاج ألاكواد حتى يتغير الطقس اكواد اللوحة function guiCreateWindow(x,y,w,h,text,re) local wnd = wnd(x,y,w,h,"wnd.png",re) local lable = guiCreateLabel(0,0,1,0.1,text,re,wnd) guiLabelSetHorizontalAlign(lable,"center") return wnd end function centerWindow(center_window) local screenW,screenH=guiGetScreenSize() local windowW,windowH=guiGetSize(center_window,false) local x,y = (screenW-windowW)/2,(screenH-windowH)/2 guiSetPosition(center_window,x,y,false) end GUIEditor = { button = {}, label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() wnd = guiCreateStaticImage(163, 109, 427, 394, "wnd.png", false) GUIEditor.label[1] = guiCreateLabel(1, 1, 422, 19, "Change Weather By ~|Strong|~ ", false, wnd) guiLabelSetColor(GUIEditor.label[1], 40, 87, 83) GUIEditor.button[1] = guiCreateButton(6, 54, 86, 48, "طقس ممطر", false, wnd) guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") GUIEditor.button[2] = guiCreateButton(176, 54, 96, 48, "طقس مشمس", false, wnd) guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFAAAAAA") GUIEditor.button[3] = guiCreateButton(337, 54, 86, 38, "طقس مشمس", false, wnd) guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFAAAAAA") GUIEditor.button[4] = guiCreateButton(6, 185, 86, 48, "ألطقس مشرق", false, wnd) guiSetProperty(GUIEditor.button[4], "NormalTextColour", "FFAAAAAA") GUIEditor.button[5] = guiCreateButton(176, 185, 96, 48, "ألطقس مشرق", false, wnd) guiSetProperty(GUIEditor.button[5], "NormalTextColour", "FFAAAAAA") GUIEditor.button[6] = guiCreateButton(337, 185, 86, 48, "ضــبــآب", false, wnd) guiSetProperty(GUIEditor.button[6], "NormalTextColour", "FFAAAAAA") GUIEditor.button[7] = guiCreateButton(337, 315, 86, 48, "طقـس صآفـي", false, wnd) guiSetProperty(GUIEditor.button[7], "NormalTextColour", "FFAAAAAA") GUIEditor.button[8] = guiCreateButton(176, 315, 96, 48, "طقس مشمس 2", false, wnd) guiSetProperty(GUIEditor.button[8], "NormalTextColour", "FFAAAAAA") GUIEditor.button[9] = guiCreateButton(6, 319, 86, 48, "طقس غآئم", false, wnd) guiSetProperty(GUIEditor.button[9], "NormalTextColour", "FFAAAAAA") end )
-
هذا الكود ؟ elseif ( source == Button1 ) then if ( guiGridListGetSelectedItem ( GridList ) ~= -1 ) then if ( isTimer ( Timer ) ) then return end
-
السسلآم عليكم ورحمه الله وبركاته كيفكم شباب ؟؟ المهمم , أبي كود زر الآنتقالات للقريد ليست , مع مثال بسيط اتمنى فهمتوني وشكراً
-
تمت ألآفادة من قبل شويكي
-
من أركب الكود , اللوحة تخرب
-
السسسلآم عليكم ورحمه الله وبركاته كيف الحآل أن شاء الله بخير .. ألمهم ,, شباب ابي كود ألخروج من اللوحة يعني مثلآ سويت لوحة وسويت Button وأبي من أضغط على ألـ Button يخرج من اللوحة أتمنى فهمتوني , + أذا ما في تعب ابي مثال بسيط وشكرآ