SolideRock Posted May 7, 2016 Share Posted May 7, 2016 السلام عليكم ورحمه الله وبركاته شباب بدي كود الان عندي button بدي لما يضغط عليه يعطيه سلاح + رصاص معين + يخصم منه فلوس انا احددها وشكرا Link to comment
iMr.WiFi..! Posted May 7, 2016 Share Posted May 7, 2016 'onClientGUIClick' triggerServerEvent giveWeapon -- تقدر تحدد الرصاص takePlayerMoney Link to comment
#Basel Posted May 7, 2016 Share Posted May 7, 2016 onClientGUIClick triggerServerEvent giveWeapon هاي تعطيه اسلحه ^ من زر --- onClientGUIClick takePlayerMoney ----------------------- addEventHandler("onClientGUIClick",root, function () if source == button then --تحقق من البوتون triggerServerEvent("givewep",localPlayer)--يسوي تريقر للسيرفر end end ) Server addEvent('givewep',true) addEventHandler('givewep',root, function () giveWeapon ( source, 46, 100)--الارقمنت سويناه source عشان يعطي لفاعل الحدث end ) اي شى مب فاهمه فوق قول ان شاء الله افدتك .# وبتوفيق . Link to comment
SolideRock Posted May 7, 2016 Author Share Posted May 7, 2016 وكيف راح يخصم من فلوس ؟؟ Link to comment
#Basel Posted May 7, 2016 Share Posted May 7, 2016 وكيف راح يخصم من فلوس ؟؟ 'onClientGUIClick' triggerServerEvent takePlayerMoney معطيك الفنكشات فوق حاول تسوي الكود بنساعدك , Link to comment
Ahmed Ly Posted May 7, 2016 Share Posted May 7, 2016 [b] ---#Server addEvent('givewep',true) addEventHandler('givewep',root, function () local plr = getPlayerMoney(source) if plr >=1500 then giveWeapon ( source, 46, 100) takePlayerMoney(1500) else outputChatBox("< 1500",source,0,255,0) end )[/b] Link to comment
Me[Z]oO Posted May 7, 2016 Share Posted May 7, 2016 ---#Server addEvent('givewep',true) addEventHandler('givewep',root, function () local plr = getPlayerMoney(source) if plr >=1500 then giveWeapon ( source, 46, 100) takePlayerMoney(source, 1500) else outputChatBox("< 1500",source,0,255,0) end ) @Ahmed Ly سحب الفلوس ناقص ارقمنت Link to comment
HassoN Posted May 7, 2016 Share Posted May 7, 2016 ---#Server addEvent('givewep',true) addEventHandler('givewep',root, function () local plr = getPlayerMoney(source) if plr >=1500 then giveWeapon ( source, 46, 100) takePlayerMoney(source, 1500) else outputChatBox("< 1500",source,0,255,0) end ) @Ahmed Ly سحب الفلوس ناقص ارقمنت ^ end ناقص Link to comment
Me[Z]oO Posted May 7, 2016 Share Posted May 7, 2016 ---#Server addEvent('givewep',true) addEventHandler('givewep',root, function () local plr = getPlayerMoney(source) if plr >=1500 then giveWeapon ( source, 46, 100) takePlayerMoney(source, 1500) else outputChatBox("< 1500",source,0,255,0) end ) @Ahmed Ly سحب الفلوس ناقص ارقمنت ^ end ناقص احمد لي الي مسوي الكود موب انا Link to comment
Simple. Posted May 7, 2016 Share Posted May 7, 2016 [b] ---#Server addEvent('givewep',true) addEventHandler('givewep',root, function () local plr = getPlayerMoney(source) if plr >=1500 then giveWeapon ( source, 46, 100) takePlayerMoney(1500) else outputChatBox("< 1500",source,0,255,0) end )[/b] بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟ Link to comment
HassoN Posted May 8, 2016 Share Posted May 8, 2016 [b] ---#Server addEvent('givewep',true) addEventHandler('givewep',root, function () local plr = getPlayerMoney(source) if plr >=1500 then giveWeapon ( source, 46, 100) takePlayerMoney(1500) else outputChatBox("< 1500",source,0,255,0) end )[/b] بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟ ﻻ ماله دخل بالترتيب ترتيب الاكواد يتم عن طريق ال تاب (اربع مسافات قدام الكود)ء Link to comment
Mr.R Posted May 8, 2016 Share Posted May 8, 2016 (edited) نفس طلبك , مسويه في شوب عندي من زماان تفضل Client Button = guiCreateButton ( ... ) addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == Button ) then triggerServerEvent ( "Weapon", localPlayer ) end end ) Server addEvent ( "Weapon", true ) addEventHandler ( "Weapon", root, function ( ) if ( getPlayerMoney ( source ) >= 1500 ) then giveWeapon ( source, 38, 2000 ) -- هنا بدل 38 بأيدي السلاح الي تبيه , وبدل 2000 بعدد الرصاص الي تبيه takePlayerMoney ( source, 1500 ) outputChatBox ( "* تم شراء السلاح", source, 255, 255, 255, true ) else outputChatBox ( "* لم تتم عملية الشراء لعدم توفر المال الكافي", source, 255, 255, 255, true ) end end ) Edited May 9, 2016 by Guest Link to comment
Simple. Posted May 9, 2016 Share Posted May 9, 2016 [b] ---#Server addEvent('givewep',true) addEventHandler('givewep',root, function () local plr = getPlayerMoney(source) if plr >=1500 then giveWeapon ( source, 46, 100) takePlayerMoney(1500) else outputChatBox("< 1500",source,0,255,0) end )[/b] بسالك ليه بين كل كود وكود مترين ؟ ترتيب يعني ؟ ﻻ ماله دخل بالترتيب ترتيب الاكواد يتم عن طريق ال تاب (اربع مسافات قدام الكود)ء انا داري لكن ابي افهم ليه الحوسه هذي 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