hassan.k.s.a Posted October 27, 2012 Share Posted October 27, 2012 (edited) مسويه على السريع جربه مع ألألتزآم بتغيير كل WindowName الى اسم النافذه الرئيسيه الي عندك جرب -- Client ShowMoneyButton = guiCreateButton(5,30,80,50,"Show Money In Chat",false,WindowName)--WindowName سجل اسم النافذه ألأصليه لك بدل ShowMoneyWindow = guiCreateWindow(150,200,150,150,"Window Show Money In Chat",false) guiSetVisible (ShowMoneyWindow, false) yes = guiCreateButton(5,50,40,17,"yes",false,ShowMoneyWindow) no = guiCreateButton(80,50,40,17,"no",false,ShowMoneyWindow) -- addEventHandler ("onClientGUIClick", getRootElement(), function() if source == ShowMoneyButton then guiSetVisible (ShowMoneyWindow, true) guiSetVisible (WindowName, false)--WindowNameسجل اسم النافذه ألأصليه بدل elseif source == yes then guiSetVisible (ShowMoneyWindow, false) triggerServerEvent("ShowMoney",getLocalPlayer())--تريقر لسيرفر علشان الكل يشوف الفلوس للاعب elseif source == no then guiSetVisible (ShowMoneyWindow, false) end end ) -- Server addEvent("ShowMoney",true) addEventHandler("ShowMoney",root, function() local name = getPlayerName(source) local playerMoney = getPlayerMoney( source ) if ( playerMoney ) then outputChatBox ( "***#ffffff***" .. name .. "#ffff00Money Player =" .. tostring ( playerMoney ), getRootElement(), 255, 0, 0, true ) end end ) Edited October 27, 2012 by Guest Link to comment
===|OSAMA|=== Posted October 27, 2012 Share Posted October 27, 2012 function onGuiClick (button, state, absoluteX, absoluteY) if (source == اسم الزر) then guiSetVisible(اسم النافذة,true) guiBringToFront ( اسم النافذة ) end end addEventHandler ("onClientGUIClick", getRootElement(), onGuiClick) ملاحظة : guiBringToFront ^ ذي حطيتها لك عشان لما تكبس الزر تجي النافذة فوق النافذة الاصلية يعني مثلاً اذا كان شوب تجي النافذة فوق نافذة الشوب أصلا الكود خربآن لو انك تعرف تستخدم الكود ما كان قلت خربآإن Link to comment
===|OSAMA|=== Posted October 27, 2012 Share Posted October 27, 2012 function onGuiClick (button, state, absoluteX, absoluteY) if (source == اسم الزر) then guiSetVisible(اسم النافذة,true) guiBringToFront ( اسم النافذة ) end end addEventHandler ("onClientGUIClick", getRootElement(), onGuiClick) ملاحظة : guiBringToFront ^ ذي حطيتها لك عشان لما تكبس الزر تجي النافذة فوق النافذة الاصلية يعني مثلاً اذا كان شوب تجي النافذة فوق نافذة الشوب أصلا الكود خربآن لو انك تعرف تستخدم الكود ما كان قلت خربآإن Link to comment
abu5lf Posted October 27, 2012 Share Posted October 27, 2012 مسويه على السريع جربه مع ألألتزآم بتغيير كل WindowName الى اسم النافذه الرئيسيه الي عندك جرب -- Client ShowMoneyButton = guiCreateButton(5,30,80,50,"Show Money In Chat",false,WindowName)--WindowName سجل اسم النافذه ألأصليه لك بدل ShowMoneyWindow = guiCreateWindow(150,200,150,150,"Window Show Money In Chat",false) yes = guiCreateButton(5,50,40,17,"yes",false,ShowMoneyWindow) no = guiCreateButton(80,50,40,17,"no",false,ShowMoneyWindow) -- addEventHandler ("onClientGUIClick", getRootElement(), function() if source == ShowMoneyButton then guiSetVisible (ShowMoneyWindow, true) guiSetVisible (WindowName, false)--WindowNameسجل اسم النافذه ألأصليه بدل elseif source == yes then guiSetVisible (ShowMoneyWindow, false) triggerServerEvent("ShowMoney",getLocalPlayer())--تريقر لسيرفر علشان الكل يشوف الفلوس للاعب elseif source == no then guiSetVisible (ShowMoneyWindow, false) end end ) -- Server addEvent("ShowMoney",true) addEventHandler("ShowMoney",root, function() local name = getPlayerName(source) local playerMoney = getPlayerMoney( source ) if ( playerMoney ) then outputChatBox ( "***#ffffff***" .. name .. "#ffff00Money Player =" .. tostring ( playerMoney ), getRootElement(), 255, 0, 0, true ) end end ) السطر تسعة اللوحة ظاهرة كيف تظهرها Link to comment
hassan.k.s.a Posted October 27, 2012 Share Posted October 27, 2012 نسيت اخفي الوحه تم التعديل 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