Bully-Board

Bully Modding Section => Modding Questions/Help => Modding Questions/Help Archives => Topic started by: Black Norton on June 23, 2013, 10:41:27 PM

Title: BoxingPlayer Fighting Style
Post by: Black Norton on June 23, 2013, 10:41:27 PM
hi all
i change jimmy fighting style with boxingplayer.but jimmy cannot run,equip a weapon and exit the door.
how to fix the problem??

thanks
Title: Re: BoxingPlayer Fighting Style
Post by: Red Blaster on June 23, 2013, 11:45:21 PM
What you can do is write a code that cycles between the player style and the boxing style based on the buttons you press.
Title: Re: BoxingPlayer Fighting Style
Post by: Black Norton on June 24, 2013, 03:19:46 AM
Is the LUA Method??
Title: Re: BoxingPlayer Fighting Style
Post by: Red Blaster on June 24, 2013, 04:16:17 AM
Yep.
Title: Re: BoxingPlayer Fighting Style
Post by: Black Norton on June 24, 2013, 04:40:24 AM
wow i don't know lua can use for Setup the controller.
How to make that??
Title: Re: BoxingPlayer Fighting Style
Post by: Red Blaster on June 24, 2013, 05:19:29 AM
Add this under main:

gMissionRunning = true
  while gMissionRunning do
    if IsButtonPressed(0, 0) --This is the left arrow on the keyboard
      PedSetActionTree(gPlayer, "/Global/Player", "Act/Anim/Player.act")
    elseif IsButtonPressed(1, 0) -- Right arrow on the keyboard
      PedSetActionTree(gPlayer, "/Global/BoxingPlayer", "Act/Anim/BoxingPlayer.act")
    Wait(0)
   end