Hey mates
i know this topic is pretty old but i just found this and trying to get this to work but im getting Infinite load screens when i start the arcade machine the idea is pretty awesome i want so badly to play with my brother and i cant get it to work
heres my code :
main = function()
SecondPlayer = PedCreateXYZ(37,270,-110,7)
ThirdPlayer = PedCreateXYZ(23,270,-105,7)
PedSetActionTree(SecondPlayer,"/Global/P_Striker_A","Act/P_Striker_A.Act")
PedSetActionTree(ThirdPlayer,"/Global/G_Striker_A","Act/G_Striker_A.Act")
PedSetAITree(SecondPlayer,"/Global/PlayerAI","Act/PlayerAI.act")
PedSetAITree(ThirdPlayer,"/Global/PlayerAI","Act/PlayerAI.act")
PedSetControllerID(SecondPlayer,1)
PedSetControllerID(ThirdPlayer,2)
repeat
Wait(0)
until not Alive
end