ID:269934
 

Im Having trouble finding a way too make a system that can make a list of all the games on the Hub connect 2 a stat panel some how...If this can be done I wont have any trouble...((Im trying too make a system where all the games are listed in the stat panel with a number next 2 it and when they see the game they wannt too play they look for that number in the Verv Panel)) This is only a project I intend on expanding into a multi purpose interface for any user that will make all of Byond Wares findable under one game link...Also is there any way too use " //BYOND " so it uses the Dream Seaker hub instead of openning a new explorer browser?

Dave Bryan
Take a look at my server2server demo.
It might be of some use, you could send a message to each server, when the world is started up, and have the URL sent (as a text string) added to a main list.
A tip you might find useful; if you use objects in the statpanel instead of text strings you can click on them there instead of making verbs.
client
var/list/L[0]
New()
.=..()
var/obj/O
O = new /obj/test{name="Test1"}
L+=O
O = new /obj/test{name="Test2"}
L+=O
Stat()
statpanel("Test",L)

obj/test
Click()
usr<<name