King12 Posted June 25, 2013 Share Posted June 25, 2013 السلام عليكم سويت سكربت يوزربانل وجالس اشتغل عليه فجأه طلعت لي المشكله العنيده هذي اللي خلت اليوزر بالكامل مايشتغل صوره من الديبوق سكربت function someFunction() if source == NextMapButton then guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == SoonButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( SoonWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == StatsButton then guiSetVisible( CarShopWindow ,false) guiSetVisible( StatsWindow ,true) guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,false) elseif source == CarShopButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( CarShopWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( SoonWindow ,false) end addEventHandler("onClientGUIClick", root, someFunction) طبعا في الديبوق سكربت يتكلم عن هذا الكود بالكامل Link to comment
iPrestege Posted June 25, 2013 Share Posted June 25, 2013 السلام عليكم سويت سكربت يوزربانل وجالس اشتغل عليهفجأه طلعت لي المشكله العنيده هذي اللي خلت اليوزر بالكامل مايشتغل صوره من الديبوق سكربت function someFunction() if source == NextMapButton then guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == SoonButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( SoonWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == StatsButton then guiSetVisible( CarShopWindow ,false) guiSetVisible( StatsWindow ,true) guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,false) elseif source == CarShopButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( CarShopWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( SoonWindow ,false) end addEventHandler("onClientGUIClick", root, someFunction) طبعا في الديبوق سكربت يتكلم عن هذا الكود بالكامل ناقص اند ضيف اند وجرب ذذ Link to comment
King12 Posted June 25, 2013 Author Share Posted June 25, 2013 (edited) السلام عليكم سويت سكربت يوزربانل وجالس اشتغل عليهفجأه طلعت لي المشكله العنيده هذي اللي خلت اليوزر بالكامل مايشتغل صوره من الديبوق سكربت [url=http://store2.up]http://store2.up[/url]-00.com/Apr13/4vx77848.png function someFunction() if source == NextMapButton then guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == SoonButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( SoonWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == StatsButton then guiSetVisible( CarShopWindow ,false) guiSetVisible( StatsWindow ,true) guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,false) elseif source == CarShopButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( CarShopWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( SoonWindow ,false) end addEventHandler("onClientGUIClick", root, someFunction) طبعا في الديبوق سكربت يتكلم عن هذا الكود بالكامل ناقص اند ضيف اند وجرب ذذ سويت اللي قلت لي عليه وصار كذا سبام كثير في الديبوق سكربت + القريد ليست اللي مسويه كل 10 ثواني كذا يطلع واحد يعني يتدبل - طبعاً هذا صار على طول يوم شغلت اليوزربانل Edited June 25, 2013 by Guest Link to comment
iPrestege Posted June 25, 2013 Share Posted June 25, 2013 الـ nil = شيء ماهو موجود يعني راجع كودك ._. الكود لك؟ كيف نيل Link to comment
#DRAGON!FIRE Posted June 25, 2013 Share Posted June 25, 2013 # اخوي تــأكد من الكود كــأمل # + اطرحه كامل Link to comment
King12 Posted June 25, 2013 Author Share Posted June 25, 2013 هذولا هم السطرين اللي موجودين في الديبوق CashText = guiCreateLabel( 35, 69, 200, 33, "Your Money : ", false, StatsWindow ) guiSetFont( CashText, "default-bold-small" ) function refreshStats( ) if guiGetVisible( StatsWindow ) then -- السطر رقم 146 guiSetText( CashText, "Your Money : "..getPlayerMoney( ).." $" ) end end addEventHandler( "onClientRender", getRootElement( ), refreshStats ) SerialLabel = guiCreateLabel(35, 102, 300, 33, "Your Serial :", false, StatsWindow) guiSetFont(SerialLabel, "default-bold-small") function refreshStats() if guiGetVisible(StatsWindow,true) then -- السطر رقم 159 else guiSetText(SerialLabel,"Your Serial : " ..getPlayerSerial(getLocalPlayer())) end end addEventHandler("onClientRender", getRootElement(), refreshStats) Link to comment
#DRAGON!FIRE Posted June 25, 2013 Share Posted June 25, 2013 --------------------------------------------------------------------------------------------- CashText = guiCreateLabel(35, 69, 200, 33,"Your Money:",false,StatsWindow) guiSetFont( CashText, "default-bold-small" ) guiSetText ( CashText, getPlayerMoney(localPlayer)) function refreshStats() if guiGetVisible(StatsWindow,true) then else guiSetText(CashText,"Your Money :"..getPlayerMoney(getLocalPlayer())) end end addEventHandler("onClientRender", getRootElement(), refreshStats) --------------------------------------------------------------------------------------------- SerialLabel = guiCreateLabel(35, 102, 300, 33,"YoUr Serial:",false,StatsWindow) guiSetFont(SerialLabel, "default-bold-small") guiSetText ( SerialLabel , getPlayerSerial(source)) function refreshStats() if guiGetVisible(StatsWindow,true) then else guiSetText(SerialLabel,"YoUr Serial:"..getPlayerSerial(getLocalPlayer())) end end addEventHandler("onClientRender", getRootElement(), refreshStats) Link to comment
iPrestege Posted June 25, 2013 Share Posted June 25, 2013 local CashText = guiCreateLabel( 35, 69, 200, 33, "Your Money : ", false, StatsWindow ) local SerialLabel = guiCreateLabel(35, 102, 300, 33, "Your Serial :", false, StatsWindow) guiSetFont( CashText, "default-bold-small" ) guiSetFont(SerialLabel, "default-bold-small") function refreshStats( ) if guiGetVisible( StatsWindow ) then guiSetText( CashText, "Your Money : "..getPlayerMoney( ).." $" ) guiSetText(SerialLabel,"Your Serial : " ..getPlayerSerial( )) end end addEventHandler( "onClientRender", getRootElement( ), refreshStats ) مجرد سؤآل لية الرندر للسريال بيتغير مثلاَ ؟ Link to comment
#DRAGON!FIRE Posted June 25, 2013 Share Posted June 25, 2013 خخخـ # كلأمك صح # بس مو مشكلة ما صأر شي عادي Link to comment
King12 Posted June 25, 2013 Author Share Posted June 25, 2013 حطيت كودك وطلعت المشكله عندي كنت حاط end قبل الكود هذا الزبده ربطته مع لوحته الاساسيه لكن الحين طلع مشكله بآخر سكربت اللي هو هذا الكود function someFunction() if source == NextMapButton then guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == SoonButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( SoonWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == StatsButton then guiSetVisible( CarShopWindow ,false) guiSetVisible( StatsWindow ,true) guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,false) elseif source == CarShopButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( CarShopWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( SoonWindow ,false) end end addEventHandler("onClientGUIClick", root, someFunction) -- السطر رقم 444 صوره من الديبوق سكربت Link to comment
iPrestege Posted June 25, 2013 Share Posted June 25, 2013 addEventHandler("onClientGUIClick",root, function ( ) if source == NextMapButton then guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == SoonButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( SoonWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == StatsButton then guiSetVisible( CarShopWindow ,false) guiSetVisible( StatsWindow ,true) guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,false) elseif source == CarShopButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( CarShopWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( SoonWindow ,false) end end ) صح الكود ._. بس مدري وش السبب جرب كذآ Link to comment
#DRAGON!FIRE Posted June 25, 2013 Share Posted June 25, 2013 اخوي يقول لك السطر # 445 Link to comment
King12 Posted June 25, 2013 Author Share Posted June 25, 2013 addEventHandler("onClientGUIClick",root, function ( ) if source == NextMapButton then guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == SoonButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( SoonWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == StatsButton then guiSetVisible( CarShopWindow ,false) guiSetVisible( StatsWindow ,true) guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,false) elseif source == CarShopButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( CarShopWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( SoonWindow ,false) end end ) صح الكود ._. بس مدري وش السبب جرب كذآ يقول كذا الخطأ بالقوس اللي اخر شي ._. function gui ( ) -- السطر رقم 106 Link to comment
iPrestege Posted June 25, 2013 Share Posted June 25, 2013 الكود صح ماهو هذا شف سطر 470 وينة لانة ماهو هذا مستححيل Link to comment
King12 Posted June 25, 2013 Author Share Posted June 25, 2013 الكود صح ماهو هذا شف سطر 470 وينة لانة ماهو هذا مستححيل Link to comment
RdX Posted June 25, 2013 Share Posted June 25, 2013 function someFunction() if source == NextMapButton then guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == SoonButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( SoonWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( CarShopWindow ,false) elseif source == StatsButton then guiSetVisible( CarShopWindow ,false) guiSetVisible( StatsWindow ,true) guiSetVisible( SoonWindow ,false) guiSetVisible( NextMapWindow ,false) elseif source == CarShopButton then guiSetVisible( NextMapWindow ,false) guiSetVisible( CarShopWindow ,true) guiSetVisible( StatsWindow ,false) guiSetVisible( SoonWindow ,false) end end addEventHandler("onClientGUIClick", root, someFunction) Link to comment
iMr.Dawix~# Posted June 25, 2013 Share Posted June 25, 2013 لم يتم التجربه يخوي حطه كله برد واحد ممنوع المشاركات الي ورا بعض ---------------------- صاحب الموضوع@ الكود صحيح اكيد بتلقا كود فوقه يخرب على الي تحت والدي بق يجيبه انه الي تحت هو الخطأ ^ صارت لي كثير Link to comment
!#NssoR_) Posted June 25, 2013 Share Posted June 25, 2013 اخوي كينق الاكواد الي ططرحوها لك الشباب شغاله مافيها شي بس الخطا # لاحض الصوره الي حطيتها انت شوف رقم 446 ومن فوق لاحض ان فيه خطا بل اكواد الي فوق ناقص قوس او اند واتمني تراجع كودك عدل 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