Jump to content

مساعدة في كود


Recommended Posts

السلام عليكم يا شباب انا عملت كود فيه فنكشن و فيه انيماشن او حركة معينة طبعا انا عامله ب كوماند بس ناقصني شي عاوزو يعمل الانيميشن الاول و بعدين يقعد وقت علشان يعمل الفنكنش ذات نفسها ممكن مساعدة 

 

Link to comment
3 minutes ago, mohamed hussein said:

السلام عليكم يا شباب انا عملت كود فيه فنكشن و فيه انيماشن او حركة معينة طبعا انا عامله ب كوماند بس ناقصني شي عاوزو يعمل الانيميشن الاول و بعدين يقعد وقت علشان يعمل الفنكنش ذات نفسها ممكن مساعدة 

 

على حسب ما فهمك 
 

setTimer

 

Link to comment
1 minute ago, mohamed hussein said:

التايمر هيعمل تأخير للفنكشن كاملة و انا حاطت الحركة اللي يسويها جوا الفنكشن فالبلتالي الركة كمان تتأخر

؟؟

طلعها برا التايمر

Link to comment
3 minutes ago, Master_MTA said:

؟؟

طلعها برا التايمر

كبف اطلعها برا الفنكشن و هيا export
انا جربت عملت فكرتك عملت فنكشن جديدة للحركة بنفس الكوماند بس برضو التايمر مش ظابط

Just now, #BrosS said:

كيف نساعدك بدون اكواد

هات الفنكشن فقط مع التايمر لا تحط كل اكوادك اذا خايف مودك ينسرق

function heal(thePlayer, commandName, targetPartialNick)
--الكود 
setTimer ( heal, 100000, 1)

 

Link to comment
3 minutes ago, mohamed hussein said:

كبف اطلعها برا الفنكشن و هيا export
انا جربت عملت فكرتك عملت فنكشن جديدة للحركة بنفس الكوماند بس برضو التايمر مش ظابط


function heal(thePlayer, commandName, targetPartialNick)
--الكود 
setTimer ( heal, 100000, 1)

 

اكيد هيك تأخر كل الفنكشن لانك حاططه بالتايمر

وين الانيمايشن اللي تبي تأخره

Link to comment
1 minute ago, #BrosS said:

اكيد هيك تأخر كل الفنكشن لانك حاططه بالتايمر

وين الانيمايشن اللي تبي تأخره

exports.global:applyAnimation(thePlayer, "medic", "cpr", 8000, false, true, false)

 

Just now, mohamed hussein said:

exports.global:applyAnimation(thePlayer, "medic", "cpr", 8000, false, true, false)

 

بس انا عملتلها فنكشن تاني برا بس ال 
timer 
مش شغال معرفش ليه 

Link to comment
setTimer(function(player)
    exports.global:applyAnimation(player, "medic", "cpr", 8000, false, true, false)
    end,1000,1) -- الوقت اللي تبيه 

حط هيك داخل الفنكشن ذاك

وحط الوقت اللي تبيه

Link to comment
Just now, #BrosS said:

setTimer(function(player)
    exports.global:applyAnimation(player, "medic", "cpr", 8000, false, true, false)
    end,1000,1) -- الوقت اللي تبيه 

حط هيك داخل الفنكشن ذاك

وحط الوقت اللي تبيه

كدة هيأخر الحرجة لا انا عاوزو يأخر الفنكشن بدون ما يأثر على الحركة

 

Link to comment

اتوقع تقصد انه بين كل حركة وحركة مدة


local aTimer = {	} ;
	
addCommandHandler ( "addAnim" , 
	
	function ( player )
	
	if ( isTimer [ player ] ) then
	
		return outputChatBox ( "error" , player )
	end	
	
	exports.global:applyAnimation(player, "medic", "cpr", 8000, false, true, false)
		
	aTimer [ player ] = setTimer ( function ( player ) 

	outputChatBox ( "can you use command [ addAnim ] Now ! " , player )
	
		end, 5000 , 1 , player )
	end
	)
	
addEventHandler ( "onPlayerQuit" , root , 

	function (	)

	if ( aTimer [ source ] ) then
	
	aTimer [ source ] = nil ;
		end
	end
	)
	

هذا الكود يسمح لك كل 5 ثواني تسوي انميشن

Link to comment
aUsed = false

addCommandHandler (  'anim' ,
  function ( aPlr_ ) 
    if aUsed == true then return end
    setPedAnimation ( aPlr , ... ) -- كمله
    aUsed = true
    setTimer ( function ( )
        aUsed = false 
      end , 1000 * 5 , 1 ) -- بعدخمس ثواني تقدر تستعمله
  end
)

 

Edited by #_iMr.[E]coo
Link to comment
1 hour ago, Abdul KariM said:

اتوقع تقصد انه بين كل حركة وحركة مدة


local aTimer = {	} ;
	
addCommandHandler ( "addAnim" , 
	
	function ( player )
	
	if ( isTimer [ player ] ) then
	
		return outputChatBox ( "error" , player )
	end	
	
	exports.global:applyAnimation(player, "medic", "cpr", 8000, false, true, false)
		
	aTimer [ player ] = setTimer ( function ( player ) 

	outputChatBox ( "can you use command [ addAnim ] Now ! " , player )
	
		end, 5000 , 1 , player )
	end
	)
	
addEventHandler ( "onPlayerQuit" , root , 

	function (	)

	if ( aTimer [ source ] ) then
	
	aTimer [ source ] = nil ;
		end
	end
	)
	

هذا الكود يسمح لك كل 5 ثواني تسوي انميشن

اوووووووووووووووووللللللللللللله نهاية العالممممممممممممممممممممممممممممممم

اخيرا عبد الكريم عطا كود جاهز

  • Like 1
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...