It would be very useful to be able to declare client-side persistent variables in Manialink pages. Something like Web storage in HTML5 if you will.
Here's my two cents:
- A Manialink page can declare a persistent variable
- All the variables declared are only accessible within the same domain
- You can either declare it for the current session only, or for all time
Code: Select all
declare Text foo for Storage;
declare Text bar for SessionStorage;
foo = "hello"; // Persistent forever
bar = "hi"; // Persistent for the session only