Games
Developers
Forums
More
BYOND
Download
Developer Guide
Developer Reference
Support
Terms of Service
Membership
Contact Us
Many features on this site require JavaScript. Please enable JavaScript support in your browser.
Register
Login
BYOND Forums
Announcements
·
BYOND Help
·
Bug Reports
·
Feature Requests
·
Beta Testers
·
Beta Bugs
·
Developer Help
·
Design Philosophy
·
Demos & Libraries
·
Tutorials & Snippets
·
Art & Sound
·
Classified Ads
·
Game Updates
·
Contests & Events
·
Linux Talk
·
On Topic
·
Off Topic
How do I allow players to send files?
[Tips]
ID:177328
Sep 21 2002, 12:14 pm
Punkrock546
How do I allow players on my game to send files?
Punkrock546
Sep 21 2002, 12:31 pm
Garthor
Look up the ftp() proc.
Sep 21 2002, 12:39 pm
In response to
Garthor
Punkrock546
Garthor wrote:
Look up the ftp() proc.
But how do I let them choose if they want to except it or not and who to ask if they want to download it?
Punkrock546
Sep 21 2002, 12:59 pm
Super16
mob/verb/SendFile(mob/M as mob in world, F as file)
if(!F) return
else
switch(alert(M,"Accept File [F]","File [F]","Yes","No"))
if("Yes")
M << ftp(F)
else return
Copyright © 2025 BYOND Software. All rights reserved.