#M'e[G,]a,<3 Posted February 20, 2019 Share Posted February 20, 2019 السلام عليكم ابي فنكشات اكتب امر في F8 مثلا pos ينسخ احداثياتي اللي واقف فيها .. عايز فنكشات وبحاول اعملها انا Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 "addCommandHandler" function () "getElementPosition" setClipboard('' .. x .. ',' .. y .. ',' .. z .. '') end ) 1 Link to comment
#M'e[G,]a,<3 Posted February 20, 2019 Author Share Posted February 20, 2019 5 minutes ago, #Bad_Boy, said: "addCommandHandler" function () "getElementPosition" setClipboard('' .. x .. ',' .. y .. ',' .. z .. '') end ) ما زبط اخوي Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 Just now, Omar Aly said: ما زبط اخوي دي فنكشات مو الكود كامل 1 Link to comment
#M'e[G,]a,<3 Posted February 20, 2019 Author Share Posted February 20, 2019 Just now, #Bad_Boy, said: دي فنكشات مو الكود كامل طيب ممكن الكود كامل ؟؟ معلش بتعبك معايا Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 تفضل جرب وقولى .. -- Client .. function Bad_Boy() local x,y,z = getElementPosition(localPlayer) setClipboard('' .. x .. ',' .. y .. ',' .. z .. '') outputChatBox("!! تم نسخ الاحداثيات ", 255, 0, 0, true ) end addCommandHandler("pos",Bad_Boy)-- هنا الامر حق اف8 1 Link to comment
#M'e[G,]a,<3 Posted February 20, 2019 Author Share Posted February 20, 2019 Just now, #Bad_Boy, said: تفضل جرب وقولى .. -- Client .. function Bad_Boy() local x,y,z = getElementPosition(localPlayer) setClipboard('' .. x .. ',' .. y .. ',' .. z .. '') outputChatBox("!! تم نسخ الاحداثيات ", 255, 0, 0, true ) end addCommandHandler("pos",Bad_Boy)-- هنا الامر حق اف8 يب اشتغل شكرا Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 Just now, Omar Aly said: يب اشتغل شكرا حياك الله , العفو 1 Link to comment
#M'e[G,]a,<3 Posted February 20, 2019 Author Share Posted February 20, 2019 3 minutes ago, #Bad_Boy, said: حياك الله , العفو طلب اخير بس مش عايز افتح موضوع تاني ابي اكتب امر في اف8 ينسخ السريال Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 فنكشات حاول فيها , عشان تتعلم "addCommandHandler" function () "getPlayerSerial" "setClipboard" end ) 1 Link to comment
#M'e[G,]a,<3 Posted February 20, 2019 Author Share Posted February 20, 2019 طيب addCommandHandler("سريال", function () local x,y,z = getPlayerSerial ( localPlayer ) setClipboard('' .. x .. ',' .. y .. ',' .. z .. '') end ) هيك صح ؟؟ 1 Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 * addCommandHandler("سريال", function ( ) local Serial = getPlayerSerial ( localPlayer ) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) 1 Link to comment
#M'e[G,]a,<3 Posted February 20, 2019 Author Share Posted February 20, 2019 Just now, #Bad_Boy, said: * addCommandHandler("سريال", function ( ) local Serial = getPlayerSerial ( localPlayer ) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) الف شكرررررررررررررررررررررررررررررر 1 Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 حياك الله , العفو 2 Link to comment
Guest Posted February 20, 2019 Share Posted February 20, 2019 3 hours ago, #Bad_Boy, said: * addCommandHandler("سريال", function ( ) local Serial = getPlayerSerial ( localPlayer ) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) Quote Note: The client side version of getPlayerSerial has been deprecated as it can return the wrong value for some players, and is potentially insecure. The following article assumes that the function is serverside only. لـ صاحب الموضوع, إستعمل الترايقر عشان ما يجيك أخطاء . Link to comment
!# H E R O ,_ Posted February 20, 2019 Share Posted February 20, 2019 --Server addCommandHandler("سريال", function ( ) local Serial = getPlayerSerial ( source ) triggerClientEvent("Bad_Boy",root,Serial) end ) ------------------------------------------------ --client addEvent( 'Bad_Boy' , true ) addEventHandler( 'Bad_Boy' , root , function (Serial) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) Link to comment
Doffy Posted February 20, 2019 Share Posted February 20, 2019 لو تبي تجيب معلوماته بعدين مثلا شي اضافي عندي لك يوزفل سويته من فترة يمكن يفيدك فكرته يجبلك معلومات اللاعب مب كلها ولاكن قريب بسوي فيه كم شي جديد Link to comment
KillerX Posted February 20, 2019 Share Posted February 20, 2019 4 hours ago, #Bad_Boy, said: --Server addCommandHandler("سريال", function ( ) local Serial = getPlayerSerial ( source ) triggerClientEvent("Bad_Boy",root,Serial) end ) ------------------------------------------------ --client addEvent( 'Bad_Boy' , true ) addEventHandler( 'Bad_Boy' , root , function (Serial) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) خطا source = nil + بيتنسخ عند الكل مش الاعب اللي كتب الكوماند فقط --Server addCommandHandler("سريال", function ( player ) local Serial = getPlayerSerial ( player ) triggerClientEvent(player,"Bad_Boy",player,Serial) end ) ------------------------------------------------ --client addEvent( 'Bad_Boy' , true ) addEventHandler( 'Bad_Boy' , root , function (Serial) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) Link to comment
Guest Posted February 20, 2019 Share Posted February 20, 2019 --Server addCommandHandler("سريال", function ( source ) local Serial = getPlayerSerial ( source ) triggerClientEvent(source,"Bad_Boy",source,Serial) end ) ------------------------------------------------ --client addEvent( 'Bad_Boy' , true ) addEventHandler( 'Bad_Boy' , root , function (Serial) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) 4 hours ago, #Bad_Boy, said: --Server addCommandHandler("سريال", function ( ) local Serial = getPlayerSerial ( source ) triggerClientEvent("Bad_Boy",root,Serial) end ) ------------------------------------------------ --client addEvent( 'Bad_Boy' , true ) addEventHandler( 'Bad_Boy' , root , function (Serial) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) Link to comment
KillerX Posted February 20, 2019 Share Posted February 20, 2019 2 minutes ago, DABL said: --Server addCommandHandler("سريال", function ( source ) local Serial = getPlayerSerial ( source ) triggerClientEvent(source,"Bad_Boy",source,Serial) end ) ------------------------------------------------ --client addEvent( 'Bad_Boy' , true ) addEventHandler( 'Bad_Boy' , root , function (Serial) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) Link to comment
Popular Post KhaledX Posted February 20, 2019 Popular Post Share Posted February 20, 2019 1 hour ago, DABL said: --Server addCommandHandler("سريال", function ( source ) local Serial = getPlayerSerial ( source ) triggerClientEvent(source,"Bad_Boy",source,Serial) end ) ------------------------------------------------ --client addEvent( 'Bad_Boy' , true ) addEventHandler( 'Bad_Boy' , root , function (Serial) setClipboard( Serial ) outputChatBox("!! تم نسخ سريالك ", 255, 0, 0, true ) end ) 5 Link to comment
Guest Posted February 21, 2019 Share Posted February 21, 2019 - وش فيكم آلكل علي ههههههههههههههههههههههههههههههههههههه 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