WTF_ Posted September 2, 2017 Share Posted September 2, 2017 skin = { { "شخصية رقم 1" }, { "شخصية رقم 2" }, { "شخصية رقم 3" }, { "شخصية رقم 4" }, { "شخصية رقم 5" }, { "شخصية رقم 6" }, { "شخصية رقم 7" }, } GUIEditor = { label = {} } addEventHandler("onClientResourceStart", resourceRoot, function() w1 = guiCreateWindow(157, 38, 467, 462, "لوحة شخصيات الفيب", false) guiWindowSetSizable(w1, false) guiSetAlpha(w1, 1.00) guiSetProperty(w1, "CaptionColour", "FFE3FE00") local g1 = guiCreateGridList(48, 49, 179, 339, false, w1) local c1 = guiGridListAddColumn(g1, "الشخصيات", 0.9) for k,i in ipairs(skin) do local r1 = guiGridListAddRow(g1) guiGridListSetItemText ( g1 , r1 , c1 ,i[1], false, false ) end b1 = guiCreateButton(244, 323, 163, 55, "إختيار", false, w1) guiSetFont(b1, "default-bold-small") guiSetProperty(b1, "NormalTextColour", "FF00FDE9") b2 = guiCreateButton(380, 416, 77, 36, "خروج", false, w1) guiSetFont(b2, "default-bold-small") guiSetProperty(b2, "NormalTextColour", "FFFD0000") GUIEditor.label[1] = guiCreateLabel(234, 42, 223, 277, "", false, w1) end ) شباب بعد ما سويت ذا القريد ليست كيف أحدد شي من التابل مثال ابي احدد شخصية رقم 1 كيف ؟ Link to comment
N3xT Posted September 2, 2017 Share Posted September 2, 2017 تفتح اللوحة وتضغط على القريد ليست, كذا انت حددت شخصية رقم 1 1 Link to comment
WTF_ Posted September 2, 2017 Author Share Posted September 2, 2017 2 hours ago, N3xT said: تفتح اللوحة وتضغط على القريد ليست, كذا انت حددت شخصية رقم 1 خخخخخخخخخخخخ عارف بس كيف أسوي في الكود لما احدد الشخصية رقم واحد يصير شي مثلا ابي لما احدد شخصية رقم 1 وينزل على الزر بيحصل شي هههههههههههههههههههههههههه قلو إنزل عليها Link to comment
#Soking Posted September 2, 2017 Share Posted September 2, 2017 46 minutes ago, WTF_ said: خخخخخخخخخخخخ عارف بس كيف أسوي في الكود لما احدد الشخصية رقم واحد يصير شي مثلا ابي لما احدد شخصية رقم 1 وينزل على الزر بيحصل شي هههههههههههههههههههههههههه قلو إنزل عليها خخخخخخخ هههههه هههه خخخ و ش تقول ه خخخخخ ههههه خخخخخخخخ هههه Link to comment
#BrosS Posted September 2, 2017 Share Posted September 2, 2017 guiGridListGetSelectedItem Link to comment
Doffy Posted September 2, 2017 Share Posted September 2, 2017 Just now, #BrosS said: guiGridListGetSelectedItem + triggerServerEvent setElementModel Link to comment
#BrosS Posted September 2, 2017 Share Posted September 2, 2017 Just now, #Himoo said: + triggerServerEvent setElementModel مايحتاج تريقر Link to comment
Doffy Posted September 2, 2017 Share Posted September 2, 2017 Just now, #BrosS said: مايحتاج تريقر يب صح لاكن لو سوا setElementModel ب الكلنت ماحد غير اللاعب الي رح يشوف شخصيته Link to comment
WTF_ Posted September 2, 2017 Author Share Posted September 2, 2017 5 hours ago, #Soking said: خخخخخخخ هههههه هههه خخخ و ش تقول ه خخخخخ ههههه خخخخخخخخ هههه بقلك كلمتين فمك سكره وروح زربط بيعد -__- Link to comment
^iiEcoo'x_) Posted September 2, 2017 Share Posted September 2, 2017 local uSkin_ = { { 'Skin Name' , 5 }, { 'Skin Name2' , 255 } } function uPutSkin_ ( ) guiGridListClear ( uGridList_ ) for _ , uSkin_ in ipairs ( uSkin_ ) do local uRow_ = guiGridListAddRow ( uGridList_ ) guiGridListSetItemText ( uGridList_ , uRow_ , 1 , uSkin_[1] , false , false ) guiGridListSetItemData ( uGridList_ , uRow_ , 1 , uSkin_[2] ) end end addEventHandler ( 'onClientGUIClick' , root , function ( ) if ( source == uButton_ ) then if ( guiGridListGetSelectedItem ( uGridList_ ) ~= -1 ) then local uSkin_ = guiGridListGetItemData ( uGridList_ , guiGridListGetSelectedItem ( uGridList_ ) , 1 ) setElementModel ( localPlayer , tonumber ( uSkin_ ) ) else outputChatBox ( 'الرجاء تحديد شخصية' , 255 , 0 , 0 , true ) end end end ) تفضل Link to comment
Omoi Posted September 3, 2017 Share Posted September 3, 2017 8 hours ago, #_iMr.[E]coo said: local uSkin_ = { { 'Skin Name' , 5 }, { 'Skin Name2' , 255 } } function uPutSkin_ ( ) guiGridListClear ( uGridList_ ) for _ , uSkin_ in ipairs ( uSkin_ ) do local uRow_ = guiGridListAddRow ( uGridList_ ) guiGridListSetItemText ( uGridList_ , uRow_ , 1 , uSkin_[1] , false , false ) guiGridListSetItemData ( uGridList_ , uRow_ , 1 , uSkin_[2] ) end end addEventHandler ( 'onClientGUIClick' , root , function ( ) if ( source == uButton_ ) then if ( guiGridListGetSelectedItem ( uGridList_ ) ~= -1 ) then local uSkin_ = guiGridListGetItemData ( uGridList_ , guiGridListGetSelectedItem ( uGridList_ ) , 1 ) setElementModel ( localPlayer , tonumber ( uSkin_ ) ) else outputChatBox ( 'الرجاء تحديد شخصية' , 255 , 0 , 0 , true ) end end end ) تفضل 15 hours ago, #Himoo said: ب الكلنت ماحد غير اللاعب الي رح يشوف شخصيته Link to comment
^iiEcoo'x_) Posted September 3, 2017 Share Posted September 3, 2017 2 hours ago, Omoi said: طيب تقدر تجرب ؟ قبل لا تقرر ؟ Link to comment
Omoi Posted September 3, 2017 Share Posted September 3, 2017 27 minutes ago, #_iMr.[E]coo said: طيب تقدر تجرب ؟ قبل لا تقرر ؟ يخوي مجرب وش بك انت Link to comment
#BrosS Posted September 3, 2017 Share Posted September 3, 2017 3 hours ago, Omoi said: انت صدقت الثاني ؟ Link to comment
Adham Posted September 3, 2017 Share Posted September 3, 2017 الشخصيه حق ايكو المسويها ب كلنت وهميه .. فأ احسن سوي تريقر وسوي الفكشن ذاك ب سيرف Link to comment
^iiEcoo'x_) Posted September 3, 2017 Share Posted September 3, 2017 24 minutes ago, Deativated said: الشخصيه حق ايكو المسويها ب كلنت وهميه .. فأ احسن سوي تريقر وسوي الفكشن ذاك ب سيرف حاط من عندي Link to comment
^iiEcoo'x_) Posted September 4, 2017 Share Posted September 4, 2017 5 hours ago, #Himoo said: ._. (-ر-) 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