#Azooz07 Posted June 4, 2016 Share Posted June 4, 2016 سلام عليكم شباب ممكن الكوادت الي تعملي الحركه هذي مثلا عندي ملفين صوتيين 1 and 2 مثلا بغيت اشغل ملف صوت رقم 1 اكتب في ف8 start 1 شتغل معي الملف الاول ولما اكتب start 2 يشتغل الملف الصوتي الثاني Link to comment
s7BaT Posted June 4, 2016 Share Posted June 4, 2016 سلام عليكم شباب ممكن الكوادت الي تعملي الحركه هذي مثلا عندي ملفين صوتيين 1 and 2 مثلا بغيت اشغل ملف صوت رقم 1 اكتب في ف8 start 1 شتغل معي الملف الاول ولما اكتب start 2 يشتغل الملف الصوتي الثاني تبي الكود الي يشغل ملف الصوت؟ والا الكود كامل Link to comment
#Azooz07 Posted June 4, 2016 Author Share Posted June 4, 2016 تبي الكود الي يشغل ملف الصوت؟ والا الكود كامل ابي الـــ Functions and Events الي اقدر اسوي فيها الفكره ذي Link to comment
s7BaT Posted June 4, 2016 Share Posted June 4, 2016 تبي الكود الي يشغل ملف الصوت؟ والا الكود كامل ابي الـــ Functions and Events الي اقدر اسوي فيها الفكره ذي تحتاج حدث addCommandHandler('st-1', function() playSound("sound1.mp3") end ) addCommandHandler('st-2', function() playSound("sound2.mp3") end ) ملاحظه حطها في كلينت Link to comment
#Azooz07 Posted June 4, 2016 Author Share Posted June 4, 2016 تحتاج حدث addCommandHandler('st-1', function() playSound("sound1.mp3") end ) addCommandHandler('st-2', function() playSound("sound2.mp3") end ) ملاحظه حطها في كلينت شكرا اخي Link to comment
mouamle Posted June 4, 2016 Share Posted June 4, 2016 addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename Link to comment
#Azooz07 Posted June 4, 2016 Author Share Posted June 4, 2016 addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename وش تعني النقاط في كودك ممكن تشرحه ؟ Link to comment
Me[Z]oO Posted June 4, 2016 Share Posted June 4, 2016 addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename كوده اسهل بكثير اكتب باف 8 playsound mezo playsound azooz playsound اسم ملف الاغنية Link to comment
mouamle Posted June 4, 2016 Share Posted June 4, 2016 (edited) addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename كوده اسهل بكثير اكتب باف 8 playsound mezo playsound azooz playsound اسم ملف الاغنية يب Edited June 4, 2016 by Guest Link to comment
mouamle Posted June 4, 2016 Share Posted June 4, 2016 addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename وش تعني النقاط في كودك ممكن تشرحه ؟ تيبل من الأركمنتات Link to comment
s7BaT Posted June 4, 2016 Share Posted June 4, 2016 تحتاج حدث addCommandHandler('st-1', function() playSound("sound1.mp3") end ) addCommandHandler('st-2', function() playSound("sound2.mp3") end ) ملاحظه حطها في كلينت شكرا اخي العفو Link to comment
Jupi Posted June 5, 2016 Share Posted June 5, 2016 addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename وش تعني النقاط في كودك ممكن تشرحه ؟ النقاط تعني علي الارقمنتات اللي بييستعملها المبرمج في الفنكشن كمثال function (...) Arguments = {...} -- نحط كل الارقمنتات في جدول واحد for Key, Value in ipairs(Arguments) do -- نسوي لوب في الجدول print(Value) -- نطلع القيم end end وتقدر تحط ارقمنتات قبله ثم تستعمل النقاط بحيث انه يحط كام ارقمنت انت تبيهم و الباقي النقاط Link to comment
فاّرس Posted June 5, 2016 Share Posted June 5, 2016 addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename كلينت وبرامتر سيرفر؟؟, وما اشوف له داعي الجدول لأنك بتاخذ القيمه الأولى م فرقت Link to comment
mouamle Posted June 5, 2016 Share Posted June 5, 2016 addCommandHandler( "playsound", function ( sender, command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) /playsound filename كلينت وبرامتر سيرفر؟؟, وما اشوف له داعي الجدول لأنك بتاخذ القيمه الأولى م فرقت مدري بس هذا اللي متعود عليه Link to comment
فاّرس Posted June 5, 2016 Share Posted June 5, 2016 من الأساس كودك خطأ الصحيح تسوي كذا : addCommandHandler( "playsound", function ( command, ... ) local args = { ... } playSound( args[1] .. ".mp3") end ) Client string commandName, [string arg1, string arg2, ...] 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