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
-
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
-
What you can do is write a code that cycles between the player style and the boxing style based on the buttons you press.
-
Is the LUA Method??
-
Yep.
-
wow i don't know lua can use for Setup the controller.
How to make that??
-
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