News: Welcome back to Bullworth! If you haven't already, you will need to reset your password..


Show Posts

Messages | * Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - Ming

Pages: 1 [2] 3 4 ... 6
16
Mod Showroom / Johnny Crescent Kick
« on: August 14, 2022, 06:19:17 AM »

17
Modding Questions/Help / Grapple Node
« on: July 26, 2022, 01:11:02 PM »
What is this node

18
Modding Questions/Help / Node
« on: July 25, 2022, 12:00:12 PM »
What is the difference of action node, between the Ped
who grab someone and the
 Ped be grab?
RCV and GV?

20
Mod Showroom / Counter Attack mod
« on: July 24, 2022, 03:11:45 AM »

21
Mod Showroom / First Person Shooter mod
« on: July 18, 2022, 05:11:26 AM »

22
Modding Questions/Help / Chainsaw Sound
« on: May 20, 2022, 02:59:33 AM »
SoundPlayAmbience("add.sound.here",volume)
Does anyone know of anything that sounds like a chainsaw?

23
Mod Showroom / BLOODY Chainsaw Execution mod
« on: May 19, 2022, 11:49:29 PM »

24
Modding Questions/Help / CameraSetConvCam()
« on: May 19, 2022, 09:02:18 PM »
How to use CameraSetConvCam()

27
Modding Questions/Help / PedIsHit
« on: May 15, 2022, 10:16:56 PM »
PedIsHit(Ped, 2, 500)
What is 2 means, is 500 time?

28
Modding Questions/Help / check Ped is hit or not
« on: May 11, 2022, 11:28:47 PM »
Code: [Select]

Check = function()
  while true do
    if FrontPedIsHitByPlayer() then
      PedApplyDamage(PlayerHitPed, 10000000)
    end
    Wait (0)
  end
end

HealthRecords = function()
  while true do
    if IsInTable(AllPedHealth, Ped) then
      AllPedHealth[InTableIndex(AllPedHealth, Ped) + 1] = PedGetHealth(Ped)
    else
      table.insert(Ped)
      table.insert(PedGetHealth(Ped))
    end
    Wait(0)
  end
end

FrontPedIsHitByPlayer = function()
  for NPC, Ped in {PedFindInAreaXYZ(0, 0, 0, 99999)} do
    if IsInTable(AllPedHealth, Ped) and PedGetHealth(Ped) ~= AllPedHealth[InTableIndex(AllPedHealth, Ped) + 1] and PedGetWhoHitMeLast(Ped) == gPlayer and Ped ~= gPlayer then
      PlayerHitPed = Ped
      return true
    end
  end
  return false
end
I want to check ped is hit by player or not, but it doesn't work, I use PedIsHit(), but after the Ped is grabbed, PedIsHit is invalid

29
Modding Questions/Help / Pickup
« on: May 11, 2022, 10:10:44 PM »
Is there a function like PickupGetPosXYZ(), PickupFindInAreaXYZ()?

30
Textures Help / Unsed Weapon
« on: May 05, 2022, 12:04:51 AM »
What is it

Pages: 1 [2] 3 4 ... 6