RoMaNd! Posted October 10, 2013 Share Posted October 10, 2013 السلام عليكم اليوم سويت سكرببت الشخصيات فيه مشكلة لما اضغط على زر x مايطلع ممكن احد يصلحه؟ ويخليه يفتح من اف 1 والصراحه هذا السكربت سهل جدا بس هذي بدايي https://community.multitheftauto.com/in ... ls&id=8007 Link to comment
|~| ALCKASER |~| Posted October 10, 2013 Share Posted October 10, 2013 دقائق ويتم اصلاحة انت بس تبي الزر يغلق ؟ Link to comment
فاّرس Posted October 10, 2013 Share Posted October 10, 2013 لو تعلمت تسوي مودات بعدين نسآعدك , كل شغلك نسخ ولصق لووول, function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "7ASSAN.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 0,0,250, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end 7ASSAN.png ? vehicles = { {"=== / ثوب صيفي", 46}, {"=== / ثوب شتوي", 124}, {"=== / جيش", 260}, {"=== / عصابة", 270}, {"=== / 'طيار", 62}, {"=== / سي جي", 0}, {"=== / بوشنب", 180}, {"=== / مسعف", 275}, {"=== / مهرج", 264}, } vehicles ? ومسوي اينفت على الزر ومتحقق من الزر ؟ لوووووول تخبيص تآيم ومسوي اكاونت داتا ؟ لوول , والي مآخذ الكود منه مو متحقق من الي لمس الماركر triggerClientEvent (hitPlayer,"guishowc",getRootElement(),hitPlayer) hitPlayer ليه مرسله للكلنت ؟ تبي تعطيه حلاوه ؟ Link to comment
AboShanab Posted October 10, 2013 Share Posted October 10, 2013 -- # Client Side ! function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "7ASSAN.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 0,0,250, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end Wnd = guiCreateWindow(214,117,416,345,":: Skin System ::",false) button = guiCreateButton(370,27,35,14,"X",false,Wnd) Label2 = guiCreateLabel(145,48,125,25,"سكربت اختيار الشخصية من قبل روماند ",false,Wnd) guiLabelSetColor(Label2,0,255,15) guiLabelSetColor(Label1,255,0,0) showCursor(false) guiSetVisible( Wnd, false ) guiWindowSetSizable( Wnd, false ) guiWindowSetMovable( Wnd, false ) skin = { {"=== / ثوب صيفي", 46}, {"=== / ثوب شتوي", 124}, {"=== / جيش", 260}, {"=== / عصابة", 270}, {"=== / 'طيار", 62}, {"=== / سي جي", 0}, {"=== / بوشنب", 180}, {"=== / مسعف", 275}, {"=== / مهرج", 264}, } grid = guiCreateGridList(9,74,394,219,false,Wnd) guiGridListAddColumn(grid,"Skins",0.9) for i,sk in ipairs(skin) do row = guiGridListAddRow(grid) guiGridListSetItemText(grid, row, 1, tostring(sk[1]), false, false) guiGridListSetItemData(grid, row, 1, tostring(sk[2])) guiGridListSetItemColor ( grid, row, 1, math.random(255), math.random(255), math.random(255) ) end function use() if ( source == grid ) then if ( guiGridListGetSelectedItem(grid) ~= -1) then local model = guiGridListGetItemData(grid, guiGridListGetSelectedItem ( grid ), 1) triggerServerEvent("useSkin", localPlayer, model) end end end addEventHandler("onClientDoubleClick", root, use) function close() if (source == button) then guiSetVisible(Wnd,false) showCursor(false) end end addEventHandler("onClientGUIClick", button, close) function guishowc() guiSetVisible(Wnd,true) showCursor(true) end addEvent("guishowc",true) addEventHandler("guishowc", getRootElement(), guishowc) -- # Server Side ! marker = createMarker( 2244.5842285156, -1664.9024658203, 15.4765625, "cylinder", 2, 255, 255, 0, 255 ) blip = createBlip( 2244.5842285156, -1664.9024658203, 15.4765625, 45 ) function buy(id) reskin = setElementModel(source, tonumber(id)) takePlayerMoney(source, 100) playeraccount = getPlayerAccount(source) setAccountData(playeraccount, "standardskin", tonumber(id)) end addEvent("useSkin",true) addEventHandler("useSkin", root, buy) function guishow(hitPlayer) triggerClientEvent (hitPlayer,"guishowc",hitPlayer) end addEventHandler("onMarkerHit",marker,guishow) Link to comment
RoMaNd! Posted October 12, 2013 Author Share Posted October 12, 2013 -- # Client Side ! function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "7ASSAN.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 0,0,250, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end Wnd = guiCreateWindow(214,117,416,345,":: Skin System ::",false) button = guiCreateButton(370,27,35,14,"X",false,Wnd) Label2 = guiCreateLabel(145,48,125,25,"سكربت اختيار الشخصية من قبل روماند ",false,Wnd) guiLabelSetColor(Label2,0,255,15) guiLabelSetColor(Label1,255,0,0) showCursor(false) guiSetVisible( Wnd, false ) guiWindowSetSizable( Wnd, false ) guiWindowSetMovable( Wnd, false ) skin = { {"=== / ثوب صيفي", 46}, {"=== / ثوب شتوي", 124}, {"=== / جيش", 260}, {"=== / عصابة", 270}, {"=== / 'طيار", 62}, {"=== / سي جي", 0}, {"=== / بوشنب", 180}, {"=== / مسعف", 275}, {"=== / مهرج", 264}, } grid = guiCreateGridList(9,74,394,219,false,Wnd) guiGridListAddColumn(grid,"Skins",0.9) for i,sk in ipairs(skin) do row = guiGridListAddRow(grid) guiGridListSetItemText(grid, row, 1, tostring(sk[1]), false, false) guiGridListSetItemData(grid, row, 1, tostring(sk[2])) guiGridListSetItemColor ( grid, row, 1, math.random(255), math.random(255), math.random(255) ) end function use() if ( source == grid ) then if ( guiGridListGetSelectedItem(grid) ~= -1) then local model = guiGridListGetItemData(grid, guiGridListGetSelectedItem ( grid ), 1) triggerServerEvent("useSkin", localPlayer, model) end end end addEventHandler("onClientDoubleClick", root, use) function close() if (source == button) then guiSetVisible(Wnd,false) showCursor(false) end end addEventHandler("onClientGUIClick", button, close) function guishowc() guiSetVisible(Wnd,true) showCursor(true) end addEvent("guishowc",true) addEventHandler("guishowc", getRootElement(), guishowc) -- # Server Side ! marker = createMarker( 2244.5842285156, -1664.9024658203, 15.4765625, "cylinder", 2, 255, 255, 0, 255 ) blip = createBlip( 2244.5842285156, -1664.9024658203, 15.4765625, 45 ) function buy(id) reskin = setElementModel(source, tonumber(id)) takePlayerMoney(source, 100) playeraccount = getPlayerAccount(source) setAccountData(playeraccount, "standardskin", tonumber(id)) end addEvent("useSkin",true) addEventHandler("useSkin", root, buy) function guishow(hitPlayer) triggerClientEvent (hitPlayer,"guishowc",hitPlayer) end addEventHandler("onMarkerHit",marker,guishow) 100% بس مافيه اوامر اعطاء الشخصية ولو تقدر تغير مكان الماركر يعني تخليه ورا اشوي Link to comment
iMr.Dawix~# Posted October 12, 2013 Share Posted October 12, 2013 (يرجى تجنب وضع المشاركات المزدوجة (أكثر من مشاركة ورا بعض. Link to comment
#DRAGON!FIRE Posted October 12, 2013 Share Posted October 12, 2013 GTa-Time IS Best Server Gang Wars q1 # ; سؤال , فيك شي انت ؟ , مجنون ولأ في شي براسكـ ؟ Link to comment
MF[7]6 Posted October 12, 2013 Share Posted October 12, 2013 لو تعلمت تسوي مودات بعدين نسآعدك , كل شغلك نسخ ولصق لووول, function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "7ASSAN.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 0,0,250, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end 7ASSAN.png ? vehicles = { {"=== / ثوب صيفي", 46}, {"=== / ثوب شتوي", 124}, {"=== / جيش", 260}, {"=== / عصابة", 270}, {"=== / 'طيار", 62}, {"=== / سي جي", 0}, {"=== / بوشنب", 180}, {"=== / مسعف", 275}, {"=== / مهرج", 264}, } vehicles ? ومسوي اينفت على الزر ومتحقق من الزر ؟ لوووووول تخبيص تآيم ومسوي اكاونت داتا ؟ لوول , والي مآخذ الكود منه مو متحقق من الي لمس الماركر triggerClientEvent (hitPlayer,"guishowc",getRootElement(),hitPlayer) hitPlayer ليه مرسله للكلنت ؟ تبي تعطيه حلاوه ؟ للـ التحطيم " عنوآن " هههههههه Link to comment
RoMaNd! Posted October 15, 2013 Author Share Posted October 15, 2013 لو تعلمت تسوي مودات بعدين نسآعدك , كل شغلك نسخ ولصق لووول, function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "7ASSAN.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 0,0,250, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end 7ASSAN.png ? vehicles = { {"=== / ثوب صيفي", 46}, {"=== / ثوب شتوي", 124}, {"=== / جيش", 260}, {"=== / عصابة", 270}, {"=== / 'طيار", 62}, {"=== / سي جي", 0}, {"=== / بوشنب", 180}, {"=== / مسعف", 275}, {"=== / مهرج", 264}, } vehicles ? ومسوي اينفت على الزر ومتحقق من الزر ؟ لوووووول تخبيص تآيم ومسوي اكاونت داتا ؟ لوول , والي مآخذ الكود منه مو متحقق من الي لمس الماركر triggerClientEvent (hitPlayer,"guishowc",getRootElement(),hitPlayer) hitPlayer ليه مرسله للكلنت ؟ تبي تعطيه حلاوه ؟ للـ التحطيم " عنوآن " هههههههه لا كنت بعطيه عيديه بمناسبة العيد بسس# خلصو فلوسي ض1 Link to comment
تم حذف Posted October 19, 2013 Share Posted October 19, 2013 GTa-Time IS Best Server Gang Wars q1 # ; سؤال , فيك شي انت ؟ , مجنون ولأ في شي براسكـ ؟ ولله معاك حق Link to comment
RoMaNd! Posted October 19, 2013 Author Share Posted October 19, 2013 شكرا انا جربته رائع خخخخخخخخخخخخخخخخخخخخخخخخخخخخخخخخ وربي كذاب كذااااب بس جاي يزيد مشاركات + السكربت خربان لاترد وبس لو سمحت مرة رائع ومرة معك حقق !("> Link to comment
تم حذف Posted October 20, 2013 Share Posted October 20, 2013 طيب حياك الله انا كذاب شكرا غزيزي بتفهم Link to comment
تم حذف Posted October 20, 2013 Share Posted October 20, 2013 عفوا انا اسف ما ما انتبهت انا قصدت موضوع اخر اسف جدا انا محمل سكربت تاني اسف فكرته هو Link to comment
iMr.Dawix~# Posted October 20, 2013 Share Posted October 20, 2013 (يرجى تجنب وضع المشاركات المزدوجة (أكثر من مشاركة ورا بعض. Link to comment
RoMaNd! Posted October 20, 2013 Author Share Posted October 20, 2013 طيب حياك الله انا كذاب شكرا غزيزي بتفهم نو كذب ياحبي قول تبي تزيد مشاركات.وبس 2الرجاء الاغلاق Link to comment
Mr.KING_# Posted October 23, 2013 Share Posted October 23, 2013 ملاحظة : اعتقد الكومنتي معظم مود الشخصيات + المود مش شغال اساسآ Link to comment
RoMaNd! Posted October 24, 2013 Author Share Posted October 24, 2013 ملاحظة : اعتقد الكومنتي معظم مود الشخصيات + المود مش شغال اساسآ وانا وش كتبت! Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now