Jump to content

Doffy

Members
  • Posts

    1,546
  • Joined

  • Last visited

  • Days Won

    31

Everything posted by Doffy

  1. عندي لك وظيفة احسن بس بسويها لك علسريع tableGroups = { {"Admin"}, {"Police"}, --- إلخ } function removePlayerGroups ( thePlayer ) if ( thePlayer ) then if ( getElementType(thePlayer) == "player" ) then if not isGuestAccount(thePlayer) then for i,ACLGroups in ipairs ( tableGroups ) do local hisAccountName = getAccountName(getPlayerAccount(thePlayer)) if isObjectInACLGroup ("user."..hisAccountName, aclGetGroup ( ACLGroups[1] ) ) then aclGroupRemoveObject (aclGetGroup(ACLGroups[1]), "user."..hisAccountName) end end end else error("Bad argument #1 the element not a player") end else error("Bad argument #1 player not found") end end هذا بأختصار يحذفلك اي قروب انت تحطه بالجدول الي مسويه لك بالاول علشان يعني لو ما تبي تحذف رتبته وهو كونسول مثلا او ما تبي تحذف منه قروبات معينة يعني ولو في اخطاء ياليت تنبهوني لاني بالجوال + لي كثير ما برمجت شي
  2. @KillerX حتى انا اموت عليك
  3. صراحة من الشرح واضح متعوب عليه احسنت بالشرح شرح جدا خطير مثل صاحبه وتشكر علي الاهداء...#
  4. @N3xT @ibrahim# لاحد يركز معنا حنا نعرف نتعامل مع بعض
  5. نسبة البيض في المكان وصلت %90
  6. اي ادري اني سامج بس المفروض تضحك عرفت ؟
  7. شنبه تقول ..****** هيا لنذهب بالسيارة لنعرف ... اووف السيارة خربت يلا نكمل مشي برضو تبي تعرف ؟؟ اوك كمل لتحت اقول خلنا نكمل بالسيارة بس خلالالالالالالالالاص وصلنا بس كمل مشي كمان لسه باقي 2 متر انزل كمل مشيك انت اخيرا وصلنا باقي متر واحد خلاص انزل هانتت خلالالالالالالاص وقف عندكككككككك شنب عادي شفيك يعني مفكر شي وصخ ؟ ادري الحين بعضكم يقول ضيعت دقيقة من حياتي علي شئ تافه بس انت الي تقرا انا مالي دخل ومع انك تعرف انه ماله فايدة لازلت تقرأ مع انه ماله فايدة يلا اقول رح اطلع من اول وانزل ثاني ولا كأن شي صار
  8. @TOUNSI | ا̍ڸــڛۣــ؏ــٰٱ̍دہ مو ذا نفس مود التوب حقك ؟ المشكلة كاتبلك By Pumpa
  9. بلاك ولا وايت وايت ولا بلو بلو ولا ريد ريد ولا يلوو ؟ بلوو ولا بلوتو ؟ بلوتو ولا نبتون ؟ نبتون ولا اورانوس ؟ اورانوس ولا المشتري ؟ المشتري ولا المباع ؟ المباع ولا المأخوذ ؟ المأخوذ ولا المعطى ؟ المعطى ولا المعطيات ؟ المعطيات ولا الرايحات ؟ الرايحات ولا الجايات ؟ الجايات ولا الذاهبات ؟
  10. @justboy - صديق @SuperX - يا متوحش يا شرير يا قاسي @#StrOnG_,) - يشبه البطاطس ولاكنه كائن هلامي @Rakan# - صديقي ولاكن من ورا الجدار @ibrahim# - ثكلته امه @KillerX - سفاح من خلف الجدران @#_iMr,[E]coo - خوي كفو واكثر من صديق ولاكن مشكلته يحب يحطم الاخرين @TOUNSI | ا̍ڸــڛۣــ؏ــٰٱ̍دہ - i love you , you love me
  11. لا ما شاء الله عليك انت الكبير
  12. الله ي الذكريات اخيرا بترجع
  13. موفق مود رهيب والله ما اعتدنا منك الا المودات الجميلة مثلك ...
  14. اليوم رجعتلكم بوظيفة جديدة والوظيفة واضحة من اسمها getPlayerInfo - Server side only الحين نجي للساينتكس playername, accountname, serial, ip, money, teamname, vehicle, health, armor, dimension, interior = getPlayerInfo(thePlayer) Source Code : function getPlayerInfo(thePlayer) if isElement(thePlayer) and getElementType(thePlayer) == "player" then local aName = getPlayerName(thePlayer) local aAcc = getPlayerAccount(thePlayer) if not isGuestAccount(aAcc) then aAccName = getAccountName(aAcc) else aAccName = "Guest" end local hisSerial = getPlayerSerial(thePlayer) local aIP = getPlayerIP(thePlayer) local hisMoney = getPlayerMoney(thePlayer) local hisTeam = getPlayerTeam(thePlayer) or false if hisTeam ~= false then hisTeamName = getTeamName(hisTeam) else hisTeamName = "N/A" end if isPedInVehicle(thePlayer) then local theVehicle = getPedOccupiedVehicle ( thePlayer ) hisVehicleName = getVehicleName(thePlayer) else hisVehicleName = "On Foot" end local hisHealth = getElementHealth(thePlayer) local hisArmor = getPedArmor(thePlayer) local hisDimension = getElementDimension(thePlayer) local hisInterior = getElementInterior(thePlayer) else error("Bad Argument At Argument #1 player not found") end return aName, aAccName, hisSerial, aIP, hisMoney, hisTeamName, hisVehicleName, hisHealth, hisArmor, hisDimension, hisInterior end مثال : function getPlayerInfo(thePlayer) if isElement(thePlayer) and getElementType(thePlayer) == "player" then local aName = getPlayerName(thePlayer) local aAcc = getPlayerAccount(thePlayer) if not isGuestAccount(aAcc) then aAccName = getAccountName(aAcc) else aAccName = "Guest" end local hisSerial = getPlayerSerial(thePlayer) local aIP = getPlayerIP(thePlayer) local hisMoney = getPlayerMoney(thePlayer) local hisTeam = getPlayerTeam(thePlayer) or false if hisTeam ~= false then hisTeamName = getTeamName(hisTeam) else hisTeamName = "N/A" end if isPedInVehicle(thePlayer) then local theVehicle = getPedOccupiedVehicle ( thePlayer ) hisVehicleName = getVehicleName(thePlayer) else hisVehicleName = "On Foot" end local hisHealth = getElementHealth(thePlayer) local hisArmor = getPedArmor(thePlayer) local hisDimension = getElementDimension(thePlayer) local hisInterior = getElementInterior(thePlayer) else error("Bad Argument At Argument #1 player not found") end return aName, aAccName, hisSerial, aIP, hisMoney, hisTeamName, hisVehicleName, hisHealth, hisArmor, hisDimension, hisInterior end addCommandHandler("getmyinfo", function(plr) local name, accountname, serial, ip, money, team, vehicle, health, armor, dimension, interior = getPlayerInfo(plr) outputChatBox("Your Name: "..name, plr,255,0,0,true) outputChatBox("Your Account name: "..accountname, plr,255,0,0,true) outputChatBox("Your Serial: "..serial, plr,255,0,0,true) outputChatBox("Your IP: "..ip, plr,255,0,0,true) outputChatBox("Your Money: "..money, plr,255,0,0,true) outputChatBox("Your Team: "..team, plr,255,0,0,true) outputChatBox("Your Vehicle: "..vehicle, plr,255,0,0,true) outputChatBox("Your Health: "..health, plr,255,0,0,true) outputChatBox("Your Armor: "..armor, plr,255,0,0,true) outputChatBox("Your Dimension: "..dimension, plr,255,0,0,true) outputChatBox("Your Interior: "..interior, plr,255,0,0,true) end ) النتيجة : _____________________________________________ ادري ان اغلبكم ما بيتهم للفنكشن ولاكن سويته للأفادة في امان الله
  15. يب صح اصعب امتحانات في التاريخ مشفتش اصعب منها
  16. السلام عليكم اليوم حابب اقلكم ابيكم كلكم تجون سيرفري واتمني تزوروني كلكم تنوروني وهذا العدد قبل ساعة ايبي السيرفر : mtasa://46.105.250.205:26058 وسيتم وضع بعض الصور من السيرفر في نفس هذا الموضوع قريب
  17. اتوقع @KillerX افادك حط كوده وجرب
×
×
  • Create New...