When I go to the game and want the character talk not talk to me eh pressed the skip button does not work and put the strafe attacks but to go to the game only works because the buttons and strafe not? I just want the Strafe worked with codes eh fights and since the character talk?
ImportScript("\\Library\\LibTable.lua")
ImportScript("\\Library\\LibPed.lua")
local l_0_0 = false
MissionSetup = function()
local l_1_0 = 270
local l_1_1 = -110
local l_1_2 = 6.4000000953674
PlayerSetHealth(5000)
AreaTransitionXYZ(0, l_1_0, l_1_1, l_1_2)
SoundPlayStream("MS_FightMid02.rsm", 0.69999998807907)
end
if IsButtonPressed(6,0) then
SoundPlayScriptedSpeechEvent(gplayer, "FIGHT", 0, "large")
end
PlayerSwapModel("JK_LuisWrestle")
PedSetAITree(gPlayer, "/Global/PlayerAI","Act/PlayerAI.act")
TextPrintString("Luis Wrestling Mod", 4, 1)
Wait("5000")
TextPrintString("Even Mod In Progress By 75% J_Striker_A will certainly", 4, 1)
Wait("5000")
TextPrintString("This Mod If 100% complete What I'll upload the page Bully Board

", 3, 1)
Wait("5000")
TextPrintString("Fin This Mod Bully Modder done for me 74 Enjoy!", 3, 1)
if IsButtonPressed(7,0) and IsMoving() and not isStrafing and not PedIsValid(PedGetGrappleTargetPed(gPlayer)) then
PedSetActionNode(gPlayer,"/Global/J_Grappler_A/Default_KEY/ExecuteNodes/LocomotionOverride/Combat/CombatBasic","Act/Anim/J_Grappler_A.act")
isStrafing = true
elseif (not IsButtonPressed(7,0) or not IsMoving()) and isStrafing and not PedIsValid(PedGetGrappleTargetPed(gPlayer)) then
PedSetActionTree(gPlayer,"/Global/J_Grappler_A", "Act/Anim/J_Grappler_A.act")
isStrafing = false
elseif isStrafing then
local x,y,z = PedGetPosXYZ(PedGetTargetPed())
PedFaceXYZ(gPlayer,x,y,z)
IsMoving = function()
local s = 0.08
return GetStickValue(16,0) > s or GetStickValue(16,0) < -s or GetStickValue(17,0) > s or GetStickValue(17,0) < -s
end
end