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.

Messages - mhdt

Pages: 1 ... 3 4 [5]
61
Modding Questions/Help / Re: Hit Stop mod
« on: July 15, 2021, 06:18:31 PM »
不过我并没有觉得因此会提升打击感?

62
Modding Questions/Help / Re: Hit Stop mod
« on: July 15, 2021, 06:17:54 PM »
你只使用PedIsHit(Ped2)游戏会识别成任何形式的攻击,你应该改为PedIsHit(Ped2, 2)游戏会识别成近战,下面代码亲测可行
Code: [Select]
function HitStop()
 Time = 150
 while true do
  for NPC,Ped2 in {PedFindInAreaXYZ(0, 0, 0, 99999)} do
   if PedIsHit(Ped2, 2) and PedGetWhoHitMeLast(Ped2) == gPlayer then
     PlayerSpeed = GameGetPedStat(gPlayer, 20)
     PedSpeed = GameGetPedStat(Ped2, 20)
     GameSetPedStat(gPlayer, 20, 30)
     GameSetPedStat(Ped2, 20, 30)
     Wait(Time)
     GameSetPedStat(gPlayer, 20, PlayerSpeed)
     GameSetPedStat(Ped2, 20, PedSpeed)
 end
   end
  Wait(0)
 end
end

63
Modding Questions/Help / Re: Hit Stop mod
« on: July 15, 2021, 02:05:57 AM »
You have published the correct version in QQ, why do you want to publish the broken version here?

64
Modding Questions/Help / Re: Ped has been hurt or not
« on: June 21, 2021, 02:16:47 AM »
PedIsPlaying(ped, "/Global/HitTree", true)

65
Modding Questions/Help / Re: about bike_gen
« on: April 25, 2021, 07:54:01 AM »
Thanks for the tip

66
Modding Questions/Help / Re: about bike_gen
« on: April 24, 2021, 08:42:31 PM »
You can simply mod it and replace the original. The game autoruns it on game launch.
what do you mean?

67
Modding Questions/Help / about bike_gen
« on: April 24, 2021, 06:23:20 PM »
i tried to use isbuttonpressd in bike_gen,but it doesn't work,how does it work like StimeCycle?

68
Modding Questions/Help / Re: about population
« on: March 06, 2021, 03:28:24 AM »
A good start is to look up the word "Industrial", as that's how the game internally refers to Blue Skies.
it doesn't work,this place always spwan dropout.I have tried every Industrial and only this one place only spawn dropout

69
Modding Questions/Help / about population
« on: March 05, 2021, 09:56:40 PM »
where is the place name in population.dat?i can't find.

Pages: 1 ... 3 4 [5]