Taken' Posted May 3, 2020 Share Posted May 3, 2020 السلام عليكم بدي اعرف كيف اخلي الزر يقفل بوقت وبيظل الوقت ماينتهي حتى ولو عمل اللاعب ريكونكت مثال بسيط احتاجه Link to comment
-Ilker. Posted May 3, 2020 Share Posted May 3, 2020 سويها بالجداول والتايمر عن طريق ملف السيرفر وقفل وافتح الزر بجانب الكلنت Link to comment
Taken' Posted May 3, 2020 Author Share Posted May 3, 2020 53 minutes ago, -Ilker. said: سويها بالجداول والتايمر عن طريق ملف السيرفر وقفل وافتح الزر بجانب الكلنت ممكن مثال؟ Link to comment
Taken' Posted May 3, 2020 Author Share Posted May 3, 2020 10 hours ago, -Ilker. said: وينكم المبرمجين؟ Link to comment
Taken' Posted May 4, 2020 Author Share Posted May 4, 2020 19 hours ago, -Ilker. said: وينكم المبرمجين؟ Link to comment
-Ilker. Posted May 4, 2020 Share Posted May 4, 2020 (edited) --- Server side . local saveTimer = { } ; addCommandHandler ( "money" , function ( player ) if ( isTimer ( saveTimer [ getPlayerSerial ( player ) ] ) ) then return end givePlayerMoney ( player , 100000 ) ; saveTimer [ getPlayerSerial ( player ) ] = setTimer ( function ( ) end,4*60*1000,1) ; end ) هذا الكود لو كتب الأمر يعطيه فلوس ولو طلع ودخل وكتب الأمر والتايمر لسى ماخلص مايعطيه انت شوف الطريقة وسويها بالي تبيه Edited May 4, 2020 by -Ilker. Link to comment
Taken' Posted May 10, 2020 Author Share Posted May 10, 2020 (edited) On 04/05/2020 at 03:04, -Ilker. said: --- Server side . local saveTimer = { } ; addCommandHandler ( "money" , function ( player ) if ( isTimer ( saveTimer [ getPlayerSerial ( player ) ] ) ) then return end givePlayerMoney ( player , 100000 ) ; saveTimer [ getPlayerSerial ( player ) ] = setTimer ( function ( ) end,4*60*1000,1) ; end ) هذا الكود لو كتب الأمر يعطيه فلوس ولو طلع ودخل وكتب الأمر والتايمر لسى ماخلص مايعطيه انت شوف الطريقة وسويها بالي تبيه اخوي ممكن أعرف شلون اضبطها ع الكلنت ؟ لاني ابي استخدم الامر onClientGUIClick اذا تقدر اكتب لي التريقر ل سيرفر سايد وعطني فقط فكرة عن الكلنت سايد Edited May 10, 2020 by Taken' توضيح اكتر Link to comment
Taken' Posted May 10, 2020 Author Share Posted May 10, 2020 25 minutes ago, VenomNX said: متى يتقفل الزر ؟ يعني حط اي مدى وانا بضبطة بس ابي الفكرة Link to comment
-Ilker. Posted May 10, 2020 Share Posted May 10, 2020 button = guiCreateButton ( 300 , 300 , 100 , 30 , "Money" , false ) addEventHandler ( "onClientGUIClick" , root , function ( ) if ( source == button ) then triggerServerEvent ( "giveMoney" , localPlayer ) end end ) ; -- Server side local timer = { } addEvent ( "giveMoney" , true ) addEventHandler ( "giveMoney" , root , function ( ) if ( not isTimer ( timer [ getPlayerSerial ( source ) ] ) ) then givePlayerMoney ( source , 1000 ) timer[getPlayerSerial(source)] = setTimer ( function ( ) end,3*60*1000,1) else outputChatBox("* Please Wait.",source,255,0,0,true) end end ) ; سويت لك تقريبًا 95% من طلبك بس باقي عليك تقفل الازرار Link to comment
Doffy Posted May 10, 2020 Share Posted May 10, 2020 3 hours ago, -Ilker. said: button = guiCreateButton ( 300 , 300 , 100 , 30 , "Money" , false ) addEventHandler ( "onClientGUIClick" , root , function ( ) if ( source == button ) then triggerServerEvent ( "giveMoney" , localPlayer ) end end ) ; -- Server side local timer = { } addEvent ( "giveMoney" , true ) addEventHandler ( "giveMoney" , root , function ( ) if ( not isTimer ( timer [ getPlayerSerial ( source ) ] ) ) then givePlayerMoney ( source , 1000 ) timer[getPlayerSerial(source)] = setTimer ( function ( ) end,3*60*1000,1) else outputChatBox("* Please Wait.",source,255,0,0,true) end end ) ; سويت لك تقريبًا 95% من طلبك بس باقي عليك تقفل الازرار كودك لو انه سوا ريستارت للمود بيروح الافضل انه يسويه بالسكل 1 Link to comment
Taken' Posted May 10, 2020 Author Share Posted May 10, 2020 11 hours ago, -Ilker. said: button = guiCreateButton ( 300 , 300 , 100 , 30 , "Money" , false ) addEventHandler ( "onClientGUIClick" , root , function ( ) if ( source == button ) then triggerServerEvent ( "giveMoney" , localPlayer ) end end ) ; -- Server side local timer = { } addEvent ( "giveMoney" , true ) addEventHandler ( "giveMoney" , root , function ( ) if ( not isTimer ( timer [ getPlayerSerial ( source ) ] ) ) then givePlayerMoney ( source , 1000 ) timer[getPlayerSerial(source)] = setTimer ( function ( ) end,3*60*1000,1) else outputChatBox("* Please Wait.",source,255,0,0,true) end end ) ; سويت لك تقريبًا 95% من طلبك بس باقي عليك تقفل الازرار يعطيك العافية 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