Files
jim_bridge/shared
Jim Shield 6cfb776eb4 Add function to makeDistPed that runs after creation
Kept forgetting to do this

When using `makeDistPed()` (making a npc that only appears when nearby) you can now send a function to apply custom modifiers to it after the npc is created

eg.
```lua
makeDistPed(v.model[i], b, true, false, v.scenario, nil, nil, function(ped)
	if v["killable"] then
		SetEntityInvincible(ped, false)
		SetBlockingOfNonTemporaryEvents(ped, false)
		FreezeEntityPosition(ped, false)
	end
end)
```
2025-07-29 12:25:31 +01:00
..
2025-05-03 20:28:13 +01:00
2025-06-21 13:56:49 +01:00
2025-07-09 15:09:14 +01:00
2025-04-14 21:58:38 +01:00
2025-07-27 20:00:42 +01:00
2025-07-07 00:09:34 +01:00
2025-07-07 17:47:04 +01:00
2025-07-22 16:00:27 +01:00