AmrOMohamed Posted January 2, 2016 Share Posted January 2, 2016 عايز اعرف ازاي اعمل ماركر ادخل فيه يغير شخصية وازاي اعمل ماركر لشراء الاسلحة وسيارات لاهنتم Link to comment
' A F . Posted January 2, 2016 Share Posted January 2, 2016 الطلب الاول createMarker onMarkerHit getElementType setElementModel الطلب الثاني createMarker onMarkerHit getElementType triggerClientEvent triggerServerEvent giveWeapon -- table createVehicle setAccountData getAccountData warpPedIntoVehicle Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 addCommandHandler ( "changeveh", function ( thePlayer, command, newModel ) local theVehicle = getPedOccupiedVehicle ( thePlayer ) -- get the vehicle the player is in newModel = tonumber ( newModel ) -- try to convert the string argument to a number if theVehicle and newModel then -- make sure the player is in a vehicle and specified a number setElementModel ( theVehicle, newModel ) end end ) دا تغير شخصية احط فين اي دي الشخصية عشان لما ادخل ماركر يتغير Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 او انك تساعدني وتحطيلي الماركر مع كود تغير شخصية لاهنت Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 انا عملت كود دا marker = createMarker( 220.85848999023, 1861.8957519531, 12.14695930481, "cylinder", 1.3, 223, 238, 63 ) addEventHandler( "onMarkerHit", marker function ( ) if ( getElementType ( source ) == "player" ) then setPedSkin ( source, 284 ) outputChatBox( "!! تم تغير الشخصية بنجاح", source, 210, 0, 0, true ) ) بس مشكلة فيه ان ماركر مايظهر لاكن مود يفتح ويكون شغال فقط Link to comment
' A F . Posted January 2, 2016 Share Posted January 2, 2016 Marker = createMarker ( x , y , z , 'cylinder' , 1.3 , 255,255,255 ) addEventHandler('onMarkerHit',resourceRoot, function ( hit ) if ( hit and getElementType ( hit ) == 'player' ) then setElementModel ( hit , 284 ) outputChatBox('* you have been skin !',hit,255,0,0,true) end end) بدل الـ x,y,z ب الاحداثيات Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 مشكور كثير بس شيئ اخير عايز يكون مكتوب علي ماركر كلام مثلا شخصية 1 توضيح :- يعني لما لاعب يروح او يقرب عند ماركر يكون مكتوب عليه بالعربي من فوق شخصية 1 مثال ؟ اتمني ان تكون فهمتني Link to comment
a7zan Posted January 2, 2016 Share Posted January 2, 2016 text = { {"Text 1",-1307.3328857422,-297.8932800293,16, -- x,y,z pos 255,0,255},-- r,g,b color } addEventHandler ( "onClientRender", root, function (v) for _,v in ipairs (text) do local x,y,z = getElementPosition ( localPlayer ) if ( getDistanceBetweenPoints3D (v[2],v[3],v[4], x,y,z ) ) < 50 then local pos = { getScreenFromWorldPosition ( v[2],v[3],v[4]) } if (isLineOfSightClear (v[2],v[3],v[4], x,y,z, true, true, false, true)) then if pos[1] and pos[2] then dxDrawText (v[1], pos[1],pos[2],pos[1],pos[2], tocolor(v[5],v[6],v[7]), 2, "default-bold" ) end end end end end) Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 (edited) تمام مشكور.. تب انا اريد لما يروح علي الماركر يعطيه 100 دولار وكل مايروح علي ماركر يعطيه 100$ فقط او ان كل 10 دقائق يعطيه 100 دولار يعني لو اخذ من ماركر مرة لاينفع ياخذ تاني الابعد 10د او وقت معين Edited January 2, 2016 by Guest Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 وكذالك لما يروح علي ماركر يعطيه درع Link to comment
a7zan Posted January 2, 2016 Share Posted January 2, 2016 الطلب الآول مدري اذا في فنكشن ناقص او لا .. 'onMarkerHit' getElementType givePlayerMoney setTimer الطلب الثآني 'onMarkerHit' getElementType triggerServerEvent setPedArmor Link to comment
ALw7sH Posted January 2, 2016 Share Posted January 2, 2016 الطلب الآولمدري اذا في فنكشن ناقص او لا .. 'onMarkerHit' getElementType givePlayerMoney setTimer الطلب الثآني 'onMarkerHit' getElementType triggerServerEvent setPedArmor ماعتقد بيعرف يسوي شي بالفنكشنات اذا انت ماشرحت له الي مفروض يسويه بكل هالفنكشنات؟ ودامه مايعرف يسوي هالشيين البسيطين اكيد انه مبتداء ومابيعرف يسوي شي بالفنكشنات بدون شرح -- بالنسبة لردي الي فوق الي فيه فنكشن فقط على ماعتقد قبل مايعدل رده ماكان طالب شي غير يعطي فلوس للاعب Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 دا كود الفلوس مظبوط ؟ Marker = createMarker ( x , y , z , 'cylinder' , 1.3 , 255,255,255 ) addEventHandler('onMarkerHit',resourceRoot, function ( hit ) if ( hit and getElementType ( hit ) == 'player' ) then bool givePlayerMoney ( player thePlayer, 100 ) outputChatBox('* you have been skin !',hit,255,0,0,true) end end) Link to comment
SycroX Posted January 2, 2016 Share Posted January 2, 2016 دا كود الفلوس مظبوط ؟Marker = createMarker ( x , y , z , 'cylinder' , 1.3 , 255,255,255 ) addEventHandler('onMarkerHit',resourceRoot, function ( hit ) if ( hit and getElementType ( hit ) == 'player' ) then bool givePlayerMoney ( player thePlayer, 100 ) outputChatBox('* you have been skin !',hit,255,0,0,true) end end) bool givePlayerMoney ( player thePlayer, 100 ) ??!!!!!!!!!!!!!! --#Correct addEventHandler('onMarkerHit',resourceRoot, function ( hit ) if ( hit and getElementType ( hit ) == 'player' ) then givePlayerMoney (hit, 100 ) outputChatBox('* you have been skin !',hit,255,0,0,true) end end) Link to comment
AmrOMohamed Posted January 2, 2016 Author Share Posted January 2, 2016 عايز اخلي كل 10د يقدر ياخذ 100 دولار فقط .... Link to comment
a7zan Posted January 3, 2016 Share Posted January 3, 2016 الطلب الآولمدري اذا في فنكشن ناقص او لا .. 'onMarkerHit' getElementType givePlayerMoney setTimer الطلب الثآني 'onMarkerHit' getElementType triggerServerEvent setPedArmor ماعتقد بيعرف يسوي شي بالفنكشنات اذا انت ماشرحت له الي مفروض يسويه بكل هالفنكشنات؟ ودامه مايعرف يسوي هالشيين البسيطين اكيد انه مبتداء ومابيعرف يسوي شي بالفنكشنات بدون شرح -- بالنسبة لردي الي فوق الي فيه فنكشن فقط على ماعتقد قبل مايعدل رده ماكان طالب شي غير يعطي فلوس للاعب ماكتب ابي الفنكشنات مع الشرح ، واذا دخل صفحة الفنكشن ، اعتقد راح يكون كل شيء وآضح .. واذا مافهم ، يقدر يتكلم ويقول مافهمت فنكشن .... وبس Link to comment
AmrOMohamed Posted January 5, 2016 Author Share Posted January 5, 2016 عايز لما يروح علي ماركر يعطيه سيارة وانا اختار اي دي المركبة Link to comment
EH10 Posted January 5, 2016 Share Posted January 5, 2016 عايز لما يروح علي ماركر يعطيه سيارة وانا اختار اي دي المركبة Function : createMarker , 'onMarkerHit' , getElementType , # table , isElement , destroyElement , createVehicle , Link to comment
AmrOMohamed Posted January 5, 2016 Author Share Posted January 5, 2016 Marker = createMarker ( 220.46075439453, 1920.83203125, 16.640625, "cylinder", 1.2000000476837, 27, 27, 111 ) function scriptCreateTank ( player, command ) local luckyBugger = getRandomPlayer() -- get a random player local x, y, z = getElementPosition ( luckyBugger ) -- retrive the player's position createVehicle ( 562, 203.76094055176, 1913.8580322266, 17.640625 + 10 ) -- create the tank 10 units above them outputChatBox ( "#ff0000*[ Cars System ] #999999لقد حصلت علي سيارة بنجاح!", luckyBugger ) end --Attach the 'scriptCreateTank' function to the "tank" command addCommandHandler ( "tank", scriptCreateTank ) ماظبت Link to comment
Abdul KariM Posted January 5, 2016 Share Posted January 5, 2016 Marker = createMarker ( 220.46075439453, 1920.83203125, 16.640625, "cylinder", 1.2000000476837, 27, 27, 111 ) function scriptCreateTank ( player, command ) local luckyBugger = getRandomPlayer() -- get a random player local x, y, z = getElementPosition ( luckyBugger ) -- retrive the player's position createVehicle ( 562, 203.76094055176, 1913.8580322266, 17.640625 + 10 ) -- create the tank 10 units above them outputChatBox ( "#ff0000*[ Cars System ] #999999لقد حصلت علي سيارة بنجاح!", luckyBugger ) end --Attach the 'scriptCreateTank' function to the "tank" command addCommandHandler ( "tank", scriptCreateTank ) ماظبت وين حدث دخول الماركر + كودك حوسه Link to comment
AmrOMohamed Posted January 5, 2016 Author Share Posted January 5, 2016 ههههههههههههه كد انا لما اكتب في اف8 tank بيطلعلي عربية في الاحداثيات دي createVehicle ( 562, 203.76094055176, 1913.8580322266, 17.640625 + 10 ) -- create the tank 10 units above them انا عايز لما يدخل ماركر gIVECAR وفين للي كودي حوسة عندك كود الماركر تمام اهو Marker = createMarker ( 220.46075439453, 1920.83203125, 16.640625, "cylinder", 1.2000000476837, 27, 27, 111 ) Link to comment
AmrOMohamed Posted January 5, 2016 Author Share Posted January 5, 2016 انا طالب احد بس يعطيني كود وانا بظبط كل شيئ لحالي بس كود اللي انت حطه يعني لما اكتب امر في اف8 ينزلي سيارة في احداثيات معينة واذا اللي اعطيني اياه الشباب اللي فوق Link to comment
Abdul KariM Posted January 6, 2016 Share Posted January 6, 2016 ^ شوف ثالث رد للاخ زاحف https://forum.multitheftauto.com/viewtopic.php?f=160&t=95566 احذف addEvent ( "givewep", true ) وبدل addEventHandler ( "givewep", root, function ( ) بحدث الماركر يعني يصير كذا addEventHandler ( "onMarkerHit", اسم الماركر, function ( ) 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