Now I Got it ... the reasons why prep sometime use uppercut or not...
They usually use uppercut when their position were beside or behind their enemy otherwise they won't use it except the single uppercut
also deadpool could you fix P_Bif ? Ge Always Bugged when i play as him(move forward while strafing no where and can't lock on)until 2 o'clock -_- the other ped sheldom getting bugged like this
The reason why you can use the finishing cross is because I programmed the style that way.
Example:
ExecuteActionNode(gPlayer, "/Global/P_Striker_A/Offense/Short/Strikes/LightAttacks/JAB", "act/anim/P_Striker_A.act")
while PedIsPlaying(gPlayer, "/Global/P_Striker_A/Offense/Short/Strikes/LightAttacks/JAB", "act/anim/P_Striker_A.act") do
Wait(0)
end
while PedIsPlaying(gPlayer, "/Global/P_Striker_A/Offense/Short/Strikes/LightAttacks/JAB/Cross", "act/anim/P_Striker_A.act") do
Wait(0)
end
while PedIsPlaying(gPlayer, "/Global/P_Striker_A/Offense/Short/Strikes/LightAttacks/LeftHook", "act/anim/P_Striker_A.act") do
Wait(0)
end
local RandomNumber = math.random(1,2)
local RandomNumber = 1
if RandomNumber == 1 then
PedSetActionNode(gPlayer, "/Global/P_Striker_A/Offense/Short/Strikes/LightAttacks/LeftHook/FinishingCross", "act/anim/P_Striker_A.act")
else
PedSetActionNode(gPlayer, "/Global/P_Striker_A/Offense/Short/Strikes/HeavyAttacks/Uppercut", "act/anim/P_Striker_A.act")
end
If you tried to use that combo without the code I showed you then you would always use the uppercut as the finisher.
Anyways nice discovery since it's weird that it only works if you are in front of your opponent... that shouldn't happen.
P_Bif is one of the most bugged fighting styles... I'm still trying to make it work without any flaws. I have experienced that bug where he walks no where and I think I know how to fix it.
Btw what happened with sheldon? His fighting style is one of the most functional.
This mod don´t work for me whenever i start bully nothing happens i pressed Left and right task and put it on the scripts folder did i forgot something?
Would be very pleased if you help me ^^
Thanks
Replace scripts.img and scripts.dir in your scripts folder and then start the game. If the "Not another selector" red text appears then the mod works. Maybe you changed the controls in your game... I made sure that the version of the mod I uploaded works.