yasin0 Posted February 16, 2018 Share Posted February 16, 2018 سلام عليكم عندي مشكلة انه لو تحقق من السيريال يقولي تم ولو ماتحقق مايضبط الامر function ond(command, player) if command == 'kill' then cancelEvent(true) outputChatBox('Please Dont') else if (getPlayerSerial (player) == "E7EF1AEEA73E5AD8CB41B1E6FCD30FF3" ) then outputChatBox('Done' ) end end end addEventHandler('onPlayerCommand',root,ond) Link to comment
MrKAREEM Posted February 16, 2018 Share Posted February 16, 2018 Serial = { ["قم بوضع سيريالك هنا"] = true, -- السيريال الأول ["قم بوضع سيريالك هنا"] = true, -- السيريال الثاني ["قم بوضع سيريالك هنا"] = true, -- السيريال الثالث } addCommandHandler("kill", -- الأمر function ( ) local PlayerSerial = getPlayerSerial(localPlayer) if ( Serial[PlayerSerial] ) then killPed ( localPlayer ) -- قتل اللاعب outputChatBox("Done",0,255,0,true) -- اخراج في الشات تم else -- اذا لم يجد السيريال outputChatBox("your serial isnot find",0,255,0,true) -- يخرج في الشات لم يتم ايجاد سيريالك end end ) جرب الكود دا Link to comment
Master_MTA Posted February 17, 2018 Share Posted February 17, 2018 11 hours ago, MrKAREEM said: جرب الكود دا الكود بيظبط ويشتغل مافي مشاكل لكن راعي getPlayerSerial انه فنكشن سيرفر سايد المره الجايه عموما بيظبط في ذا الكود لانك تجيب حق اللوكال بلاير بالتوفيق Link to comment
^iiEcoo'x_) Posted February 17, 2018 Share Posted February 17, 2018 11 hours ago, Master_MTA said: الكود بيظبط ويشتغل مافي مشاكل لكن راعي getPlayerSerial انه فنكشن سيرفر سايد المره الجايه عموما بيظبط في ذا الكود لانك تجيب حق اللوكال بلاير بالتوفيق ما شفت موضوع برستيج الي سواه قبل ؟ خلوا هذي الوظيفة سيرفر فقط ! Link to comment
yasin0 Posted February 17, 2018 Author Share Posted February 17, 2018 (edited) كودك ماضبط وانا حاولت بطريقة ثانية مب راضي المفروض يلغي الامر Ser = { [''] = true } function s (thePlayer, command) Serp = getPlayerSerial(thePlayer) if ( Ser[Serp] ) then killPed(command) outputChatBox('done') else if not ( Ser[Serp] ) then cancelEvent() outputChatBox('not') end end end addCommandHandler( 'kill', s ) Edited February 17, 2018 by yasin0 Link to comment
' A F . Posted February 17, 2018 Share Posted February 17, 2018 local serials = { [''] = true, } addCommandHandler ( "kill" , function ( aPlayer ) if ( serials [ getPlayerSerial ( aPlayer ] ) ) then killPed ( aPlayer ) ; outputChatBox ( "* Done" , aPlayer , 0 , 255 , 0 , true ) ; else outputChatBox( "* Sorry" , aPlayer , 255 , 0 , 0 , true ) ; end end ) ; Link to comment
^iiEcoo'x_) Posted February 17, 2018 Share Posted February 17, 2018 7 hours ago, Default#^ said: local serials = { [''] = true, } addCommandHandler ( "kill" , function ( aPlayer ) if ( serials [ getPlayerSerial ( aPlayer ] ) ) then killPed ( aPlayer ) ; outputChatBox ( "* Done" , aPlayer , 0 , 255 , 0 , true ) ; else outputChatBox( "* Sorry" , aPlayer , 255 , 0 , 0 , true ) ; end end ) ; عندك خطا بسطر 6 Link to comment
yasin0 Posted February 17, 2018 Author Share Posted February 17, 2018 2 minutes ago, Default#^ said: local serials = { [''] = true, } addCommandHandler ( "kill" , function ( aPlayer ) if ( serials [ getPlayerSerial ( aPlayer ] ) ) then killPed ( aPlayer ) ; outputChatBox ( "* Done" , aPlayer , 0 , 255 , 0 , true ) ; else outputChatBox( "* Sorry" , aPlayer , 255 , 0 , 0 , true ) ; end end ) ; if ( serials [ getPlayerSerial ( aPlayer ] ) ) then خطاء expeted ] Link to comment
' A F . Posted February 17, 2018 Share Posted February 17, 2018 م أنتبهت له local serials = { [''] = true, } addCommandHandler ( "kill" , function ( aPlayer ) if ( serials [ getPlayerSerial ( aPlayer ) ] ) then killPed ( aPlayer ) ; outputChatBox ( "* Done" , aPlayer , 0 , 255 , 0 , true ) ; else outputChatBox( "* Sorry" , aPlayer , 255 , 0 , 0 , true ) ; end end ) ; 1 Link to comment
yasin0 Posted February 17, 2018 Author Share Posted February 17, 2018 1 minute ago, Default#^ said: م أنتبهت له local serials = { [''] = true, } addCommandHandler ( "kill" , function ( aPlayer ) if ( serials [ getPlayerSerial ( aPlayer ) ] ) then killPed ( aPlayer ) ; outputChatBox ( "* Done" , aPlayer , 0 , 255 , 0 , true ) ; else outputChatBox( "* Sorry" , aPlayer , 255 , 0 , 0 , true ) ; end end ) ; مازال يقتل اللاعب مانلغى الامر Link to comment
^iiEcoo'x_) Posted February 17, 2018 Share Posted February 17, 2018 @Default#^ ؟ true إيش فايدة ال Link to comment
' A F . Posted February 17, 2018 Share Posted February 17, 2018 2 minutes ago, yasin0 said: مازال يقتل اللاعب مانلغى الامر انت وش تبي تسوي بالزبط تبيه يقتل اللاعب لو سيرياله موجود بالجدول ؟ ولا تبيه يقتل اللاعبين الي سيريالهم مو بالجدول Link to comment
yasin0 Posted February 17, 2018 Author Share Posted February 17, 2018 Just now, Default#^ said: انت وش تبي تسوي بالزبط تبيه يقتل اللاعب لو سيرياله موجود بالجدول ؟ ولا تبيه يقتل اللاعبين الي سيريالهم مو بالجدول ابي لما يكون السيريال موجود يقتل عادي اما لما يكون مو موجود السيريال مايقدر يقتل نفسه الامر ينلغي Link to comment
#\_oskar_/# Posted February 17, 2018 Share Posted February 17, 2018 الكود يقتل صاحب السيريال الموجود Link to comment
^iiEcoo'x_) Posted February 17, 2018 Share Posted February 17, 2018 Serials = { [ '' ] = true , } addCommandHandler ( 'kill' , function ( Player ) if ( not Serials [ getPlayerSerial ( Player ) ] ) then return outputChatBox ( 'no' , Player ) end killPed ( Player ) end ) جرب Link to comment
iMr.WiFi..! Posted February 17, 2018 Share Posted February 17, 2018 5 hours ago, DABL said: @Default#^ ؟ true إيش فايدة ال عشان قيمة الجدول .. لأنه لما تستجلب قيمة بأسم السريال راح يرجع لك القيمة او فولس TABLE = { ['DABL'] = '1', ['WiFi'] = '2' } if( TABLE[ 'WiFi' ] == '2' ) then outputChatBox ( TABLE['DABL'] ) end 1 Link to comment
Master_MTA Posted February 17, 2018 Share Posted February 17, 2018 11 hours ago, DABL said: ما شفت موضوع برستيج الي سواه قبل ؟ خلوا هذي الوظيفة سيرفر فقط ! ? مب معطله بالكلنت سايد بس بترجعلك سيريال اللوكال بلاير بس 1 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