ID:268990
 
How do I make like more than one browser page and be able to link them together with a clickable button? Like in that character handling library with the html lib
I'd suggest looking at Dantom's htmllib. It's the easiest way to do that kind of thing.

If you want to do it yourself, though...

Links that BYOND understands are in the form byond://?something=stuff&somethingelse=2

Whenever a link like that is clicked on in a game, client/Topic() gets called.
client/Topic(href, list/href_list)


href is everything after the ? in the byond://? link. In the example, it's "something=stuff&somethingelse=2".

href_list is what you get if you run params2list(href). It turns href into an associative list.
href_list[1] would equal "something"
href_list["something"] would equal "stuff"

In client/Topic() check what href is to figure out what link the player clicked.