RLP[Farouk] Posted September 27, 2012 Share Posted September 27, 2012 السلام عليكم شباب بدي كود jointeam وعند يدخل فرقة يتلون اسمه حسب لون الفرقة Link to comment
RLP[Farouk] Posted September 27, 2012 Author Share Posted September 27, 2012 ممكن مثال اكبر والشرح Link to comment
POWR Posted September 27, 2012 Share Posted September 27, 2012 function assignNewTeam ( source, commandName, teamName ) local theTeam = createTeam ( teamName ) -- انشاء فريق جديد مع الاسم المحدد if theTeam then -- إذا تم إنشاء بنجاح setPlayerTeam ( source, theTeam ) --إضافة إلى لاعب جديد فريق end end addCommandHandler ( "gimmeateam", assignNewTeam ) function unassignTeam ( source, commandName ) local theTeam = getPlayerTeam ( source ) -- تحقق مما إذا كان اللاعب في فريق if theTeam then -- هذا اللاعب هو على الفريق، حتى نتمكن من إزالتها منه setPlayerTeam ( source, nil ) -- إزالة لاعب من الفريق الحالي end end addCommandHandler ( "takeawaymyteam", unassignTeam ) Look Explanation Link to comment
abu5lf Posted September 28, 2012 Share Posted September 28, 2012 السلام عليكمشباب بدي كود jointeam وعند يدخل فرقة يتلون اسمه حسب لون الفرقة addEventHandler ( 'onResourceStart', resourceRoot, function ( ) createTeam ( 'Team', 255, 255, 255 ) -- أنشاء تيم جديد ولونه end ) addCommandHandler ( 'JoinTeam', function ( Player ) setPlayerTeam ( Player, getTeamFromName ( 'Team' ) ) -- تعيين الاعب في التيم setPlayerNametagColor ( Player, getTeamColor ( getTeamFromName ( 'Team' ) ) ) -- تعيين لون اسم الاعب الى لون الفريق end ) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now