Jump to content

توزيع الاسلحه على فريق واحد


Recommended Posts

function gimmeATeam ( source, commandName, teamName ) 
  local newTeam = createTeam ( teamName ) -- create a new team with the specified name 
  if newTeam then -- if it was successfully created 
    giveWeapon ( source, 31, 200 ) -- Gives the M4 weapon with 200 ammo 
  end 
end 
addCommandHandler("giveteam", gimmeATeam) 

Link to comment
مثلا انت في فريق الشرطة توزع عليهم اسلحه يواسطة كلمة تكتبها في f8
addCommandHandler("gw", 
function(player, cmd, id, amount) 
     local Team = getPlayerTeam(player) 
     if Team and id and amount then 
          for i, players in ipairs(getElementsByType("player")) do 
               if Team == getPlayerTeam(players) then 
                    giveWeapon(players, tonumber(id), tonumber(amount)) 
               end 
          end 
     end 
end) 

Link to comment
addCommandHandler("gw", 
function(player, cmd, id, amount) 
     local Team = getPlayerTeam(player) 
     if Team and id and amount then 
          for i, players in ipairs(getElementsByType("player")) do 
               if Team == getPlayerTeam(players) then 
                    giveWeapon(players, tonumber(43), tonumber(1000)) 
               end 
          end 
     end 
end) 

هذا الا عطاني اياه تابل

Link to comment
addCommandHandler("gw", 
function(player, cmd, id, amount) 
     local Team = getPlayerTeam(player) 
     if Team and id and amount then 
          for i, players in ipairs(getElementsByType("player")) do 
               if Team == getPlayerTeam(players) then 
                    giveWeapon(players, tonumber(43), tonumber(1000)) 
               end 
          end 
     end 
end) 

هذا الا عطاني اياه تابل

هو ماعطاكـ إياه بـ الأرقام : /

خذ الكود الأصلي واكتب

gw 43 1000

بـ الكونسول . .

أو إسأل صآحب الكود #

Link to comment

أنا مسوي الكود بحيث أنك تقدر تتحكم في السلاح الي تبي تعطيه للتيم الي انت فيه + تتحكم في عدد الذخيره

طريقة الأستخدام

gw 

مثال

مع ذخيره 500 M4 أعطاء سلاح

F8 في

gw 31 500 

=================================

أرقام الأسلحة تلقاها هنا

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

Link to comment
شلون اخليه يطلع في الجات مثلا

ha7soon قد وزع m4

addCommandHandler("gw", 
function(player, cmd, id, amount) 
     local Team = getPlayerTeam(player) 
     if Team and id and amount then 
          local WeaponName = getWeaponNameFromID(tonumber(id)) 
          for i, players in ipairs(getElementsByType("player")) do 
               if Team == getPlayerTeam(players) then 
                    giveWeapon(players, tonumber(id), tonumber(amount)) 
                    outputChatBox(getPlayerName(player).." has give you "..WeaponName.." !", players, 255,255,255,true) 
               end 
          end 
     end 
end) 

Link to comment
  • 8 months later...

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