Jump to content

طلب مساعدة بسيطة :)


Recommended Posts

السلام عليكم اولا ^_^

اريد مود عند دخول الاعب لاول مره في السيرفر ويسجل فيه 

 ياخد فلوس انا احددها وبعض الاسلحة انا حددها :D

- ليبدأ رحلته بالسيرفر :P

اتمني المساعدة لاني دورت كتير :(

Link to comment
local text = "welcome"-- الكلام اي تبيه لما الاعب يسجل دخواه

addEventHandler("onPlayerLogin", root, -- عند دخول الاعب  
  function() -- فنكشن 
 givePlayerMoney(source,1)-- اعطاءالاعب مال و 1هي عدد المال 
    outputChatBox(text,source) -- مخرج بالشات
  end -- انهاء الفنكشن
) -- قوس اغلاق

^ server side !

  • Like 1
Link to comment
8 hours ago, #_iMr,[E]coo said:

local text = "welcome"-- الكلام اي تبيه لما الاعب يسجل دخواه

addEventHandler("onPlayerLogin", root, -- عند دخول الاعب  
  function() -- فنكشن 
 givePlayerMoney(source,1)-- اعطاءالاعب مال و 1هي عدد المال 
    outputChatBox(text,source) -- مخرج بالشات
  end -- انهاء الفنكشن
) -- قوس اغلاق

^ server side !

هو قال يبيه لأول مرة فقط، كودك ذا كل مرة اللاعب يسجل ياخذها

  • Like 1
Link to comment
-- Server

addEventHandler ( 'onPlayerLogin',root,
	function (	_,aPlayerAccount )
		if getAccountData ( aPlayerAccount,'FirstLogin' ) then return end;
		givePlayerMoney ( source,5000 );
		outputChatBox ( 'Welcome to your new world! Enjoy',source,255,255,0 );
		setAccountData ( aPlayerAccount,'FirstLogin',true );
	end
end
);

 

  • Like 1
Link to comment
1 hour ago, iPrestege said:

-- Server

--- ammo = عدد الرصاص
--- weaponID = رقم السلاح

addEventHandler ( 'onPlayerLogin',root, --- حدث عند تسجيل الاعب
	function (	_,aPlayerAccount )
		if getAccountData ( aPlayerAccount,'FirstLogin' ) then return end; --- اذا لا يملك حساب الاعب الداتا
		givePlayerMoney ( source,5000 ); --- يعطيه فلوس
                giveWeapon ( source, weaponID, ammo ); --- يعطيه سلاح
		outputChatBox ( 'Welcome to your new world! Enjoy',source,255,255,0 ); -- يرسل رسالة في الشات
		setAccountData ( aPlayerAccount,'FirstLogin',true ); -- ويعطيه الدتا عشان لما يسجل مرا اخرى ما يعطيه الفلوس + السلاح
	end
end
);

 

هاذا موقع يعطيك كل الاسلحة والرقم الخاص به

https://wiki.multitheftauto.com/wiki/Weapons

 

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