News: Welcome back to Bullworth! If you haven't already, you will need to reset your password..


Author Topic: Boss_Darby Action Nodes Concern  (Read 633 times)

0 Members and 1 Guest are viewing this topic.

Offline DrianYu22

  • Jr. Member
  • **
  • Posts: 6
    • View Profile
Boss_Darby Action Nodes Concern
« on: December 02, 2023, 05:50:49 AM »
Hello guys could you help me with these nodes? it seems they can't be executed in-game

"/Global/BOSS_Darby/Defense/Evade/EvadeLeft/HeavyAttacks/EvadeRightPunch","act/anim/BOSS_Darby.act"

"/Global/BOSS_Darby/Defense/Evade/EvadeRight/HeavyAttacks/EvadeLeftPunch","act/anim/BOSS_Darby.act"

You guys response would be greatly appreciated  :)

Offline Yunyv

  • Maybe i should join the Literature club,,,I mean i like play games,
  • Jr. Member
  • **
  • Posts: 7
    • View Profile
Re: Boss_Darby Action Nodes Concern
« Reply #1 on: January 15, 2024, 06:58:36 AM »
(machine translation)
This function may be helpful to you,I found this function in a mod made by mh_dt/mhdt ,I didn't make it.
Code: [Select]
forceActionNode = function(gplayer,node,tree)
local playing
local attempts = 0
repeat
PedSetActionNode(gplayer,"/Global","Act/Globals.act")
PedSetActionNode(gplayer,node,tree)
playing = (PedIsPlaying(gplayer,node,false) or PedIsPlaying(gplayer,node,true)) and PedGetNodeTime(gplayer) == 0
attempts = attempts + 1
until playing or attempts == 100
return playing,attempts
end
How to use:example:
Code: [Select]
forceActionNode(gplayer,"/Global/BOSS_Darby/Defense/Evade/EvadeLeft/HeavyAttacks/EvadeRightPunch","act/anim/BOSS_Darby.act")I found this function in a mod made by mh_dt/mhdt ,I didn't make it.
I've tested it, and it works fine with targets.
« Last Edit: January 15, 2024, 07:10:24 AM by Yunyv »