Jump to content

استفسار


Recommended Posts

سلام عليكم

انا بدي اسوي مود

بدي اسوي شخصيه و اسوي كول شب وهمي

و اول ما اي شخص يخش الكولشب اذا في سياره

يجيب سرعه السياره

اذا اكبر من 100 الشخصيه تطلق عليه

اذا طلع من الكول شب خلاص ترجع الشخصيه مكانها

و توقف الطلق ؟

ممكن الاكواد المستخدمه ؟

انا مابيه يقتل الشخص ابيه يطلق عليه ..
 

Link to comment
12 hours ago, Walid said:

اخي طيب قلي انا بعرف كم واحد

بس createColPolygon

و    getElementVelocity

و   setPedAimTarget

وش يسوو ..

الباقي عارفهم

Edited by Ahmed Araby
Link to comment
Just now, Walid said:

replace (createColPolygon with createColSphere) and (getElementVelocity with getElementSpeed)

setPedAimTarget : لتحديد الهدف

getElementSpeed: لتحقق من سرعة السيارة

 

 

+ يحتاج تايمر او يستخدم كلنت رندر عشان اطلاق النار :

 

'onClientRender'
addEventHandler( string eventName, element attachedTo, function handlerFunction )
getElementPosition( element theElement )
setPedAimTarget( ped thePed, float x, float y, float z )

 

 

removeEventHandler

 

 

عشان توقف اطلاق النار

Link to comment
7 minutes ago, Ahmed Araby said:

function cmdArmedPed( command )    local x, y, z = getElementPosition(localPlayer)    local thePed = createPed(0, x + 1, y, z)    givePedWeapon(thePed, 30, 5000,true)	endaddCommandHandler("armedped", cmdArmedPed)

 

 

ضيف تايمر بدل هذي :

 

givePedWeapon(thePed, 30, 5000,true)

 

 

بـ هذي

 

setTimer ( givePedWeapon,500,1,thePed,30,5000,true )

 

  • Like 1
Link to comment
12 hours ago, FaHaD said:

 

ضيف تايمر بدل هذي :

 


givePedWeapon(thePed, 30, 5000,true)

 

 

بـ هذي

 


setTimer ( givePedWeapon,500,1,thePed,30,5000,true )

 

 

تمام جاء

الحين انا ضفت هاد ليه

setPedAimTarget( thePed, x,y,z)

 

ليه ما يضرب علي ؟

Link to comment
12 hours ago, FaHaD said:

ورني كيف سويت ؟ وهل استعملت

setPedControlState?

function cmdArmedPed( command ) 
   local x,y,z = getElementPosition(localPlayer)  
   local thePed = createPed(0, x + 1, y, z)   
setTimer ( givePedWeapon,500,1,thePed,30,5000,true )
setPedControlState(thePed,"fire", true)
setPedAimTarget( thePed, x,y,z)

   end
   addCommandHandler("armedped", cmdArmedPed)
   

يب شوف يطلق بس مو علي ..

Link to comment
function cmdArmedPed (  )
    local x, y, z = getElementPosition ( localPlayer )
    thePed = createPed(0, x + 1, y, z)
    setTimer ( givePedWeapon,500,1,thePed, 30, 5000,true )
    setPedControlState( thePed,'fire',true )
    addEventHandler ( 'onClientRender',root,attack )
end
addCommandHandler("armedped", cmdArmedPed)

function attack ( ) 
    local x, y, z = getElementPosition ( localPlayer ) 
    setPedAimTarget ( thePed, x, y, z ) 
end 

-- تنبية
-- لا تكرر الكود اكثر من مرة بيعطيك خطأ للايفنت ماسويت تحقق فية

 

Edited by FaHaD
اضافة تنبية
Link to comment
12 hours ago, FaHaD said:

function cmdArmedPed (  )
    local x, y, z = getElementPosition ( localPlayer )
    thePed = createPed(0, x + 1, y, z)
    setTimer ( givePedWeapon,500,1,thePed, 30, 5000,true )
    setPedControlState( thePed,'fire',true )
    addEventHandler ( 'onClientRender',root,attack )
end
addCommandHandler("armedped", cmdArmedPed)

function attack ( ) 
    local x, y, z = getElementPosition ( localPlayer ) 
    setPedAimTarget ( thePed, x, y, z ) 
end 

 

 setPedLookAt(thePed, x,y,z, -1, 0)


ما صار :(

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...