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


Author Topic: Questions about local multiplayer  (Read 4979 times)

0 Members and 1 Guest are viewing this topic.

Offline UltimateGamer9

  • Full Member
  • ***
  • Posts: 190
  • Gender: Male
    • View Profile
Re: Questions about local multiplayer
« Reply #15 on: July 27, 2015, 10:53:33 PM »
You need another controller.
i do have another 1 but i am myself at house now so i can't really prove that player 2 couldn't sprint

Offline denizthebest

  • Jr. Member
  • **
  • Posts: 85
  • Half way there.
    • View Profile
Re: Questions about local multiplayer
« Reply #16 on: July 28, 2015, 06:44:29 AM »

[/quote] i do have another 1 but i am myself at house now so i can't really prove that player 2 couldn't sprint
[/quote]
look if you set PlayerAI to second player he will be able to do everything you do  :D

Offline UltimateGamer9

  • Full Member
  • ***
  • Posts: 190
  • Gender: Male
    • View Profile
Re: Questions about local multiplayer
« Reply #17 on: July 28, 2015, 07:12:48 AM »
umm i did that but he just doesnt want to that is y i was asking about it

Offline AlphaTech

  • LostInSpace
  • Sr. Member
  • ***
  • Posts: 758
  • Gender: Male
  • The name's AlphaTECH, whatca need help with?! :)
    • View Profile
Re: Questions about local multiplayer
« Reply #18 on: July 28, 2015, 11:49:47 AM »
You're clearly doing something wrong as to why it isn't working. Check your script again   
Code: [Select]
  AreaTransitionXYZ(0,302.8304138,-71.37110138,5)
  PlayerSetHealth(PedGetMaxHealth(gPlayer))
  Player2 = PedCreateXYZ(31, 303.0464783, -73.48997498, 5)
  PedSetAITree(Player2, "/Global/PlayerAI", "Act/AI/PlayerAI.act")
  PedSwapModel(Player2, "player")
  PedSetStatsType(Player2, "STAT_PLAYER")
  PedSetControllerID(Player2,2)
  PedSetActionTree(Player2, "/Global/Player", "Act/Anim/Player.act")
  PedRecruitAlly(gPlayer, Player2)
  PedSetInfiniteSprint(Player2,true)
  PedSetFaction(Player2, 13)

--Not Needed
  AreaTransitionXYZ(0,302.8304138+1,-71.37110138+1,5+1)
  PlayerSetHealth(PedGetMaxHealth(gPlayer))
  Player1 = PedCreateXYZ(29, 303.0464783, -73.48997498, 5)
  PedSetAITree(Player1, "/Global/PlayerAI", "Act/AI/PlayerAI.act")
  PedSwapModel(Player1, "player")
  PedSetStatsType(Player1, "STAT_PLAYER")
  PedSetControllerID(Player1,1)
  PedSetActionTree(Player1, "/Global/Player", "Act/Anim/Player.act")
  PedRecruitAlly(gPlayer, Player1)
  PedSetInfiniteSprint(Player1,true)
  PedSetFaction(Player1, 13)
Fixed*
  AreaTransitionXYZ(0,302.8304138,-71.37110138,5)
  PlayerSetHealth(PedGetMaxHealth(gPlayer)) Don't use this Player two is not Gplayer -_- Fixed* PedSetHealth(Player2,1000)
  Player2 = PedCreateXYZ(31, 303.0464783, -73.48997498, 5)
  Set the AreaTransitionXYZ after the ped is spawned
  AreaTransitionXYZ(0,302.8304138+1,-71.37110138+1,5+1)
  PedSetAITree(Player2, "/Global/PlayerAI", "Act/AI/PlayerAI.act")
  PedSwapModel(Player2, "player")
  PedSetStatsType(Player2, "STAT_PLAYER")
  PedSetControllerID(Player2,2)
  PedSetActionTree(Player2, "/Global/Player", "Act/Anim/Player.act")
  PedRecruitAlly(gPlayer, Player2)
  PedSetInfiniteSprint(Player2,true)
  PedSetFaction(Player2, 13)



This is the code I gave you it should've worked before it set's Player 1 to have the players AI and Player 2 to have the players AI. Try spawning the player normally without all the code, since Player 1 automatically has it's default style and AI loaded their is no need to add Player 1's code to the script.
« Last Edit: July 28, 2015, 11:53:51 AM by AlphaTech »