[DONE]* Posted January 14, 2016 Share Posted January 14, 2016 السلام عليكم الكود مب ضابط وش المشكلة ظ addEventHandler("onElementModelChange", root, function(old) if ( getElementType(source) == "player" ) then getModel = getElementModel (source) if getModel == 10 or getModel == 11 or getModel == 12 or getModel == 13 or getModel == 14 or getModel == 15 or getModel == 16 or getModel == 17 or getModel == 18 or getModel == 19 then setElementModel (source,old) end end end) Link to comment
shwaeki Posted January 14, 2016 Share Posted January 14, 2016 جرب Models = { [10] = true, [11] = true, [12] = true, [13] = true, [14] = true, [15] = true, [16] = true, [17] = true, [18] = true, [19] = true, } addEventHandler("onElementModelChange", root, function( oldModel ) if ( getElementType(source) == "player" ) then if Models[getElementModel (source)] then setElementModel( source,oldModel ) end end end ) Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 جرب Models = { [10] = true, [11] = true, [12] = true, [13] = true, [14] = true, [15] = true, [16] = true, [17] = true, [18] = true, [19] = true, } addEventHandler("onElementModelChange", root, function( oldModel ) if ( getElementType(source) == "player" ) then if Models[getElementModel (source)] then setElementModel( source,oldModel ) end end end ) ما ضبط Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 كيف ما ظبط ؟ جربت الكود و ما ضبط , واضحه خخخخخخخخ Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 انا ابي لو اخذ سكن من المذكورين فوق يرجع سكنه القديم Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 (edited) up Edited January 15, 2016 by Guest Link to comment
The Killer Posted January 14, 2016 Share Posted January 14, 2016 Models = { [10] = true, [11] = true, [12] = true, [13] = true, [14] = true, [15] = true, [16] = true, [17] = true, [18] = true, [19] = true, } addEventHandler("onElementModelChange", root, function( oldModel ) if ( getElementType(source) == "player" ) then if Models[getElementModel (source)] then setTimer ( setElementModel, 50, 1, source,oldModel ) end end end ) Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 Models = { [10] = true, [11] = true, [12] = true, [13] = true, [14] = true, [15] = true, [16] = true, [17] = true, [18] = true, [19] = true, } addEventHandler("onElementModelChange", root, function( oldModel ) if ( getElementType(source) == "player" ) then if Models[getElementModel (source)] then setTimer ( setElementModel, 50, 1, source,oldModel ) end end end ) ما ضبط Link to comment
The Killer Posted January 14, 2016 Share Posted January 14, 2016 وكيف ما ظبط ؟ انا مجربه وظبط معي ! Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 وكيف ما ظبط ؟ انا مجربه وظبط معي ! وش الي ضبط معك ؟ وش يسوي الكود ؟ Link to comment
The Killer Posted January 14, 2016 Share Posted January 14, 2016 انا ابي لو اخذ سكن من المذكورين فوق يرجع سكنه القديم Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 انا ابي لو اخذ سكن من المذكورين فوق يرجع سكنه القديم انا مجربه و مو ضابط ! Link to comment
The Killer Posted January 14, 2016 Share Posted January 14, 2016 جرب سوه في مود لحاله وشف كيف اكيد المشكله من مودك ذا # Link to comment
[DONE]* Posted January 14, 2016 Author Share Posted January 14, 2016 جرب سوه في مود لحاله وشف كيفاكيد المشكله من مودك ذا # تطقطق علينا انت ؟ جربته بمود ثاني و مو ضابط !! Link to comment
#DRAGON!FIRE Posted January 14, 2016 Share Posted January 14, 2016 حبيبي الكود صحيح .. لا يطقطق عليك ولا شي .. سويته بطريقة ثانية لعل وعسى يشتغل : addEventHandler ( "onElementModelChange", root, function( oldModel ) if ( getElementType ( source ) == "player" ) then for i = 10, 19 do if ( getElementModel ( source ) == i ) then setTimer ( setElementModel, 100, 1, source, oldModel ) end end end end ) Link to comment
#Plair07 Posted January 14, 2016 Share Posted January 14, 2016 حبيبي الكود صحيح .. لا يطقطق عليك ولا شي ..سويته بطريقة ثانية لعل وعسى يشتغل : addEventHandler ( "onElementModelChange", root, function( oldModel ) if ( getElementType ( source ) == "player" ) then for i = 10, 19 do if ( getElementModel ( source ) == i ) then setTimer ( setElementModel, 100, 1, source, oldModel ) end end end end ) for i = 10, 19 do اظن معناها من 10 إلى 19 او شيء زي كذا صح ؟ Link to comment
[DONE]* Posted January 15, 2016 Author Share Posted January 15, 2016 حبيبي الكود صحيح .. لا يطقطق عليك ولا شي ..سويته بطريقة ثانية لعل وعسى يشتغل : addEventHandler ( "onElementModelChange", root, function( oldModel ) if ( getElementType ( source ) == "player" ) then for i = 10, 19 do if ( getElementModel ( source ) == i ) then setTimer ( setElementModel, 100, 1, source, oldModel ) end end end end ) بهذه الكود ضبط !! Link to comment
MuhannaDx Posted January 15, 2016 Share Posted January 15, 2016 -- سيرفر Models = { [10] = true, [11] = true, [12] = true, [13] = true, [14] = true, [15] = true, [16] = true, [17] = true, [18] = true, [19] = true, } addEventHandler("onElementModelChange", root, function( oldModel ) if ( getElementType(source) == "player" ) then if Models[getElementModel (source)] then setTimer ( setElementModel, 1000,1, source,oldModel ) end end end ) توني مجربه شغال ذذ Link to comment
' A F . Posted January 15, 2016 Share Posted January 15, 2016 ^ اشتغل معه خلاص ض حبيبي الكود صحيح .. لا يطقطق عليك ولا شي ..سويته بطريقة ثانية لعل وعسى يشتغل : addEventHandler ( "onElementModelChange", root, function( oldModel ) if ( getElementType ( source ) == "player" ) then for i = 10, 19 do if ( getElementModel ( source ) == i ) then setTimer ( setElementModel, 100, 1, source, oldModel ) end end end end ) بهذه الكود ضبط !! Link to comment
The Killer Posted January 15, 2016 Share Posted January 15, 2016 جرب سوه في مود لحاله وشف كيفاكيد المشكله من مودك ذا # تطقطق علينا انت ؟ جربته بمود ثاني و مو ضابط !! اطقطق عليك ؟ خخ رح شف مودك الحين انت الي تطقطق علينا ما ظبط ما ظبط شنسويلك يعني ما ظبط لا بعد تنافخ حلوه ذي خخخ والله خسرت وقتي ع الفاضي شغال عندك انا ؟ Link to comment
#DRAGON!FIRE Posted January 15, 2016 Share Posted January 15, 2016 ذا كيلر روق اعصابك : ) 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