ID:1224101
 
(See the best response by Doohl.)
I don't know how to make teams fight against each other.I need help adding the characters to 1 team to another.Help me plz.
Well my friend. It's a lot of ways to do it. But I guess the easiest way but will require some extra knowledge is using a datum for the team.
Team
var
mob/member1
mob/member2

New(mob/member1, mob/member2)
src.member1 = member1
src.member2 = member2

proc
Dead()
if(member1.dead && member2.dead)
del src // idfk

// and when you call new just
new/Team(usr, friend) //friend is the other member i guess.


I hope that gave you some insight because it's really a lot you will have to consider when you do this. Your actual match that monitors probably needs to be a datum also if it isn't
can you help me with it plz
//add me on pager//
well it got errors
Team
var
mob/Naruto
mob/Gaara

New(mob/member1, mob/member2)
src.member1 = member1
src.member2 = member2

proc
Dead()
if(member1.dead && member2.dead)
del src // idfk

// and when you call new just
new/Team(usr, friend) //friend is the other member i guess.


//this is happening 9x(inconsistent indentation)
Best response
You don't appear to know how to program at all! Start here!