Bully-Board

Bully Modding Section => Modding Questions/Help => Modding Questions/Help Archives => Topic started by: Massive10 on November 29, 2013, 05:54:33 PM

Title: HOW
Post by: Massive10 on November 29, 2013, 05:54:33 PM
how to mixed jimmy fighting style and gary boss fighting style through LUA ? someone help
Title: Re: HOW
Post by: c00ld0c26 on November 29, 2013, 06:10:45 PM
Do you want to mix like, 1 moment he uses Johnny's style and 1 moment he uses Gary's style or you want him to use random moves from each style?
Title: Re: HOW
Post by: Massive10 on November 29, 2013, 06:58:15 PM
random
Title: Re: HOW
Post by: c00ld0c26 on November 29, 2013, 07:14:03 PM
Use PedSetActionNode in repeat

Eample :

repeat
PedSetActionNode(Ped,"Path/Move")
Wait(xxx)
PedSetActionNode(Ped,"Path/Move")
Wait(xxxxx)
PedSetActionNode(Ped,"Path/Move")
Wait(0)
until XXXXX

Its not completely random as u only have the moves in a certain line but if I could share tables with the community I would of show you how to make it nearly 99% random.

Title: Re: HOW
Post by: Massive10 on November 29, 2013, 07:22:31 PM
ouh k  :hmm: how about 1 moment he use johnny fighting style and 1 moment he use gary fighting style ?
Title: Re: HOW
Post by: c00ld0c26 on November 29, 2013, 07:33:55 PM
repeat
  PedSetActionTree(Ped, "/Global/FightingStyle", "Act/Anim/Style'sFile.act")
Wait(xxxxx)
PedSetActionTree(Ped, "/Global/FightingStyle", "Act/Anim/Style'sFile.act")
Wait(0)
until XXXXXXXXX

Dont forget to load the animations for the fighting styles.
Title: Re: HOW
Post by: Walter20210 on November 30, 2013, 12:54:20 AM
Or you can make it without tables too in another way.
Title: Re: HOW
Post by: Massive10 on November 30, 2013, 01:49:32 AM
How ?
Title: Re: HOW
Post by: GaryHarrington on November 30, 2013, 05:01:54 AM
repeat
  PedSetActionTree(Ped, "/Global/FightingStyle", "Act/Anim/Style'sFile.act")
Wait(xxxxx)
PedSetActionTree(Ped, "/Global/FightingStyle", "Act/Anim/Style'sFile.act")
Wait(0)
until XXXXXXXXX

Dont forget to load the animations for the fighting styles.

XXXXX?
Title: Re: HOW
Post by: Walter20210 on December 03, 2013, 07:57:03 PM
How ?

I dont think that i should share that yet. but i will share it later not now.