Jump to content

مساعده بسيطة


waYsa

Recommended Posts

لا اقصد مثلا ابي اشغل هذه الخاصية فقط عند الادمن 
الحين يوم يكتب الشخص باف 8 كلمة الامر " GiveMoney " ما يفتحها الا اذا كان ادمن موجود بلاسل

addCommandHandler("GiveMoney",function()
---
---
---
---
---
إلخ
 
Edited by waYsa
Link to comment
1 minute ago, waYsa said:

لا اقصد مثلا ابي اشغل هذه الخاصية فقط عند الادمن 
الحين يوم يكتب الشخص باف 8 كلمة الامر " GiveMoney " ما يفتحها الا اذا كان ادمن موجود بلاسل


addCommandHandler("GiveMoney",function()
---
---
---
---
---
إلخ
 

يب زي ما قالك الاخ نصور

Link to comment
addCommandHandler ( "jetpack",
    function ( thePlayer )
        if doesPedHaveJetPack ( thePlayer ) then -- If the player have a jetpack already, remove it
            removePedJetPack ( thePlayer ) -- Remove the jetpack
            return -- And stop the function here
        end
		
     -- Otherwise, give him one if he has access

     local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) -- get his account name
     if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then -- Does he have access to Admin functions?
          if not doesPedHaveJetPack ( thePlayer ) then -- If the player doesn't have a jetpack give it.
               givePedJetPack ( thePlayer )  -- Give the jetpack
          end
     end
end
)

WiKi

Link to comment
8 minutes ago, waYsa said:

ممكن طرح كود كمثال على طلبي لاي خاصية كانت ؟

 
function master (thePlayer)
   local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) -- تجيب اسم الحساب
     if isObjectInACLGroup ("user."..accName, aclGetGroup ( "GiveMoney" ) ) then ---------------- تتحقق من وجود اسم الحساب في الجروب
    givePlayerMoney(root,1500) ---بدل 1500 بالمبلغ اللي تبيه
    end
  end

addCommandHandler ( "هنا تحط الامر اللي تبي تكتبه باف 8 عشان توزع فلوس", master )

طبعا كله سيرفر سايدددددددد

Edited by Master_MTA
Link to comment
10 hours ago, Default said:

طيب ليه ماتخليه يحاول ^ ؟

+ سوي تحقق لو كان مسجل دخول ولا 

ابشر بس سويتها من باب التسهيل عليه

@Default

 

#Edit:

عدلت عليه اتمنى تشوفه

function master (thePlayer)   
  local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) -- تجيب اسم الحساب 
  if not isGuestAccount ( sourceAccount ) then ----------------- يتحقق من انه مسجل دخول من باب التسيير عشان تفهم اسرع        
    if isObjectInACLGroup ("user."..accName, aclGetGroup ( "GiveMoney" ) ) then ---------------- تتحقق من وجود اسم الحساب في الجروب          
      givePlayerMoney(root,1500)   ---بدل 1500 بالمبلغ اللي تبيه   
    end  
    end
end
    addCommandHandler ( "هنا تحط الامر اللي تبي تكتبه باف 8 عشان توزع فلوس", master )

 

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