faisl2002 Posted March 18, 2012 Share Posted March 18, 2012 بسم الله الرحمن الرحيم الصلاة والسلام على أشرف الانبياء المرسلين وبعد اطلب منكم كود وهو كاتالي اذا احد دخل تيم يعني فريق الشرطة مثلا يدخل تلقائيا في قروب معين مثل قروب ادمن او كذا واذا غير فريقه يخرج من القروب حق الشرطة ويدخل قروب الفريق الجديد وكود لكل تيم (فريق) شخصية خاصة والسلام عليكم Link to comment
X-SHADOW Posted March 19, 2012 Share Posted March 19, 2012 استخدم الاكواد التالية https://wiki.multitheftauto.com/wiki/GetPlayerTeamhttps://wiki.multitheftauto.com/wiki/IsObjectInACLGroup https://wiki.multitheftauto.com/wiki/SetPlayerTeam Link to comment
faisl2002 Posted March 19, 2012 Author Share Posted March 19, 2012 اي واحد حق لكل تيم شخصية ابي تلقائيا اول مايدخل هذا التيم الفريق تجيله شخصية وحدة محددة Link to comment
Sparrow Posted March 19, 2012 Share Posted March 19, 2012 نحن عرب مسلمون, يجب أن نكون الأفضل و نساعد بعضنا server side: function createFaislTeam() team = createTeam ("Faisl", 255, 0, 0) -- create team named faisl with red color (إنشاء فريق اسمه فيصل و لونه أحمر) end addEventHandler("onResourceStart", getResourceRootElement(getThisResource()), createFaislTeam) function joinFaislTeam(player) local team = getTeamFromName ("Faisl") -- Search for team named faisl (البحث عن فريق اسمه فيصل) if (team) then -- if we found it (إذا وجدناه) setPlayerTeam (player, team) -- set player on faisl team (وضع لاعب في فريق فيصل) setElementModel (player, 100) -- set player skin to ID: 100 (وضع شخصية الاعب 100) end end addCommandHandler("join_faisl_team", joinFaislTeam) change '100' to any other skin: http://wiki.sa-mp.com/wiki/Skins:All Link to comment
faisl2002 Posted March 19, 2012 Author Share Posted March 19, 2012 مشكوووووووووووور وصدقت نحن عرب ومسلمون نحن أمة محمد نحن أمة إقرأ فلماذا لانكون متعاونين؟؟ Link to comment
faisl2002 Posted March 20, 2012 Author Share Posted March 20, 2012 في خطأ بالاكواد مااشتغلت معي Link to comment
Sparrow Posted March 20, 2012 Share Posted March 20, 2012 function createFaislTeam() faislTeam = createTeam ("Faisl", 255, 0, 0) end addEventHandler("onResourceStart", getResourceRootElement(getThisResource()), createFaislTeam) function joinFaislTeam(player) local getTeam = getTeamFromName ("Faisl") if (getTeam) then setPlayerTeam (player, faislTeam) setElementModel (player, 100) end end addCommandHandler("join_faisl_team", joinFaislTeam) Link to comment
Sparrow Posted March 20, 2012 Share Posted March 20, 2012 it's working fine here. did you set it server side on meta.xml? Link to comment
faisl2002 Posted March 20, 2012 Author Share Posted March 20, 2012 ايوا هي تجيني في قائمات المودات لكن مايشتغل المود Link to comment
Sparrow Posted March 20, 2012 Share Posted March 20, 2012 start the resource and type /join_faisl_team Link to comment
faisl2002 Posted March 20, 2012 Author Share Posted March 20, 2012 ايه سويت وغير الكلام بعد انت جربتها ؟؟ Link to comment
faisl2002 Posted March 20, 2012 Author Share Posted March 20, 2012 خلاص مايهم مشكور على التعاون معي 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