(What I'm lacking is a proc section that temporarily removes player2's character and keeps their screen locked with player1 in the center. and/or temporarily removing both player's characters, creating an entirely new mob, giving one player control over it and locking the other player's screen on it.
mob/proc/Combine(mob/M in view(1))
» tmp/var/Strenght /*I realize it won't keep the var outside of the proc,
but this is simplified for arguments sake */
» tmp/var/Defence
» src.Random = rand(1,2)
» if(src.Random == 1)
» » src.Strenght = src.Fist + M.Fist
» » src.Defence = src.Block + M.Block
» » //This is where I'm lacking the actual combining
» else
» » M.Strenght = M.Fist + src.Fist
» » M.Defence = M.Block + src.Block
» » //Same story ofcourse
I wouldn't know how to "remove" someone as a mob, but as far as fixing the 2nd player's screen on the first player, I could try this (assuming what I'd do is make player 2 invisible, and freeze their movement as a way of "removing them")
mob/proc/CombineView(mob/M in view(1))
» src.icon = ""
» src.icon_state = ""
» src.Frozen = 1
» /*I could isolate the 3 lines above outside of the proc to prevent
any lag from the lack of a sleep proc*/
» src.loc = locate(M.x,M.y,M.z)
» src.CombineView()