Jump to content

getWeaponProperty [{( مساعده )}]


Recommended Posts

السلام عليكم ورحمه الله وبركاتة

اليوم صادفتني مشكلة غريبة

وهي لما استخدم الكود

getWeaponProperty

16 : الايدي حقوا | grenade : مع سلاح القنبلة اللي هو اسموا 

علطول النتيجة تطلع فولس

addCommandHandler( '1' , 
	function( ped )
		outputChatBox( getWeaponProperty( 16 , 'poor' , 'skill_level' ) )
	end
)

ياريت اي حد لو عندوا معلومة او كيفية  تصليح الكود يفيدني

ومتشكر جدا | مع السلامة =)

Link to comment
9 minutes ago, #Ram said:

إطرح أكوادك حقت الـ

addCommandHandler( '1', 
	function( player )	
		outputChatBox( 'Slot : ' .. tostring( getWeaponProperty( 16 , 'pro' , 'weapon_slot' ) ) )
		outputChatBox( 'Slot : ' .. tostring( getWeaponProperty( 16 , 'std' , 'weapon_slot' ) ) )
		outputChatBox( 'Slot : ' .. tostring( getWeaponProperty( 16 , 'poor' , 'weapon_slot' ) ) )
	end
)

or

addCommandHandler( '1', 
	function( player )	
		outputChatBox( 'model : ' .. tostring( getWeaponProperty( 16 , 'poor' , 'model' ) ) )
		outputChatBox( 'model : ' .. tostring( getWeaponProperty( 16 , 'std' , 'model' ) ) )
		outputChatBox( 'model : ' .. tostring( getWeaponProperty( 16 , 'pro' , 'model' ) ) )
	end
)

 

Link to comment
Just now, KillerX said:

addCommandHandler( '1', 
	function( player )	
		outputChatBox( 'Slot : ' .. tostring( getWeaponProperty( 16 , 'pro' , 'weapon_slot' ) ) )
		outputChatBox( 'Slot : ' .. tostring( getWeaponProperty( 16 , 'std' , 'weapon_slot' ) ) )
		outputChatBox( 'Slot : ' .. tostring( getWeaponProperty( 16 , 'poor' , 'weapon_slot' ) ) )
	end
)

or


addCommandHandler( '1', 
	function( player )	
		outputChatBox( 'model : ' .. tostring( getWeaponProperty( 16 , 'poor' , 'model' ) ) )
		outputChatBox( 'model : ' .. tostring( getWeaponProperty( 16 , 'std' , 'model' ) ) )
		outputChatBox( 'model : ' .. tostring( getWeaponProperty( 16 , 'pro' , 'model' ) ) )
	end
)

 

تأكد إن اللاعب معه السلاح ..
+ انت هنا تحاول تجيب مودل السلاح والسلوت حقته يعني ؟؟؟ 
ولو تقدر تطرح ايش تبي تسوي وايش مقصدك يمكن نقدر نسويها لك بطريقة ثانية ,

هذا الفنكشن :
https://wiki.multitheftauto.com/wiki/GetPedWeaponSlot
يجلب لك السلوت حقت السلاح الي انت ماسكه دحين ..

Link to comment
4 minutes ago, #Ram said:

تأكد إن اللاعب معه السلاح ..
+ انت هنا تحاول تجيب مودل السلاح والسلوت حقته يعني ؟؟؟ 
ولو تقدر تطرح ايش تبي تسوي وايش مقصدك يمكن نقدر نسويها لك بطريقة ثانية ,

هذا الفنكشن :
https://wiki.multitheftauto.com/wiki/GetPedWeaponSlot
يجلب لك السلوت حقت السلاح الي انت ماسكه دحين ..

قصدي هنا مو السلوت 

قصدي ان الفنكشن مع القنبلة في الاغلب يرجع فولس

Link to comment
Just now, KillerX said:

قصدي هنا مو السلوت 

قصدي ان الفنكشن مع القنبلة في الاغلب يرجع فولس

القنبلة في بروبارتيز ماتحصلها فيها ..

مو كل الاسلحة فيها , إبحث بالويكي تعرف إيش الي فيه وإيش إلي مافيه ..

أم تي إي مافي شيء مستحيل بالبرمجة فيها , كل شيء تبيه تقدر تسويه
لكن القنبلة مو مبرمجه ببروبارتيز معينة , تكون عادةً مالها لزوم ..

Link to comment
5 minutes ago, #Ram said:

القنبلة في بروبارتيز ماتحصلها فيها ..

مو كل الاسلحة فيها , إبحث بالويكي تعرف إيش الي فيه وإيش إلي مافيه ..

لا الويكي مب قايل الكل يطلع فولس

Property = { 'fire_type' , 'model' , 'model2' , 'weapon_slot' , 'anim_group' , 
'skill_level' , 'required_skill_level' , 'firing_speed' , 'radius' , 'life_span' , 'spread' , 
'fire_offset' , 'aim_offset' , 'default_combo' , 'combos_available' }

for _ , P in ipairs( Property ) do
	outputChatBox( tostring( getWeaponProperty( 16 , 'pro' , P ) ) )
end

 

Link to comment
16 hours ago, KillerX said:

لا الويكي مب قايل الكل يطلع فولس


Property = { 'fire_type' , 'model' , 'model2' , 'weapon_slot' , 'anim_group' , 
'skill_level' , 'required_skill_level' , 'firing_speed' , 'radius' , 'life_span' , 'spread' , 
'fire_offset' , 'aim_offset' , 'default_combo' , 'combos_available' }

for _ , P in ipairs( Property ) do
	outputChatBox( tostring( getWeaponProperty( 16 , 'pro' , P ) ) )
end

 

انا قلت لك الكل يطلع فولس ؟؟؟؟؟؟؟؟؟؟؟

16 hours ago, #Ram said:

مو كل الاسلحة

 

Link to comment
8 minutes ago, [T]|O|[P]George said:

Returns

On success:

int: The weapon property

On failure:

bool: False if the passed arguments were invalid

 

في اسلحة ما لها خصائص تعدل عليها من ضمنها القنابل و السكين و المضرب

و شوف لو نفع معك M4 جرب تعدل علي سلاح 

يب داري ان الام فور وغيروا بيطلع 

بس الويكي مب قايل ان القنبلة مالها بروبرتي 

Link to comment
20 minutes ago, [T]|O|[P]George said:

لانك ما تقدر تعدل لو تبيه يضرب عن بعد او تبي كام دمجه انما تقدر تسوي تحقق لو السلاح كان بالاي دي 16

فيقلل مثلا 30 من اللاعب الي تدمج ذا لو تبي تزيد الدمج لسلاح

المقصد ما ابي الدمج انا اعطي مثال فقط من البروبيرتي

علي العموم مشكور :)

Link to comment
9 minutes ago, KillerX said:

المقصد ما ابي الدمج انا اعطي مثال فقط من البروبيرتي

علي العموم مشكور :)

العفو - بس ذا الي فهمته من كلامك 

 

1 hour ago, KillerX said:

اظن انوا بق لان مثلا شئ مثل الدميدج المفروض للسلاح عادي حتي لو بدون تصويب

هو بيطلعوا فولس ?

 

لو ينفع توضح مقصدك يمكن غيري يقدر يساعدك - و بس

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...