ID:159502
 
How do i make a Comment box Where the GM's can Check it
Look up the following in the DM reference:

input()
arguments (verbs) [hint: look at message]
text2file()
var/list/comments = list()
mob/verb/Comment(msg as message) comments += "[src] ([src.key]) made comment: [msg]"
mob/admin/verb/View_Comments()
var/html = "<title>Comments</title>"
for(var/m in comments)
html += "[m]<br>"
src<<browse(html,window=comments,size=600x600)

//I made this in this input box so Tabs might be off...