ID:267726
 
Hi.

I want to make to make a tournament system for my game.
I was wondering how I would go about doing it.

I want to make like a random thing that makes up matches, from the people who are on the server. And then teleport them to the tournament ring.

If you understand that, could you help me please?

If you don't understand, then say so and I will try to explain it a little clearer for you.
you could do this but i'm not shure how you would the randome matches but to warp them you just have to change the players loc to the place where the match is but im not shure if this will help you but i tried
In response to Neopo
thanks a lot.....I'll see if I can do the random match part on my own...Thanks again
In response to Rozza C
Ok I changed my mind, forget the random thing....but I want to be able to announce that a tournament is going on, and give the players a verb so that they can join the tournament.

Can anyone help me with that?
In response to Rozza C
Rozza C wrote:
Ok I changed my mind, forget the random thing....but I want to be able to announce that a tournament is going on, and give the players a verb so that they can join the tournament.

Can anyone help me with that?

obj
join
verb
Join()
set name = "Join The Tournament"
set category = "Tournament"
usr.loc=locate(25,34,4)
world << "[usr] Joined The Tournament"

mob/GM
verb
Host_Tournament()
set category = "Tournament"
for(var/mob/M in world)
M.verbs += /obj/join/verb/Join
M << "<font color=Blue><font size=3><b>Join The Tournament |TournamentHost{[usr]}|"

End_Tournament_sign_up()
set category = "Tournament"
for(var/mob/M in world)
M.verbs -= /obj/join/verb/Join
M << "<font color=silver><b>Tournament Sign up Has Ended"
In response to XxCrimxX
ah.....thanks...many thanks