ID:136736
 
Is there any particular reason why this variable is read-only? It would be quite intuitive to allow players to customise their background and foreground colours independently of one another.


mob/var/script = "BODY {background: #999999; color:#FFFFCC}"

mob/verb/modify_client_script()
var/new_script = input("Enter your client script:","Client script:",script) as message
script = new_script
client.script = ""