#TeKa Posted April 19, 2017 Share Posted April 19, 2017 السلام عليكم و رحمة الله و بركاتة ,, دلوقتي عملت ان اول لما يكتب امر test لو ف السيارة يجيب الاحدثيات و يعمل blip ع الاحدثيات دلوقتي بقا عايز لو اللاعب نزل من السيارة العلامة تفضل محفوظة و لو رجع للسيارة تاني العلامة تروح من المكان و شكرا , .. function new ( player ) if isPedInVehicle ( player ) then local x,y,z = getElementPosition( player ) local blip = createBlip (x,y,z,46,2,255,0,0,255,0,500) outputChatBox("start",255,255,255) end end addCommandHandler ( "test", new ) Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 (edited) Just now, #TeKa said: السلام عليكم و رحمة الله و بركاتة ,, دلوقتي عملت ان اول لما يكتب امر test لو ف السيارة يجيب الاحدثيات و يعمل blip ع الاحدثيات دلوقتي بقا عايز لو اللاعب نزل من السيارة العلامة تفضل محفوظة و لو رجع للسيارة تاني العلامة تروح من المكان و شكرا , .. function new ( player ) if isPedInVehicle ( player ) then local x,y,z = getElementPosition( player ) local blip = createBlip (x,y,z,46,2,255,0,0,255,0,500) outputChatBox("start",255,255,255) end end addCommandHandler ( "test", new ) "onClientVehicleStartEnter" -- client "onVehicleStartEnter" -- server destroyElement -- theBlip Edited April 19, 2017 by Killer Project Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, Killer Project said: "onClientVehicleStartEnter" destroyElement -- theBlip طب الكود الي فوق ده مش شغال ايه الغلط فيه ؟ Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 Just now, #TeKa said: طب الكود الي فوق ده مش شغال ايه الغلط فيه ؟ getPlayerOccupiedVehicle Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, Killer Project said: getPlayerOccupiedVehicle مش فاهم اشرحلي Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 Just now, #TeKa said: مش فاهم اشرحلي -- test it function testCommand ( player, command ) local vehicle = getPlayerOccupiedVehicle ( player ) if vehicle then blip = createBlipAttachedTo ( vehicle, 46 ) outputChatBox("start",255,255,255) end end addCommandHandler ( "test", testCommand ) Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, Killer Project said: -- test it function testCommand ( player, command ) local vehicle = getPlayerOccupiedVehicle ( player ) if vehicle then blip = createBlipAttachedTo ( vehicle, 46 ) outputChatBox("start",255,255,255) end end addCommandHandler ( "test", testCommand ) مش شغال + بدي لو اللاعب خرج من السيارة و رجعلها تنحذف العلامة Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 (edited) Just now, #TeKa said: مش شغال + بدي لو اللاعب خرج من السيارة و رجعلها تنحذف العلامة شف انت مسويها كلينت ولا سيرفر لأن هاذي سيرفر فقط بالنسبة للي طلبته الحين Just now, Killer Project said: "onClientVehicleStartEnter" -- client "onVehicleStartEnter" -- server destroyElement -- theBlip Edited April 19, 2017 by Killer Project Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, Killer Project said: شف انت وسميها كلينت ولا سيرفر لأن هاذي سيرفر فقط بالنسبة للي طلبته الحين طب دلوقتي لو استخدم الي قولتلي عليه ده لو ركب اي سيارة تانية كدا العلامة هتروح انا عايز السيارة الي يخرج منها يركبها تاني العلامة تروح Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 Just now, #TeKa said: طب دلوقتي لو استخدم الي قولتلي عليه ده لو ركب اي سيارة تانية كدا العلامة هتروح انا عايز السيارة الي يخرج منها يركبها تاني العلامة تروح اعمل داتا للعربية اللي انت راكبها setElementData getElementData Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, Killer Project said: اعمل داتا للعربية اللي انت راكبها setElementData getElementData كيف + الكود ده مش شغال و مش بيجلي اي حاجه ف الدي بق function testCommand ( player, command ) local vehicle = getPlayerOccupiedVehicle ( player ) if vehicle then blip = createBlipAttachedTo ( vehicle, 46 ) outputChatBox("start",255,255,255) end end addCommandHandler ( "test", testCommand ) Link to comment
#BrosS Posted April 19, 2017 Share Posted April 19, 2017 function CreateBlip (player) bliper = createBlipAttachedTo (player,46) outputChatBox("start",player,255,0,0) end addEventHandler ( "onVehicleStartEnter", getRootElement(), CreateBlip ) function destroyBlip(player) if isElement(bliper) then destroyElement(bliper) end end addEventHandler ( "onVehicleStartExit", root, destroyBlip) addEventHandler("onVehicleExplode", root, destroyBlip) Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 (edited) Just now, #TeKa said: كيف + الكود ده مش شغال و مش بيجلي اي حاجه ف الدي بق function testCommand ( player, command ) local vehicle = getPlayerOccupiedVehicle ( player ) if vehicle then blip = createBlipAttachedTo ( vehicle, 46 ) outputChatBox("start",255,255,255) end end addCommandHandler ( "test", testCommand ) جرب ذا -- test it addCommandHandler ( 'test', -- client function ( ) local vehicle = getPlayerOccupiedVehicle ( localPlayer ) if vehicle then setElementData ( vehicle, "vehicledata", "vehicleTrue" ) blip = createBlipAttachedTo ( vehicle, 46 ) outputChatBox("start",255,255,255) end end ) addEventHandler("onClientVehicleStartEnter",root, function(player,seat,door) if getElementData ( source, "vehicledata" ) == "vehicleTrue" then setElementData ( source, "vehicledata", "vehicleFalse" ) if isElement (blip) then destroyElement ( blip ) end end end ) Just now, #BrosS said: function CreateBlip (player) bliper = createBlipAttachedTo (player,46) outputChatBox("start",player,255,0,0) end addEventHandler ( "onVehicleStartEnter", getRootElement(), CreateBlip ) function destroyBlip(player) if isElement(bliper) then destroyElement(bliper) end end addEventHandler ( "onVehicleStartExit", root, destroyBlip) addEventHandler("onVehicleExplode", root, destroyBlip) اللي انت مسويه بيسوي علامة على اللاعب هو يبي السيارة مب اللاعب Edited April 19, 2017 by Killer Project Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, Killer Project said: -- test it addCommandHandler ( 'test', -- client function ( ) local vehicle = getPlayerOccupiedVehicle ( localPlayer ) if vehicle then setElementData ( vehicle, "vehicledata", "vehicleTrue" ) blip = createBlipAttachedTo ( vehicle, 46 ) outputChatBox("start",255,255,255) end end ) addEventHandler("onClientVehicleStartEnter",root, function(player,seat,door) if getElementData ( source, "vehicledata" ) == "vehicleTrue" then setElementData ( source, "vehicledata", "vehicleFalse" ) if isElement (blip) then destroyElement ( blip ) end end end ) مش شغال بردو مش بيجلي حاجه ف الدي بق 1 Link to comment
#BrosS Posted April 19, 2017 Share Posted April 19, 2017 3 minutes ago, Killer Project said: جرب ذا -- test it addCommandHandler ( 'test', -- client function ( ) local vehicle = getPlayerOccupiedVehicle ( localPlayer ) if vehicle then setElementData ( vehicle, "vehicledata", "vehicleTrue" ) blip = createBlipAttachedTo ( vehicle, 46 ) outputChatBox("start",255,255,255) end end ) addEventHandler("onClientVehicleStartEnter",root, function(player,seat,door) if getElementData ( source, "vehicledata" ) == "vehicleTrue" then setElementData ( source, "vehicledata", "vehicleFalse" ) if isElement (blip) then destroyElement ( blip ) end end end ) اللي انت مسويه بيسوي علامة على اللاعب هو يبي السيارة مب اللاعب راجع الكود Just now, #TeKa said: مش شغال بردو مش بيجلي حاجه ف الدي بق جرب حقي Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 Just now, #BrosS said: راجع الكود كودي ام كودك ؟ Just now, #TeKa said: مش شغال بردو مش بيجلي حاجه ف الدي بق جربه في ملف كلينت مب سيرفر اذا كنت تجربه في ملف سيرفر Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, Killer Project said: كودي ام كودك ؟ جربه في ملف كلينت مب سيرفر اذا كنت تجربه في ملف سيرفر جربتو ف الكنت و بردو مش شغال Link to comment
#BrosS Posted April 19, 2017 Share Posted April 19, 2017 1 minute ago, #TeKa said: جربتو ف الكنت و بردو مش شغال ماذا عن حقييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييي Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 Just now, #BrosS said: ماذا عن حقييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييييي شوف الموضوع كويس انت انا عايزة ب امر Link to comment
#BrosS Posted April 19, 2017 Share Posted April 19, 2017 addCommmandHandler("test", function (player) local veh = getPedOccupiedVehicle(player) if veh then bliper = createBlipAttachedTo (veh,46) outputChatBox("start",player,255,0,0) end end) function destroyBlip(player) if isElement(bliper) then destroyElement(bliper) end end addEventHandler ( "onVehicleStartExit", root, destroyBlip) addEventHandler("onVehicleExplode", root, destroyBlip) Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 Just now, #BrosS said: addCommmandHandler("test", function (player) local veh = getPedOccupiedVehicle(player) if veh then bliper = createBlipAttachedTo (veh,46) outputChatBox("start",player,255,0,0) end end) function destroyBlip(player) if isElement(bliper) then destroyElement(bliper) end end addEventHandler ( "onVehicleStartExit", root, destroyBlip) addEventHandler("onVehicleExplode", root, destroyBlip) الشي اللي ناقص بكودي outputChatBox("start",player,255,0,0) مانا سويت نفس ذا الفرق بس في الرسالة عندي مشكلة Link to comment
#BrosS Posted April 19, 2017 Share Posted April 19, 2017 Just now, Killer Project said: الشي اللي ناقص بكودي outputChatBox("start",player,255,0,0) مانا سويت نفس ذا الفرق بس في الرسالة عندي مشكلة شف كودك مسوي داتا لما يركب السيارة وتحقق وحوصة وقال يبي العلامة تروح لما ينزل السيارة Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 Just now, #BrosS said: وقال يبي العلامة تروح لما ينزل السيارة اذن ما هذا ؟ Just now, #TeKa said: دلوقتي بقا عايز لو اللاعب نزل من السيارة العلامة تفضل محفوظة و لو رجع للسيارة تاني العلامة تروح من المكان و شكرا , .. .. Just now, #BrosS said: شف كودك مسوي داتا لما يركب السيارة وتحقق وحوصة اول واحد سويته مب اللي فيه داتا ذذ Link to comment
#TeKa Posted April 19, 2017 Author Share Posted April 19, 2017 ما في ولا كود شغال منكم لحد ناو Link to comment
AHMED MOSTAFA Posted April 19, 2017 Share Posted April 19, 2017 Just now, #TeKa said: ما في ولا كود شغال منكم لحد ناو شوف انا احس ان فيه مشاكل في الكومند من اف 8 قول فكرة غير وبسويها لك 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