ID:273961
 
mob
Owner
verb
View_Reports()
var/html = {"<font size=3><b>Reports: </b></font size>
<hr>
<font color=black>
<font size=2>"}

if(length(Reports))
for(var/R in Reports)
html+="[R]<br><br>"
else
html+="<br><b>No Reports</b>"
usr<<browse(html,"window=who,size=550x600")
Delete_Report()
Reports = new()
fdel("savefiles/Reports.sav")

compiler says, proc definition not allowed inside another proc
You tabbed the Delete_Report() verb wrong. Delete one tab :P
In response to Ocean King
Thanks
In response to King-okal
compiler says, else: 'else' clause without preceding if statement by the way this is my alt
In response to SuperGameMaster
The exact same issue you just posted, just remove a tab from the else statement.