ID:269433
 
Say i have some cheap upload/download verbs like so
mob/player
verb
Upload(F as file)
Files += F
Download(G as anything in Files|null)
if(!G) return
usr << "You chose [G]."
usr << G

Now, is there any way to check the file size on upload to make sure it isn't to big? Thanks for any ideas.
Yes -- use length(). =)