~Mr.Hassan Posted August 10, 2015 Author Share Posted August 10, 2015 function removeAllOccupantsInVehicle(vehicle) if isElement(vehicle) and getElementType(vehicle) == "vehicle" then for k,v in pairs(getVehicleOccupants(vehicle)) do if isElement(v) then if removePedFromVehicle(v) then return true end end end end return false end addEvent("SS", true) addEventHandler("SS", root, function( ) local vehicle = getPedOccupiedVehicle(source) if vehicle then removeAllOccupantsInVehicle(vehicle) end end) اقدر اعمل انه ليطلع لازم يكون معه 5000 الكود معي local money = getPlayerMoney(thePlayer) if (money > 1000) then outputChatBox("ليس لديك نقود تكفي " .. tostring(money), thePlayer) Link to comment
#Madara Posted August 10, 2015 Share Posted August 10, 2015 (edited) أهم شيء أنه حاول ! -- Server Side addEvent ("SS",true) sddEventHandler ("SS",root, function ( thePlayer ) local vehicle = getPedOccupiedVehicle ( thePlayer ) if vehicle then for i = 0,getVehicleMaxPassengers ( vehicle ) do local getPlayer = getVehicleOccupant( vehicle, i ) if thePlayer and getPlayer and getPlayer ~= thePlayer then removePedFromVehicle( getPlayer ) end end end end ) addEvent ("SS",true) addEventHandler ("SS",root, function ( thePlayer ) local vehicle = getPedOccupiedVehicle ( thePlayer ) if vehicle then for i = 0,getVehicleMaxPassengers ( vehicle ) do local getPlayer = getVehicleOccupant( vehicle, i ) if thePlayer and getPlayer and getPlayer ~= thePlayer then removePedFromVehicle( getPlayer ) end end end end ) Edited August 10, 2015 by Guest Link to comment
~Mr.Hassan Posted August 10, 2015 Author Share Posted August 10, 2015 function removeAllOccupantsInVehicle(vehicle) if isElement(vehicle) and getElementType(vehicle) == "vehicle" then for k,v in pairs(getVehicleOccupants(vehicle)) do if isElement(v) then if removePedFromVehicle(v) then return true end end end end return false end addEvent("SS", true) addEventHandler("SS", root, function( ) local vehicle = getPedOccupiedVehicle(source) if vehicle then removeAllOccupantsInVehicle(vehicle) end end) اقدر اعمل انه ليطلع لازم يكون معه 5000 الكود معي local money = getPlayerMoney(thePlayer) if (money > 1000) then outputChatBox("ليس لديك نقود تكفي " .. tostring(money), thePlayer) لا تفهموني غلط بس خايف احطه واخرب الكود لان فيه اكثر من if واخاف مثال ايف الي لسياره تطلع للموني وكذا Link to comment
</Mr.Tn6eL> Posted August 10, 2015 Share Posted August 10, 2015 (edited) اقدر اعمل انه ليطلع لازم يكون معه 5000 الكود معي local money = getPlayerMoney(thePlayer) if (money > 1000) then outputChatBox("ليس لديك نقود تكفي " .. tostring(money), thePlayer) [/b][/i] نعم تقدر if vehicle and getPlayerMoney(source) >= 5000 then removeAllOccupantsInVehicle(vehicle) end Edited August 10, 2015 by Guest Link to comment
~Mr.Hassan Posted August 10, 2015 Author Share Posted August 10, 2015 بس سؤال يمكن واحد جنب السواق يعمل انه يطلع الكل يقدر ولا لا ؟ Link to comment
iMr.SFA7 Posted August 10, 2015 Share Posted August 10, 2015 أهم شيء أنه حاول ! -- Server Side addEvent ("SS",true) sddEventHandler ("SS",root, function ( thePlayer ) local vehicle = getPedOccupiedVehicle ( thePlayer ) if vehicle then for i = 0,getVehicleMaxPassengers ( vehicle ) do local getPlayer = getVehicleOccupant( vehicle, i ) if thePlayer and getPlayer and getPlayer ~= thePlayer then removePedFromVehicle( getPlayer ) end end end end ) addEvent ("SS",true) addEventHandler ("SS",root, function ( thePlayer ) local vehicle = getPedOccupiedVehicle ( thePlayer ) if vehicle then for i = 0,getVehicleMaxPassengers ( vehicle ) do local getPlayer = getVehicleOccupant( vehicle, i ) if thePlayer and getPlayer and getPlayer ~= thePlayer then removePedFromVehicle( getPlayer ) end end end end ) ماشوفك عدلت شيء ؟؟ !! Link to comment
Simple. Posted August 10, 2015 Share Posted August 10, 2015 تحققك خطاء متحقق ان معه اكثر من الف وتقول له ليس لديك نقود local money = getPlayerMoney(thePlayer) if ( money > 5000 ) then -- كودك else outputChatBox("ليس لديك نقود تكفي " .. tostring(money), thePlayer) end Link to comment
</Mr.Tn6eL> Posted August 10, 2015 Share Posted August 10, 2015 بس سؤال يمكن واحد جنب السواق يعمل انه يطلع الكل يقدر ولا لا ؟ يب ينزل جميع الركاب بالقوة حتى السائق Link to comment
#Madara Posted August 10, 2015 Share Posted August 10, 2015 أهم شيء أنه حاول ! -- Server Side addEvent ("SS",true) sddEventHandler ("SS",root, function ( thePlayer ) local vehicle = getPedOccupiedVehicle ( thePlayer ) if vehicle then for i = 0,getVehicleMaxPassengers ( vehicle ) do local getPlayer = getVehicleOccupant( vehicle, i ) if thePlayer and getPlayer and getPlayer ~= thePlayer then removePedFromVehicle( getPlayer ) end end end end ) addEvent ("SS",true) addEventHandler ("SS",root, function ( thePlayer ) local vehicle = getPedOccupiedVehicle ( thePlayer ) if vehicle then for i = 0,getVehicleMaxPassengers ( vehicle ) do local getPlayer = getVehicleOccupant( vehicle, i ) if thePlayer and getPlayer and getPlayer ~= thePlayer then removePedFromVehicle( getPlayer ) end end end end ) ماشوفك عدلت شيء ؟؟ !! بلا سطر 4 عندك sddEventHandler Link to comment
~Mr.Hassan Posted August 10, 2015 Author Share Posted August 10, 2015 يصير كذا ؟ addEvent ("SS",true) addEventHandler ("SS",root, function ( thePlayer ) if vehicle and getPlayerMoney(source) >= 5000 then removeAllOccupantsInVehicle(vehicle) local vehicle = getPedOccupiedVehicle ( thePlayer ) if vehicle then for i = 0,getVehicleMaxPassengers ( vehicle ) do local getPlayer = getVehicleOccupant( vehicle, i ) if thePlayer and getPlayer and getPlayer ~= thePlayer then removePedFromVehicle( getPlayer ) end end end end end ) Link to comment
~Mr.Hassan Posted August 10, 2015 Author Share Posted August 10, 2015 بس سؤال يمكن واحد جنب السواق يعمل انه يطلع الكل يقدر ولا لا ؟ يب ينزل جميع الركاب بالقوة حتى السائق ههههههههههههههههه ابي بس السائق لو عمل كذا يطلع الركاب الي معه هههههههههههههههههههههههههههه يلا خلاص تعبتكم شكرا تمت الافاده من الكل الي ساعدوني بل موضوع Link to comment
~Mr.Hassan Posted August 10, 2015 Author Share Posted August 10, 2015 اقدر اعمل انه ليطلع لازم يكون معه 5000 الكود معي local money = getPlayerMoney(thePlayer) if (money > 1000) then outputChatBox("ليس لديك نقود تكفي " .. tostring(money), thePlayer) [/b][/i] نعم تقدر if vehicle and getPlayerMoney(source) >= 5000 then removeAllOccupantsInVehicle(vehicle) end ذذذذذذذذذ Link to comment
iMr.SFA7 Posted August 10, 2015 Share Posted August 10, 2015 هذا حاطه بكودي دامك استخدمت كودي لا تحطه ماله معنى بدون كود تنطيل Link to comment
</Mr.Tn6eL> Posted August 10, 2015 Share Posted August 10, 2015 بس سؤال يمكن واحد جنب السواق يعمل انه يطلع الكل يقدر ولا لا ؟ يب ينزل جميع الركاب بالقوة حتى السائق ههههههههههههههههه ابي بس السائق لو عمل كذا يطلع الركاب الي معه هههههههههههههههههههههههههههه يلا خلاص تعبتكم شكرا تمت الافاده من الكل الي ساعدوني بل موضوع مافيه شي يضحك function removeAllOccupantsInVehicle(vehicle) if isElement(vehicle) and getElementType(vehicle) == "vehicle" then for k,v in pairs(getVehicleOccupants(vehicle)) do if isElement(v) and getVehicleController(vehicle) ~= v then return removePedFromVehicle(v) end end end return false end Link to comment
iMr.SFA7 Posted August 10, 2015 Share Posted August 10, 2015 @ COO9 / أعتقد أن كودك ينزل الكل من السيارة هو ما يبي كذا يبي اذا السواق ضغط الزر يطلع الركاب من السيارة Link to comment
</Mr.Tn6eL> Posted August 10, 2015 Share Posted August 10, 2015 @ COO9 / أعتقد أن كودك ينزل الكل من السيارة هو ما يبي كذا يبي اذا السواق ضغط الزر يطلع الركاب من السيارة طيب شوف كودي فوق وراح تلاحظ أني عدلته وخليت السواق مايطلع منها 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