BoneTown: كيفية تغيير سرعة اللاعب باستخدام مفتاح لوحة المفاتيح مع البرنامج النصي

فيما يلي برنامج تعليمي بسيط حول كيفية تغيير سرعة المشغل باستخدام مفتاح لوحة المفاتيح.

 

كيفية تغيير سرعة اللاعب باستخدام مفتاح لوحة المفاتيح مع البرنامج النصي

لذلك تقوم بنسخ هذا الرمز ووضعه في bonetown / game / mods / myfirstscript.cs

//declare our global variable to store the speed, it will increase each time you press  the keys
$myplayerspeed = "3";

// then our function to be called :
function changeplayerspeed()
{
	%tChar = ServerConnection.GameCharacter; //get the player object from engine
		if(%tChar !$= "" && %tChar !$= "0") //ensure the mission and player object are loaded !!!
		{  
			%tChar.modifySpeed($myplayerspeed, 1);  // set to speed to 4 or more ,change the value to test XD

                       $myplayerspeed++;  // this allow to auto increase the value each time the function is called by pressing the keys
		}
}



// this will call the function when you press CTRL + J  keys ingame
GlobalActionMap.bind(keyboard, "ctrl j", "changeplayerspeed", "Description: change the player speed to 4");

بمجرد تحميل اللعبة وأنت في مهمة ، اضغط على مفاتيح CTRL + J وستجعلك تلعب بشكل أسرع من ذي قبل.

By كودمان 02

اترك تعليق

ArabicEnglishFrenchGermanItalianJapaneseKoreanPortugueseSpanish