Bully-Board

Bully Modding Section => Modding Questions/Help => Modding Questions/Help Archives => Topic started by: DreamEvo on May 03, 2013, 08:35:16 PM

Title: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 08:35:16 PM
How to assign a style for lua? I would like to use G_Melee but i dont know how to.
Title: Re: Assign fighing style LUA
Post by: WhenLifeGivesYouLemons on May 03, 2013, 08:43:25 PM
 :)
Title: Re: Assign fighing style LUA
Post by: WhenLifeGivesYouLemons on May 03, 2013, 08:43:43 PM
Simple  :)

PedSetActionTree(gPlayer, "Global/G_Melee_A", "Act/Anim/G_Melee_A.act")
Title: Re: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 09:46:27 PM
Thanks
Title: Re: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 11:04:14 PM
For some reason it doesnt work, i just made a new line, pasted the code and replaced it with that file.
Title: Re: Assign fighing style LUA
Post by: WhenLifeGivesYouLemons on May 03, 2013, 11:05:56 PM
show me how your code looks like
Title: Re: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 11:12:55 PM
ImportScript("\\Library\\LibTable.lua") -- imports the LibTable library
ImportScript("\\Library\\LibPed.lua") -- imports the LibPed library
local l_0_0 = false
 
MissionSetup = function() -- basic mission setup function which is used in almost all bully scripts
  local l_1_0 = 270 -- X coords
  local l_1_1 = -110 -- Y coords
  local l_1_2 = 6.4000000953674 -- Z coords
 
  PlayerSetHealth(200) -- gives the player 200 health
  AreaTransitionXYZ(0, l_1_0, l_1_1, l_1_2)
 
  PedSetTypeToTypeAttitude(4, 13, 4)
  PedSetTypeToTypeAttitude(5, 13, 1)
  PedSetTypeToTypeAttitude(11, 13, 1)
  PedSetActionTree(gPlayer, "Global/G_Melee_A", "Act/Anim/G_Melee_A.act")
end
 
MissionCleanup = function()
end -- end statement
 
main = function() -- Main mission function
  repeat
    Wait(0)
  until l_0_0 ~= false
  Wait(3000)
  MissionSucceed()
end
Title: Re: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 11:14:06 PM
I cant move a muscle
Title: Re: Assign fighing style LUA
Post by: WhenLifeGivesYouLemons on May 03, 2013, 11:37:17 PM
opps try /Global/ forgot the slash at the beginning lol ^_^''
Title: Re: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 11:45:40 PM
still cant move.

ImportScript("\\Library\\LibTable.lua") -- imports the LibTable library
ImportScript("\\Library\\LibPed.lua") -- imports the LibPed library
local l_0_0 = false
 
MissionSetup = function() -- basic mission setup function which is used in almost all bully scripts
  local l_1_0 = 270 -- X coords
  local l_1_1 = -110 -- Y coords
  local l_1_2 = 6.4000000953674 -- Z coords
 
  PlayerSetHealth(200) -- gives the player 200 health
  AreaTransitionXYZ(0, l_1_0, l_1_1, l_1_2)
 
  PedSetTypeToTypeAttitude(4, 13, 4)
  PedSetTypeToTypeAttitude(5, 13, 1)
  PedSetTypeToTypeAttitude(11, 13, 1)
  PedSetActionTree(gPlayer, "Global/G_Melee_A", "Act/Anim/G_Melee_A.act")
end
 
MissionCleanup = function()
end -- end statement
 
main = function() -- Main mission function
  repeat
    Wait(0)
  until l_0_0 ~= false
  Wait(3000)
  MissionSucceed()
end
Title: Re: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 11:46:02 PM
whoops forgot /
Title: Re: Assign fighing style LUA
Post by: DreamEvo on May 03, 2013, 11:50:00 PM
Thanks man!
Title: Re: Assign fighing style LUA
Post by: WhenLifeGivesYouLemons on May 04, 2013, 12:05:22 AM
You' re welcome ^_^