เพิ่มปุ่มฆ่าตัวตายที่ปุ่ม J


เพิ่มปุ่มฆ่าตัวตายที่ปุ่ม J
จะเป็นการเพิ่มปุ่มมาใหม่

1. เปิดไฟล์ inventory.lua
ค้นหา
buttonItems["inventory"] = guiCreateButton(0.53, 0.17, 0.04, 0.69, "<-", true,inventoryWindows)
2. เพิ่มต่อด้านล่าง
เพิ่ม
buttonItems["kill"] = guiCreateButton(0.955, 0.96, 0.025, 0.03, "☢", true,inventoryWindows)
3. เพิ่มสิ่งนี้ล่างสุดของไฟล์ เพื่อไม่ให้รบกวนโค้ดตัวอื่นๆ
เพิ่ม
unction VitosProKILL() 
 if source == buttonItems["kill"] then
  setElementData(localPlayer,"blood",-10) 
 end
end
function isThereSomeoneInLoot ()
 local loot = isPlayerInLoot()
 local playersTable = getElementsWithinColShape ( loot, 'player' )
 for i, player in ipairs ( playersTable ) do
  if player ~= localPlayer then
   return true
  end
 end
 if not playersTable then
  return true
 end
 return false
end
addEventHandler("onClientGUIClick",getRootElement(),VitosProKILL)

ไม่มีความคิดเห็น:

แสดงความคิดเห็น