-
Posts
1,004 -
Joined
-
Days Won
1
Everything posted by Simple.
-
آلسلام عليكم , انا عندي لوحة تسجيل ودخول ضبطت كل شي بس عندي مشكله لما آشغل المود تطلع النافذه على طول , ولما آضغط على لوقين , مآيسجل دخولي وآلريجستر نفس آلمشكله ومآيطلع بآلديبوق شي ! وهذا الكود - كلنت local screen = { guiGetScreenSize() } local w, h = 515, 315 local x, y = (screen[1] - w) / 2, ( screen[2] - h ) / 2 GUIEditor = { memo = {}, staticimage = {} } GUIEditor.staticimage[1] = guiCreateStaticImage(266, 196, 515, 315, "Panel.png", false) guiSetVisible(GUIEditor.staticimage[1], false) login = guiCreateButton(130, 276, 118, 24, "", false, GUIEditor.staticimage[1]) guiSetAlpha(login, 0.00) guiSetProperty(login, "NormalTextColour", "FFAAAAAA") register = guiCreateButton(273, 273, 115, 27, "", false, GUIEditor.staticimage[1]) guiSetAlpha(register, 0.00) guiSetProperty(register, "NormalTextColour", "FFAAAAAA") user = guiCreateEdit(230, 96, 158, 34, "", false, GUIEditor.staticimage[1]) guiEditSetMaxLength(user, 10) pass = guiCreateEdit(230, 172, 158, 34, "", false, GUIEditor.staticimage[1]) guiEditSetMasked(pass, true) addEventHandler ("onClientGUIClick", getRootElement(), function(button, state, absoluteX, absoluteY) if ( source == login ) then triggerServerEvent("onlogin",getLocalPlayer(),user,pass) elseif ( source == register ) then triggerServerEvent("onregister",getLocalPlayer(),user,pass) end end ) function guiAddInterpolateEffect(...) return call(getResourceFromName("GIE"), "guiAddInterpolateEffect", unpack({...})) end bindKey("F5", "down", function() local isVisible = guiGetVisible(GUIEditor.staticimage[1]) if isVisible then local cx, cy = guiGetPosition(GUIEditor.staticimage[1], false) local cw, ch = guiGetSize( GUIEditor.staticimage[1], false) guiAddInterpolateEffect(GUIEditor.staticimage[1], cx, cy, cw, ch, 0, 0, 0, 0, 2, "Linear", "Linear", false) else guiAddInterpolateEffect(GUIEditor.staticimage[1], 0, 0, 0, 0, x, y, w, h, 2, "Linear", "Linear", true) end showCursor(not isVisible) end) - سيرفر addEvent("onlogin",true) addEventHandler("onlogin",getRootElement(), function (user,pass) local account = getAccount(user,pass) if ( account ) then logIn(source,account,pass) else outputChatBox("Worng Pass !",source,255,0,0,true) end end ) addEvent("onregister",true) addEventHandler("onregister",getRootElement(), function (user,pass) local account = getAccount(user,pass) if ( account ) then outputChatBox("* This Account is Already Used",source,255,0,0) else addAccount(user,pass) outputChatBox("UserName: " .. user .. " PassWord : " .. pass,source,0,150,255) end end ) - ملآحظهه : اللوحه انا مستخدم المود حق بآين على مآعتقد آلي يخلي آلنافذه تطلع بشكل ثآني يعني من فوق وكذآ
-
.:[ الان، احصل على عضوية خاصة في سيرفر محترفين الالعاب ]:.
Simple. replied to Bssol's topic in Arabic / العربية
اخوي بسول المود منزلينه قبل كم يوم , كاممل !! خآص عشآن آعطيك آلرآبط -
آلسلآمَ عليكم انا آخذت لي سيرفر في ديلوكس ثآني ايام آلعيد مدته شهر , واليوم جيت آبي آدخل السيرفر لقيته طافي وجيت آبي آدخل اللوحه , يقول الآيميل وآلرمز خطاء ولما آحط نسيت كلمة السر واحط الآيميل يقول الآيميل خطاء , آيشش الحل لآهنتم !
-
[7RB-Ar] GangWars حرب العصابات -- ادخل وشوف الصور الجديده
Simple. replied to SaRy,#DanGer's topic in Arabic / العربية
كذآ جراند آلعرب للآسف , كل محد سوآ سيرفر حرب عصابات , قآلو تقلدون وهم مقلدين سيت بآلضبط -
local screen = { guiGetScreenSize( ) } local w, h = 173, 215 local x, y = ( screen[1] - w ) / 2, ( screen[2] - h ) / 2 window = guiCreateWindow( 307, 173, 173, 215, "Support Team", false) guiSetVisible( window, false ) guiSetProperty( window, "CaptionColour", "FF01B5B3") GUIEditor.gridlist[1] = guiCreateGridList(9, 21, 154, 184, false, window) guiGridListAddColumn(GUIEditor.gridlist[1], "Name", 0.9) for i = 1, 10 do guiGridListAddRow(GUIEditor.gridlist[1]) end guiGridListSetItemText(GUIEditor.gridlist[1], 0, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 1, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 2, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 3, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 4, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 5, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 6, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 7, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 8, 1, "-", false, false) guiGridListSetItemText(GUIEditor.gridlist[1], 9, 1, "-", false, false) end ) function guiAddInterpolateEffect( ... ) return call( getResourceFromName( "GIE" ), "guiAddInterpolateEffect", unpack( { ... } ) ) end bindKey('F5','down', function( ) local isVisible = guiGetVisible( window ) if isVisible then local cx, cy = guiGetPosition( window, false ) local cw, ch = guiGetSize( window, false ) guiAddInterpolateEffect( window, cx, cy, cw, ch, 0, 0, 0, 0, 2, "Linear", "Linear", false ) else guiAddInterpolateEffect( window, 0, 0, 0, 0, x, y, w, h, 2, "Linear", "Linear", true ) end showCursor( not isVisible ) end )
-
انا تصير معي , والكود كويس , آغير رآبط آلصوت يضبط
-
مآتبي يعطونك آلسيرفر بكبره مع الزوار والخادم ؟
-
خلآلآص يعطيكم آلعافيه آنحلت آلمشكله ,
-
آلسلام عليكم , كيف آلحال انا سويت كود , سيت كآميرا مآتركس آبيه يخلي آلكاميرا في مكان معين لما يكون عنده تحميل وهذآ آلكود سيرفر setCameraOnPlayerJoin() addEventHandler("onPlayerJoin", root, function () setCameraMatrix( 1424.9074707031, -813.74047851563, 75.584701538086, 1425.0162353516, -812.77020263672, 75.80094909668 ) end ) جربته ومآضبط , فيه مشكله آو شي؟
-
يعطيك آلعافيه ضبط لكن آلكود آلي داخل آلبيت م ضبط myMarker2 = createMarker ( 1299.0317382813 , -796.89575195313 , 1083.6079101563 , "cylinder", 1.5, 0, 204, 255 ) setElementInterior ( element, 5 ) setElementDimension ( element, 12345 ) addEventHandler( "onMarkerHit", myMarker2, function ( element ) setElementInterior ( element, 0, 1330.3448486328, -1066.1788330078, 29.288482666016 ) setElementDimension ( element, 0 ) end) مع إني لما آحطه في برنامج MTA Script Editor مآيطلع لي أخطاء !!
-
معد يشتغل , خلآص كنسلو آلسآلفه ويعطيكم آلعافيه تعبتكم معي
-
سويته سيرفر وللحين على نفس آلمشكله myMarker2 = createMarker ( 1299.6129150391, -796.72637939453, 1084.2080078125, "cylinder", 1.5, 0, 144, 255 ) setElementInterior ( player , 5 ) setElementDimension ( player , 12345 ) function MarkerHit2( player, matchingDimension ) setElementPosition ( player, 1330.3448486328, -1066.1788330078, 29.288482666016 ) setElementInterior ( player , 0 ) setElementDimension ( player , 0 ) end addEventHandler( "onClientMarkerHit", myMarker2, MarkerHit2 )
-
انا مسوي كود آلماركر آلي داخل آلبيت كلنت , يضر يعني ؟